:root {
  --primary: #F52746;
  --dark: #111;
  --gray: #555;
  --light-gray: #f4f4f4;
  --white: #fff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
  scroll-behavior: smooth;
}

body {
  background: var(--white);
  color: var(--dark);
}

/* NAV */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 8%;
  background: dimgrey;
  position: fixed;
  width: 100%;
  z-index: 1000;
}

.nav-logo img {
  height: 30px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: white;
  transition: 0.3s;
}

.nav-links a:hover {
  color: var(--primary);
}

.btn-cta {
  background: var(--primary);
  padding: 10px 20px;
  border-radius: 4px;
  color: white !important;
}

/* HERO */
.hero {
  height: 100vh;
  background: url('images/3bed.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: black;
  animation: zoomHero 10s infinite alternate ease-in-out;
  padding-top: 80px;
}

@keyframes zoomHero {
  0% { background-size: 100%; }
  100% { background-size: 110%; }
}

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
}

.hero-content p {
  margin: 15px 0 25px;
}

/* FEATURES */
.features-bar {
  display: flex;
  justify-content: space-around;
  background: var(--primary);
  color: white;
  padding: 20px;
  text-align: center;
}

/* SECTIONS */
section {
  padding: 15px 1%;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

/* ROOMS */
.rooms-section {
  background: var(--light-gray);
}

.room-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
  gap: 30px;
}

.room-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.room-card:hover {
  transform: translateY(-10px);
}

.room-img {
  height: 220px;
  overflow: hidden;
}

.room-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.room-body {
  padding: 20px;
}

.room-price {
  color: var(--primary);
  font-weight: bold;
}

/* BOOKING */
.booking-section {
  background: var(--dim-gray);
}

.booking-form {
  max-width: 600px;
  margin: auto;
}

.booking-form input,
.booking-form select {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
}

.form-row {
  display: flex;
  gap: 15px;
}



/* FULL WIDTH FOOTER */
footer {
  width: 100%;
  background: black;       /* footer color */
  color: #ccc;
  padding: 60px 0 20px;   /* vertical padding only */
}

.footer-container {
  width: 100%;             /* container now spans entire width */
  margin: 0;               /* remove auto-centering */
  padding: 0 8%;           /* optional horizontal padding for content */
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
}

.footer-col h4 {
  margin-bottom: 15px;
  color: white;
}

.footer-col a {
  color: #ccc;
  text-decoration: none;
}

.footer-col a:hover {
  color: var(--primary);
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  border-top: 1px solid #333;
  padding-top: 20px;
}


/* SMALL HERO FOR ABOUT PAGE ONLY */
.hero-small {
  height: 50vh;
  min-height: 350px;
  padding-top: 100px; /* keeps space for fixed navbar */
}





/* =========================
   PREMIUM TESTIMONIALS
   ========================= */

.testimonials-premium {
    padding: 100px 8%;
    background: #111;
    color: white;
    text-align: center;
    overflow: hidden;
}

.testimonials-premium h2 {
    font-size: 34px;
    margin-bottom: 10px;
}

.testimonials-premium p {
    color: #bbb;
    margin-bottom: 50px;
}

/* SLIDER */
.testimonial-slider {
    overflow: hidden;
    position: relative;
}

.testimonial-track {
    display: flex;
    gap: 30px;
    animation: scrollTestimonials 20s linear infinite;
}

/* CARD */
.testimonial-card {
    min-width: 300px;
    background: #1a1a1a;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
    text-align: left;
    transition: 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-8px);
}

/* STARS */
.stars {
    color: gold;
    font-size: 18px;
    margin-bottom: 10px;
}

/* TEXT */
.testimonial-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #ccc;
    margin-bottom: 15px;
}

.testimonial-card h4 {
    color: #F52746;
    font-weight: 600;
}

/* ANIMATION */
@keyframes scrollTestimonials {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* MOBILE */
@media(max-width:768px) {
    .testimonial-track {
        animation: none;
        flex-direction: column;
    }

    .testimonial-card {
        min-width: 100%;
    }
}








/* ABOUT SECTION */

.about{
    padding: 80px 10%;
    background-color: #f9f9f9;
}

.about-container
{
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.about-image
{
    flex: 1;
    overflow: hidden;
    border-radius: 10px;
}

.about-image img
{
    width: 100%;
    transition: transform 0.5s ease;
}

/* Hover zoom effect */

.about-image:hover img
{
    transform: scale(1.05);
}

.about-text{
    flex: 1;
}

.about-text h2{
    font-size: 34px;
    margin-bottom: 10px;
}

.gold-line
{
    width: 80px;
    height: 3px;
    background-color: #F52746;
    margin-bottom: 20px;
}

.about-text
 p{
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
}

.about-btn{
    text-decoration: none;
    background-color: #F52746;

    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: bold;
    transition: 0.3s;
}

.
about-btn:hover
{
    background-color: #F52746;
}

/* Premium Rooms Styling */

.rooms-section {
    background: #f9f9f9;
    padding: 80px 8%;
}

.room-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
    gap: 30px;
}

.room-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.room-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}

.room-img {
    height: 250px;
    overflow: hidden;
    border-bottom: 1px solid #eee;
}

.room-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.room-img img:hover {
    transform: scale(1.1);
}

.room-body {
    padding: 20px;
    text-align: center;
}

.room-price {
    display: inline-block;
    background: #caa85d;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.room-body h3 {
    margin-bottom: 10px;
    font-size: 1.4rem;
    color: #111;
}

.room-body p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.6;
}

.room-btn {
    text-decoration: none;
    background-color: #F52746;
    color: white;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s;
    display: inline-block;
}

.room-btn:hover {
    background-color: #d61f3b;
    transform: translateY(-2px);
}






/* =========================
   BOOKING SECTION PREMIUM
   ========================= */

.booking-section {
    background: #696969;  /* dim gray background */
    padding: 100px 8%;
    color: white;
}

.booking-card {
    max-width: 650px;
    margin: auto;
    background: #1a1a1a;  /* darker card */
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.booking-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.4);
}

.booking-form input,
.booking-form select {
    width: 100%;
    padding: 14px 18px;
    margin-bottom: 20px;
    border-radius: 8px;
    border: none;
    outline: none;
    font-size: 1rem;
    background: #333;
    color: white;
    transition: 0.3s;
}

.booking-form input:focus,
.booking-form select:focus {
    background: #444;
    box-shadow: 0 0 8px #caa85d;  /* luxury gold glow */
}

.form-row {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-cta {
    width: 100%;
    padding: 14px;
    font-size: 1.1rem;
    background: linear-gradient(135deg, #F52746, #ff6a7f);
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    color: white !important;
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    transition: all 0.35s ease;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.4);
    background: linear-gradient(135deg, #e81c3f, #ff4c66);
}

/* =========================
   WHATSAPP FLOATING BUTTON
   ========================= */

.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    text-align: center;
    font-size: 30px;
    line-height: 60px;
    z-index: 10000;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}








/* =========================
   RESPONSIVE FOR MOBILE
   ========================= */

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
    }

    .booking-card {
        padding: 30px 20px;
    }
}


/* =========================
   MOBILE FIX (PREMIUM)
   ========================= */
@media (max-width: 768px) {

  /* NAVBAR */
  nav {
    flex-direction: column;
    padding: 15px 5%;
    text-align: center;
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    padding: 10px;
  }

  /* HERO */
  .hero {
    height: 70vh; /* smaller hero */
    padding-top: 100px;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-content p {
    font-size: 14px;
  }

  /* FEATURES */
  .features-bar {
    flex-direction: column;
    gap: 15px;
  }

  /* ABOUT SECTION */
  .about-container {
    flex-direction: column;
    gap: 20px;
  }

  .about-text h2 {
    font-size: 24px;
  }

  .about-text p {
    font-size: 15px;
  }

  /* ROOMS */
  .room-grid {
    grid-template-columns: 1fr; /* stack cards */
  }

  .room-img {
    height: 200px;
  }

  /* BOOKING */
  .booking-section {
    padding: 60px 5%;
  }

  .booking-card {
    padding: 20px;
  }

  .form-row {
    flex-direction: column;
  }

  /* GALLERY */
  .premium-gallery .gallery-grid {
    grid-template-columns: 1fr;
  }

  .premium-gallery .gallery-item.wide,
  .premium-gallery .gallery-item.tall {
    grid-column: span 1;
    grid-row: span 1;
  }

  /* TESTIMONIALS */
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  /* FOOTER */
  .footer-container {
    padding: 0 5%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

}

