:root {
    --primary-color: #91004B;
    --primary-hover: #B73470;
    --secondary-color: #C39BA5;
    --background-light: #F9F4F7;
    --text-dark: #2B2B2B;
    --white: #FFFFFF;
    --shadow: 0 10px 30px rgba(145, 0, 75, 0.1);
    --shadow-hover: 0 15px 40px rgba(145, 0, 75, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    /* overflow: hidden; */
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar Styles */
/* ----------------------------
   HOMEPAGE (transparent navbar)
----------------------------- */
body.homepage .navbar {
  background: transparent;
  transition: background-color 0.4s ease, box-shadow 0.4s ease;
}

body.homepage .navbar .nav-link {
  color: #fff;
  transition: color 0.3s ease;
}

body.homepage .navbar .nav-link:hover {
  color: #f5d0e6;
}

/* When scrolled on homepage: solid white + black text */
body.homepage.scrolled .navbar {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

body.homepage.scrolled .navbar .nav-link {
  color: #000;
}

body.homepage.scrolled .navbar .nav-link:hover {
  color: var(--primary-color);
}


/* ----------------------------
   OTHER PAGES (solid navbar)
----------------------------- */
body:not(.homepage) .navbar {
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: background-color 0.4s ease, box-shadow 0.4s ease;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
}

body:not(.homepage) .navbar .nav-link {
  color: #000;
  transition: color 0.3s ease;
}

body:not(.homepage) .navbar .nav-link:hover {
  color: var(--primary-color);
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

.navbar.transparent {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

.navbar.scrolled {
    background: var(--white);
    box-shadow: var(--shadow);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #960059;
  transition: color 0.3s ease;
}

.nav-logo a:hover {
  color: #6e0042;
}

.nav-logo img.logo-img {
  height: 80px; /* increase this value as needed */
  margin-right: 10px;
  object-fit: contain;
  margin-top: -10px; /* shift upward to fit inside navbar height */
  margin-bottom: -10px; /* optional: keeps vertical balance */
}

.nav-logo h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  margin: 0;
  letter-spacing: 1px;
}
/* 
.nav-logo h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 700;
} */

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}


/* White menu links when navbar is transparent */
.navbar.transparent .nav-link {
    color: #fff;
}

.navbar.transparent .nav-link:hover {
    color: #f5d0e6; /* Soft hover color when transparent */
}

.navbar.transparent .nav-link::after {
    background: #f5d0e6; /* Underline hover effect color */
}



.book-now-btn {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.book-now-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: 0.3s;
}

.navbar a:focus,
.navbar button:focus {
  outline: none;
  box-shadow: none;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)),
                url('../images/r1.jpeg') center/cover;
    background-blend-mode: overlay;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(110, 1, 60, 0.3);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-btn {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid #800040;
    padding: 15px 35px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

/* Section Styles */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--secondary-color);
}

/* Resorts Section */
/* .resorts-section {
    padding: 80px 0;
    background: var(--background-light);
}

.resorts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.resort-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    cursor: pointer;
}

.resort-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.resort-image {
    height: 250px;
    overflow: hidden;
}

.resort-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.resort-card:hover .resort-image img {
    transform: scale(1.1);
}

.resort-info {
    padding: 1.5rem;
}

.resort-info h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.resort-info .location {
    color: var(--secondary-color);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.resort-info .price {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
} */



/* Core Styling */
.our-resorts-section {
  padding: 30px 20px;
  margin-bottom: 0;
  background-color: #f9f4f2;
  overflow: hidden;
}

.section-header {
  margin-bottom: 60px;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  color: #6a1b1a;
  text-transform: uppercase;
  /* margin-bottom: 25px; */
}

.section-subtitle {
  font-size: 18px;
  color: #8b5e5e;
}

.text-center {
  text-align: center;
}

.resort-block {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin: 60px 0;
  gap: 30px;
  position: relative;
}

.resort-block.reverse {
  flex-direction: row-reverse;
}

.resort-texture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('images/homeice2.jpg'); /* optional */
  background-repeat: repeat;
  opacity: 0.05;
  z-index: 0;
}

.resort-content,
.resort-image {
  flex: 1 1 45%;
  padding: 8px;
  z-index: 1;
}

.resort-content h2 {
  color: #5c1a2b;
  font-size: 28px;
  margin-bottom: 20px;
}

.resort-content p {
  color: #3c1a1e;
  font-size: 18px;
  line-height: 1.6;
}

.resort-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Animations (optional) */
.animate-slide-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: all 0.6s ease;
}
.animate-slide-right {
  opacity: 0;
  transform: translateX(60px);
  transition: all 0.6s ease;
}
.animate-slide-left.show,
.animate-slide-right.show {
  opacity: 1;
  transform: translateX(0);
}
.image-wrapper {
  position: relative;
  display: inline-block;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.image-wrapper img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.4s ease;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4); /* dark overlay */
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 12px;
}

.image-wrapper:hover .image-overlay {
  opacity: 1;
}

.image-wrapper:hover img {
  transform: scale(1.05); /* subtle zoom effect */
}





/* Alternating layout */
.left-content {
  flex-direction: row;
}

.right-content {
  flex-direction: row-reverse;
}

/* Slide Animations */
.animate-slide-left {
  opacity: 0;
  transform: translateX(-100px);
  transition: all 0.8s ease-out;
}

.animate-slide-right {
  opacity: 0;
  transform: translateX(100px);
  transition: all 0.8s ease-out;
}

/* Activate animations on scroll */
.show.animate-slide-left,
.show.animate-slide-right {
  opacity: 1;
  transform: translateX(0);
}

/* Responsive */
@media (max-width: 768px) {
  .resort-block {
    flex-direction: column !important;
    text-align: center;
  }

  .resort-image img {
    max-width: 100%;
  }
  .our-resorts-section {
  padding: 30px 20px;
  margin-bottom: 0;
  background-color: #f9f4f2;
  overflow: hidden;
}
}






/* Why Choose Us Section */
.why-choose-us {
    padding: 30px 0;
    margin-bottom: 1rem;
}

.carousel-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.carousel {
    position: relative;
    height: 400px;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    /* width: 100%; */
    width: 1000px;
    height: 100%;
    object-fit: cover;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--secondary-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

/* Socials Section */
.socials-section {
    padding: 40px 0;
    background: var(--background-light);
}

.socials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.social-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.social-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.social-slider {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.social-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.social-images img.active {
    opacity: 1;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 15px;
}

.prev-btn, .next-btn {
    background: rgba(255, 255, 255, 0.8);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
    color: var(--primary-color);
}

.prev-btn:hover, .next-btn:hover {
    background: var(--white);
    transform: scale(1.1);
}

.social-content {
    padding: 2rem;
}

.social-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.social-content p {
    line-height: 1.7;
    color: var(--text-dark);
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
}

.contact-form-container {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--primary-color);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--secondary-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.submit-btn {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* Footer */
/* .footer {
    background: var(--background-light);
    padding: 60px 0 20px;
    border-top: 1px solid var(--secondary-color);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.footer-section p {
    line-height: 1.7;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    padding: 8px 16px;
    background: var(--secondary-color);
    color: var(--white);
    border-radius: 20px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--secondary-color);
    color: var(--text-dark);
} */



/* .resort-footer { */
    /* background: url('https://images.unsplash.com/photo-1582719478250-c89cae4dc85b?auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover; */
   
    /* background: linear-gradient(to right, #4b001d, #800040); Deep wine gradient */
/* color: #fff;
    position: relative;
    color: #fff;
    font-family: 'Segoe UI', sans-serif;
  }

  .footer-overlay {
    background: rgba(0, 0, 0, 0.7);
    padding: 60px 20px 30px;
  }

  .footer-container {
    max-width: 1200px;
    margin: auto;
  }

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

  .footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    position: relative;
  }

  .footer-col h4::after {
    content: '';
    width: 40px;
    height: 2px;
    background: #fff;
    position: absolute;
    bottom: -8px;
    left: 0;
  }

  .footer-col p,
  .footer-col a {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.6;
    text-decoration: none;
  }

  .footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .footer-col ul li {
    margin-bottom: 10px;
  }

  .footer-col a:hover {
    color: #fff;
  }

  .social-icons {
    display: flex;
    gap: 12px;
    margin-top: 10px;
  }

  .social-icons .icon {
    width: 38px;
    height: 38px;
    background: #fff;
    color: #111;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: background 0.3s, color 0.3s;
  }

  .social-icons .icon:hover {
    background: #b30059;
    color: #fff;
  }

  .footer-bottom {
    text-align: center;
    font-size: 0.9rem;
    color: #aaa;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 15px;
  }

  @media (max-width: 768px) {
    .footer-overlay {
      padding: 40px 20px;
    }
    .footer-columns {
      gap: 25px;
    }
  } */


  .resort-footer {
  background: linear-gradient(135deg, #8a1a4b, #d1467f); /* Designer wine-pink gradient */
  color: #fff;
  position: relative;
  font-family: 'Segoe UI', sans-serif;
  overflow: hidden;
}

.footer-overlay {
  background: rgba(0, 0, 0, 0.5); /* Slightly lighter for more contrast */
  padding: 60px 20px 30px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
}

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

.footer-col h4 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  position: relative;
  color: #fff;
}

.footer-col h4::after {
  content: '';
  width: 40px;
  height: 2px;
  background: #fff;
  position: absolute;
  bottom: -8px;
  left: 0;
}

.footer-col p,
.footer-col a {
  color: #ddd;
  font-size: 0.95rem;
  line-height: 1.6;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col a:hover {
  color: #fff;
}

.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.social-icons .icon {
  width: 38px;
  height: 38px;
  background: #fff;
  color: #111;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition: background 0.3s, color 0.3s;
}

.social-icons .icon:hover {
  background: #b30059;
  color: #fff;
}

.footer-bottom {
  text-align: center;
  font-size: 0.9rem;
  color: #aaa;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 15px;
}

@media (max-width: 768px) {
  .footer-overlay {
    padding: 40px 20px;
  }

  .footer-columns {
    gap: 25px;
  }
}

/* Optional: Decorative radial light overlay */
.resort-footer::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -20%;
  width: 150%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 70%);
  z-index: 0;
}

.resort-footer  * {
  position: relative;
  z-index: 1;
}


/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .resorts-grid,
    .socials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}