


@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@500;600;700&display=swap");



:root {
  /* Brand Colors */

  --primary: #925c1e;
  --primary-light: #ebd37d;

  --dark: #0f172a;
  --dark-light: #1e293b;

  --white: #ffffff;
  --off-white: #f8fafc;

  --text: #334155;
  --text-light: #64748b;

  --border: rgba(255, 255, 255, 0.1);



  --gold-gradient: linear-gradient(135deg, #925c1e, #ebd37d);

  --dark-gradient: linear-gradient(135deg, #0f172a, #1e293b);



  --heading-font: "Playfair Display", serif;

  --body-font: "Inter", sans-serif;



  --shadow-sm: 0 5px 15px rgba(0, 0, 0, 0.08);

  --shadow-md: 0 15px 40px rgba(0, 0, 0, 0.15);

  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.25);

 

  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;



  --transition: all 0.35s ease;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  color: var(--text);
  background: var(--off-white);
  overflow-x: hidden;
  line-height: 1.7;
}

img {
  width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button,
input,
select,
textarea {
  font-family: inherit;
}

/*   GLOBAL STYLING */

.container {
  width: min(90%, 1200px);
  margin: auto;
}

.section {
  padding: 7rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-subtitle {
  display: inline-block;

  color: var(--primary);

  font-weight: 600;

  letter-spacing: 2px;

  text-transform: uppercase;

  margin-bottom: 1rem;
}

.section-header h2 {
  font-family: var(--heading-font);

  font-size: clamp(2rem, 4vw, 3.5rem);

  color: var(--dark);

  line-height: 1.2;
}



.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 1rem 2rem;

  border: none;
  cursor: pointer;

  border-radius: 50px;

  transition: var(--transition);

  font-weight: 600;
}

.btn-primary {
  background: var(--gold-gradient);
  color: white;
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.25);

  color: white;

  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: white;
  color: var(--dark);
}

.nav-btn {
  border: 2px solid var(--primary-light);
  border-radius: var(--radius-lg);
  color: var(--off-white);
}




.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;

  z-index: 1000;
}

.navbar {
  width: min(95%, 1300px);

  margin: 1rem auto;

  padding: 1rem 2rem;

  display: flex;
  justify-content: space-between;
  align-items: center;

  backdrop-filter: blur(20px);

  background: rgba(15, 23, 42, 0.55);

  border: 1px solid rgba(255, 255, 255, 0.08);

  border-radius: 100px;
}

.logo img {
  height: 55px;
  width: auto;
}

.nav-menu {
  display: flex;
  gap: 2rem;
}

.nav-menu a {
  color: white;

  font-weight: 500;

  transition: var(--transition);
}

.nav-menu a:hover {
  color: var(--primary-light);
}

.mobile-menu-btn {
  display: none;

  background: none;
  border: none;

  color: white;

  font-size: 2rem;

  cursor: pointer;
}



.hero {
  min-height: 100vh;

  position: relative;

  display: flex;
  align-items: center;

  background: url("../images/hero.jpg") center center/cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;

  background: linear-gradient(rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.7));
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  max-width: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.hero-tag {
  display: inline-block;

  background: rgba(255, 255, 255, 0.1);

  padding: 0.7rem 1.2rem;

  border-radius: 50px;

  backdrop-filter: blur(10px);

  margin-bottom: 1.5rem;
  margin-top: 5rem;
}

.hero h1 {
  font-family: var(--heading-font);
  font-size: 4rem;

  /* font-size: clamp(3rem, 7vw, 5.5rem); */

  line-height: 1.4;

  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.1rem;

  margin-bottom: 2rem;

  color: #e2e8f0;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}




.about-grid {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 4rem;

  align-items: center;
}

.about-image img {
  border-radius: var(--radius-lg);

  box-shadow: var(--shadow-lg);
}

.about-content p {
  margin-bottom: 2rem;

  font-size: 1.05rem;
}

.about-stats {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 1rem;
}

.stat-card {
  text-align: center;

  background: white;

  padding: 2rem 1rem;

  border-radius: var(--radius-md);

  box-shadow: var(--shadow-sm);
}

.stat-card h3 {
  color: var(--primary);

  font-size: 1.5rem;
}




.suite-grid {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));

  gap: 2rem;
}

.suite-card {
  background: white;

  border-radius: var(--radius-lg);

  overflow: hidden;

  box-shadow: var(--shadow-sm);

  transition: var(--transition);
}

.suite-card:hover {
  transform: translateY(-10px);

  box-shadow: var(--shadow-lg);
}

.suite-image {
  overflow: hidden;
}

.suite-image img {
  height: 280px;

  object-fit: cover;

  transition: 0.6s;
}

.suite-card:hover img {
  transform: scale(1.08);
}

.suite-content {
  padding: 2rem;
}

.suite-content h3 {
  margin-bottom: 1rem;

  font-family: var(--heading-font);
}

.suite-content ul {
  margin: 1.5rem 0;
}

.suite-content li {
  margin-bottom: 0.7rem;
}

.suite-btn {
  width: 100%;

  background: var(--dark);

  color: white;
}




.amenities {
  background: var(--dark);
}

.amenities .section-header h2 {
  color: white;
}

.amenities-grid {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));

  gap: 1.5rem;
}

.amenity-card {
  background: rgba(255, 255, 255, 0.05);

  padding: 2rem;

  text-align: center;

  border-radius: var(--radius-md);

  backdrop-filter: blur(15px);

  color: white;
}




.gallery-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 1rem;
}

.gallery-grid img {
  border-radius: 20px;

  height: 280px;

  object-fit: cover;

  cursor: pointer;

  transition: 0.5s;
}

.gallery-grid img:hover {
  transform: scale(1.03);
}



.ourfocus-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 1rem;
}




.features-grid {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

  gap: 2rem;
}

.feature-card {
  background: white;

  padding: 2rem;

  text-align: center;

  border-radius: var(--radius-md);

  box-shadow: var(--shadow-sm);
}




.testimonial-slider {
  display: grid;
  gap: 2rem;
}

.testimonial-card {
  background: white;

  padding: 2rem;

  border-radius: var(--radius-lg);

  box-shadow: var(--shadow-sm);
}




.booking {
  background: var(--dark);
}

.booking-wrapper {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 3rem;

  align-items: center;
}

.booking-info h2 {
  color: white;

  font-family: var(--heading-font);

  font-size: 3rem;

  margin-bottom: 1rem;
}

.booking-info p {
  color: #cbd5e1;
}

.booking-form {
  background: white;

  padding: 2rem;

  border-radius: var(--radius-lg);
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;

  padding: 1rem;

  margin-bottom: 1rem;

  border: 1px solid #ddd;

  border-radius: 12px;
}




.contact-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 2rem;
}

.contact-grid div {
  background: white;

  padding: 2rem;

  border-radius: var(--radius-md);

  box-shadow: var(--shadow-sm);

  text-align: center;
}




.footer {
  background: var(--dark);

  color: white;

  text-align: center;

  padding: 2rem;
}

.whatsapp-btn {
  position: fixed;

  right: 25px;
  bottom: 25px;

  width: 65px;
  height: 65px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: #25d366;
  color: white;

  font-size: 30px;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);

  z-index: 999;

  transition: 0.3s;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
}




.modal {
  position: fixed;

  inset: 0;

  background: rgba(0, 0, 0, 0.8);

  display: none;

  align-items: center;
  justify-content: center;

  z-index: 5000;
}

.modal-content {
  background: white;

  width: min(90%, 800px);

  padding: 2rem;

  border-radius: 20px;

  position: relative;
}

.close-modal {
  position: absolute;

  right: 20px;
  top: 15px;

  border: none;
  background: none;

  font-size: 2rem;

  cursor: pointer;
}




@media (max-width: 992px) {
  .about-grid,
  .booking-wrapper {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;

    top: 90px;
    left: -100%;

    width: 100%;

    background: var(--dark);

    flex-direction: column;

    text-align: center;

    padding: 2rem;

    transition: 0.4s;
  }

  .nav-menu.active {
    left: 0;
  }

  .mobile-menu-btn {
    display: block;
  }

  .nav-btn {
    display: none;
  }

  .hero {
    text-align: center;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-buttons {
    justify-content: center;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }

.ourfocus-grid {
    grid-template-columns: 1fr;
  }
}
