* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    overflow-x: hidden;
}

/* Header y navegación */
header {
    position: fixed;
    width: 100%;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.2);
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    width: 100%;
    height: 2px;
    background-color: white;
}

.nav-links {
    display: flex;
    gap: 30px;
    text-align: center;
}

.nav-item {
    position: relative;
}

.nav-item > a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    padding: 10px;
    display: block;
}

.nav-item > a:hover {
    color: #f8c93e;
}

.has-dropdown > a::after {
    content: " ▾";
    font-size: 12px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: rgba(0, 0, 0, 0.8);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border-radius: 4px;
}

.dropdown-menu a {
    color: white;
    text-decoration: none;
    padding: 12px 16px;
    display: block;
    transition: background-color 0.3s ease;
}

.dropdown-menu a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #f8c93e;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Logo */
.logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    z-index: 999;
}

.logo img {
    width: 100%;
    height: auto;
}

/* Contacto */
.contact-info {
    color: white;
    font-size: 16px;
}

/* Hero section */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    background-image: url('img/INICIO\ 1_3.png');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    padding: 0 20px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
}

.hero-title {
    font-size: 6rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-top: 20px;
}

/* Responsive */
@media (max-width: 991px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.9);
        flex-direction: column;
        gap: 0;
        padding-top: 80px;
        transition: right 0.3s ease;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-item {
        width: 100%;
    }
    
    .nav-item > a {
        padding: 15px 25px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .dropdown-menu {
        position: static;
        width: 100%;
        visibility: hidden;
        opacity: 0;
        max-height: 0;
        transform: none;
        box-shadow: none;
        background-color: rgba(255, 255, 255, 0.05);
        overflow: hidden;
        transition: all 0.3s ease;
        border-radius: 0;
    }
    
    .nav-item.active .dropdown-menu {
        visibility: visible;
        opacity: 1;
        max-height: 300px;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .contact-info {
        display: none;
    }
}
:root {
    --color-primary: #1e8449;
    --color-secondary: #229954;
    --color-accent: #f1c40f;
    --color-dark: #1a1a1a;
    --color-light: #f9f9f9;
    --font-primary: 'Playfair Display', serif;
    --font-secondary: 'Raleway', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-secondary);
    color: var(--color-dark);
    background-color: var(--color-light);
    overflow-x: hidden;
}

/* Componentes de diseño amazónico */
.amazon-pattern {
    position: absolute;
    width: 100%;
    height: 12px;
    background-image: linear-gradient(45deg, 
        transparent 33.33%, 
        var(--color-primary) 33.33%, 
        var(--color-primary) 66.66%, 
        transparent 66.66%),
        linear-gradient(-45deg, 
        transparent 33.33%, 
        var(--color-primary) 33.33%, 
        var(--color-primary) 66.66%, 
        transparent 66.66%);
    background-size: 24px 12px;
    opacity: 0.6;
}

.amazon-pattern-top {
    top: 0;
}

.amazon-pattern-bottom {
    bottom: 0;
    transform: rotate(180deg);
}

.leaf-decoration {
    position: absolute;
    opacity: 0;
    z-index: -1;
    filter: blur(1px);
    animation: floatIn 1.5s ease forwards;
}

.leaf-1 {
    top: 10%;
    left: 5%;
    transform: rotate(-15deg) scale(0.6);
    animation-delay: 0.5s;
}

.leaf-2 {
    top: 55%;
    right: 3%;
    transform: rotate(25deg) scale(0.8);
    animation-delay: 0.8s;
}

.leaf-3 {
    bottom: 15%;
    left: 10%;
    transform: rotate(5deg) scale(0.7);
    animation-delay: 1.1s;
}

/* Sección de bienvenida */
.welcome-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 5rem 2rem;
    overflow: hidden;
    background: linear-gradient(
        rgba(255, 255, 255, 0.95),
        rgba(255, 255, 255, 0.9)
    ), url('img/bongalos.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.welcome-container {
    max-width: 1200px;
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 1;
}

.resort-icon {
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeDown 1s ease forwards;
}

.resort-icon svg {
    width: 70px;
    height: auto;
    color: var(--color-primary);
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.welcome-tagline {
    color: var(--color-primary);
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeIn 1s ease forwards 0.5s;
}

.welcome-heading {
    font-family: var(--font-primary);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, var(--color-dark) 0%, #2c3e50 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0;
    animation: fadeIn 1s ease forwards 0.8s;
}

.welcome-description {
    font-size: 1.125rem;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto 3rem;
    color: #555;
    opacity: 0;
    animation: fadeIn 1s ease forwards 1.1s;
}

.explore-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: white;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(30, 132, 73, 0.3);
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: fadeIn 1s ease forwards 1.4s;
}

.explore-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(30, 132, 73, 0.4);
}

.explore-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: all 0.6s ease;
}

.explore-button:hover::after {
    transform: translateX(100%);
}

/* Animaciones */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatIn {
    from {
        opacity: 0;
        transform: translateY(20px) rotate(var(--rotation, 0deg)) scale(var(--scale, 1));
    }
    to {
        opacity: 0.15;
        transform: translateY(0) rotate(var(--rotation, 0deg)) scale(var(--scale, 1));
    }
}

/* Elementos animados con scroll */
.parallax-element {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.parallax-bird {
    top: 15%;
    left: 20%;
    opacity: 0;
    animation: flyIn 3s ease-out forwards 2s;
}

.parallax-butterfly {
    top: 65%;
    right: 15%;
    opacity: 0;
    animation: flutterIn 4s ease-out forwards 1.5s;
}

@keyframes flyIn {
    0% {
        opacity: 0;
        transform: translateX(-100px) translateY(50px);
    }
    20% {
        opacity: 0.7;
    }
    100% {
        opacity: 0.4;
        transform: translateX(30px) translateY(-20px);
    }
}

@keyframes flutterIn {
    0% {
        opacity: 0;
        transform: translateX(80px) translateY(30px);
    }
    30% {
        opacity: 0.6;
        transform: translateX(50px) translateY(0px);
    }
    60% {
        transform: translateX(30px) translateY(15px);
    }
    100% {
        opacity: 0.3;
        transform: translateX(0) translateY(0);
    }
}

/* Elementos responsivos */
@media (max-width: 768px) {
    .welcome-heading {
        font-size: 2.5rem;
    }
    
    .welcome-description {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .leaf-decoration {
        display: none;
    }
}
.zgr-slider-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
  }
  
  .zgr-carousel-belt {
    display: flex;
    transition: transform 0.5s ease-in-out;
  }
  
  .zgr-photo-item {
    min-width: calc(100% / 3);
    padding: 0 5px;
    flex: 0 0 calc(100% / 3);
  }
  
  .zgr-photo-item img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 5px;
  }
  
  .zgr-navigation-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    z-index: 10;
  }
  
  .zgr-previous-btn, .zgr-next-btn {
    background: rgba(255, 255, 255, 0.7);
    color: #333;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 20px;
  }
  
  .zgr-previous-btn:hover, .zgr-next-btn:hover {
    background: rgba(255, 255, 255, 0.9);
  }
  
  .zgr-indicator-circles {
    position: absolute;
    bottom: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
  }
  
  .zgr-circle-marker {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid #333;
    cursor: pointer;
  }
  
  .zgr-circle-marker.zgr-current {
    background: #fff;
  }
  
  .zgr-top-scroll-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.7);
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
  }
  .zagari2025_main_wrapper {
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    width: 100%;
    background: url('img/piscina.jpg') center/cover;
}

.zagari2025_hero_overlay {
    position: relative;
    width: 100%;
    padding: 60px 20px;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.4));
    z-index: 2;
}

.zagari2025_content_container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
}

.zagari2025_tagline_text {
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: #ffffff;
    text-align: center;
}

.zagari2025_main_title {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.2;
}

.zagari2025_subtitle_desc {
    font-size: 16px;
    line-height: 1.6;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
}

.zagari2025_features_grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
}

.zagari2025_feature_card {
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    margin-bottom: 30px;
    position: relative;
    text-align: center;
}

.zagari2025_feature_img_container {
    position: relative;
    overflow: hidden;
    height: 270px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.zagari2025_feature_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.zagari2025_feature_title {
    font-size: 20px;
    font-weight: 600;
    color: #000000;
    margin: 15px 0 10px;
}

.zagari2025_feature_description {
    font-size: 14px;
    color: #555555;
    line-height: 1.5;
    padding: 0 15px;
    display: none; /* Hidden as in the image */
}

/* Natural elements styling */
.zagari2025_natural_bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    opacity: 0.7;
    pointer-events: none;
}

.zagari2025_tropical_leaf1 {
    position: absolute;
    left: -50px;
    top: 10%;
    width: 300px;
    height: auto;
    opacity: 0.6;
    z-index: 1;
}

.zagari2025_tropical_leaf2 {
    position: absolute;
    right: -30px;
    top: 30%;
    width: 200px;
    height: auto;
    opacity: 0.5;
    z-index: 1;
}

.zagari2025_blue_overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100px;
    background-color: rgba(79, 198, 225, 0.3);
    clip-path: polygon(80% 0, 100% 0, 100% 100%);
    z-index: 2;
}

/* Media Queries for Responsiveness */
@media (max-width: 992px) {
    .zagari2025_features_grid {
        justify-content: center;
    }
    
    .zagari2025_feature_card {
        flex: 0 0 calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .zagari2025_main_title {
        font-size: 32px;
    }
    
    .zagari2025_feature_card {
        flex: 0 0 100%;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
}
/* New improved animations for Zagari Resort cards */
  
  /* Card entrance animations */
  @keyframes zagariUnique_slideFromBottom {
    0% {
      opacity: 0;
      transform: translateY(80px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes zagariUnique_slideFromRight {
    0% {
      opacity: 0;
      transform: translateX(80px);
    }
    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  @keyframes zagariUnique_slideFromLeft {
    0% {
      opacity: 0;
      transform: translateX(-80px);
    }
    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  /* Border animation */
  @keyframes zagariUnique_borderPulse {
    0% {
      box-shadow: 0 0 0 0 rgba(79, 198, 225, 0);
    }
    70% {
      box-shadow: 0 0 0 10px rgba(79, 198, 225, 0);
    }
    100% {
      box-shadow: 0 0 0 0 rgba(79, 198, 225, 0);
    }
  }
  
  /* Image reveal animation */
  @keyframes zagariUnique_imageReveal {
    0% {
      clip-path: inset(0 100% 0 0);
    }
    100% {
      clip-path: inset(0 0 0 0);
    }
  }
  
  /* Title emphasis animation */
  @keyframes zagariUnique_titleEmphasis {
    0% {
      letter-spacing: -2px;
      opacity: 0.7;
    }
    50% {
      letter-spacing: 2px;
      opacity: 1;
      text-shadow: 0 0 8px rgba(79, 198, 225, 0.6);
    }
    100% {
      letter-spacing: 0;
      opacity: 1;
      text-shadow: none;
    }
  }
  
  /* Shiny overlay animation */
  @keyframes zagariUnique_shinyOverlay {
    0% {
      transform: translateX(-100%) rotate(45deg);
    }
    100% {
      transform: translateX(200%) rotate(45deg);
    }
  }
  
  /* Apply animations to elements */
  .zagari2025_feature_card {
    position: relative;
    overflow: hidden;
  }
  
  /* Card 1 animation */
  .zagari2025_feature_card:nth-child(1) {
    animation: zagariUnique_slideFromLeft 0.8s ease-out forwards;
  }
  
  /* Card 2 animation */
  .zagari2025_feature_card:nth-child(2) {
    animation: zagariUnique_slideFromBottom 0.8s ease-out 0.2s forwards;
    opacity: 0;
    animation-fill-mode: forwards;
  }
  
  /* Card 3 animation */
  .zagari2025_feature_card:nth-child(3) {
    animation: zagariUnique_slideFromRight 0.8s ease-out 0.4s forwards;
    opacity: 0;
    animation-fill-mode: forwards;
  }
  
  /* Hover effects for all cards */
  .zagari2025_feature_img_container {
    position: relative;
    overflow: hidden;
  }
  
  /* Add shiny overlay */
  .zagari2025_feature_img_container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: translateX(-100%) rotate(45deg);
    transition: transform 0s;
    z-index: 2;
  }
  
  /* Trigger shiny animation on hover */
  .zagari2025_feature_card:hover .zagari2025_feature_img_container::before {
    animation: zagariUnique_shinyOverlay 1s ease-in-out;
  }
  
  /* Image hover effect */
  .zagari2025_feature_card:hover .zagari2025_feature_img {
    transform: scale(1.15);
    filter: saturate(1.3) contrast(1.1);
    transition: transform 0.8s cubic-bezier(0.33, 1, 0.68, 1), filter 0.5s ease;
  }
  
  .zagari2025_feature_img {
    transition: transform 0.4s ease, filter 0.5s ease;
    transform-origin: center;
  }
  
  /* Title animation on hover */
  .zagari2025_feature_card:hover .zagari2025_feature_title {
    color: var(--secondary-color);
    animation: zagariUnique_titleEmphasis 1s forwards;
  }
  
  /* Border animation on hover */
  .zagari2025_feature_card:hover .zagari2025_feature_img_container {
    animation: zagariUnique_borderPulse 1.5s infinite;
  }
  
  /* Add 3D depth to cards */
  .zagari2025_feature_card {
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }
  
  .zagari2025_feature_card:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  }
  
  /* Image reveal effect on page load */
  .zagari2025_feature_img {
    animation: zagariUnique_imageReveal 1.2s ease-in-out forwards;
    animation-delay: calc(var(--card-index, 0) * 0.3s + 0.5s);
  }
  .video-container {
    position: relative;
    width: 100%;
    height: 600px;
    margin: 0 auto;
    overflow: hidden;
    margin: 20px 0;
}

.zoo-video {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .video-container {
        max-width: 100%;
    }
}

.cosmic-reset {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', Arial, sans-serif;
}

.paradise-body {
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
}

.oasis-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.tropical-display {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 50px 0;
}

.beach-left {
    flex: 1;
    min-width: 300px;
}

.sunset-right {
    flex: 1;
    padding: 0 20px;
    min-width: 300px;
}
.coconut-heading {
    font-size: 42px;
    font-weight: 800;
    color: #222;
    margin-bottom: 25px;
    line-height: 1.2;
}

.palm-image {
    width: 100%;
    height: 700px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.seashell-services {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.coral-service {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.starfish-icon {
    width: 50px;
    height: 50px;
    fill: #deb887;
    flex-shrink: 0;
}

.lagoon-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #333;
}

.breeze-description {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .tropical-display {
        flex-direction: column;
    }
    
    .beach-left, .sunset-right {
        width: 100%;
        padding: 0;
        margin-bottom: 30px;
    }
    
    .coconut-heading {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .seashell-services {
        grid-template-columns: 1fr;
    }
    
    .coconut-heading {
        font-size: 30px;
    }
}
/* Golden Luxury Header Styles */
header {
    background: linear-gradient(to right, #000000, #141414, #000000);
    color: #fff;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
  }
  
  /* Logo Styling */
  .logo {
    height: 60px;
    width: 120px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    transition: all 0.3s ease;
  }
  
  /* Contact Information */
  .contact-info {
    color: #D4AF37; /* Golden color */
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    border-left: 1px solid rgba(212, 175, 55, 0.3);
    padding-left: 20px;
  }
  
  /* Hamburger Menu Toggle */
  .menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    cursor: pointer;
    z-index: 1010;
  }
  
  .menu-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: #D4AF37; /* Golden hamburger lines */
    border-radius: 2px;
    transition: all 0.3s ease;
  }
  
  /* Navigation Links */
  .nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
  
  .nav-item {
    position: relative;
  }
  
  .nav-item a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    display: block;
  }
  
  .nav-item a:hover {
    color: #D4AF37; /* Golden hover color */
  }
  
  /* Golden underline animation */
  .nav-item a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, #BF953F, #FCF6BA, #D4AF37, #FBF5B7, #AA771C);
    transition: width 0.3s ease;
  }
  
  .nav-item a:hover::after {
    width: 100%;
  }
  
  /* Dropdown Menu Styling */
  .has-dropdown {
    position: relative;
  }
  
  .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: linear-gradient(to bottom, #141414, #000000);
    min-width: 200px;
    padding: 1rem 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-top: 2px solid #D4AF37;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-radius: 0 0 4px 4px;
  }
  
  .has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
  }
  
  .dropdown-menu a {
    padding: 0.7rem 1.5rem;
    color: #fff;
    transition: all 0.2s ease;
  }
  
  .dropdown-menu a:hover {
    background-color: rgba(212, 175, 55, 0.1);
    color: #D4AF37;
  }
  
  /* Responsive Design */
  @media (max-width: 992px) {
    header {
      padding: 1rem;
    }
    
    .nav-links {
      gap: 1.5rem;
    }
  }
  
  @media (max-width: 768px) {
    .menu-toggle {
      display: flex;
      order: 1;
    }
    
    .logo {
      order: 2;
    }
    
    .contact-info {
      order: 3;
      border-left: none;
      padding-left: 0;
    }
    
    .nav-links {
      position: fixed;
      top: 0;
      left: -100%;
      width: 80%;
      max-width: 300px;
      height: 100vh;
      background: linear-gradient(to bottom, #000000, #141414);
      flex-direction: column;
      padding: 80px 0 30px;
      gap: 0;
      z-index: 1000;
      transition: left 0.3s ease;
      overflow-y: auto;
      box-shadow: 5px 0 15px rgba(0, 0, 0, 0.5);
    }
    
    .nav-links.active {
      left: 0;
    }
    
    .nav-item {
      width: 100%;
    }
    
    .nav-item a {
      padding: 1rem 2rem;
      border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    }
    
    .nav-item a::after {
      display: none;
    }
    
    /* Dropdown styling for mobile */
    .dropdown-menu {
      position: static;
      transform: none;
      background: rgba(0, 0, 0, 0.3);
      border: none;
      border-left: 2px solid #D4AF37;
      box-shadow: none;
      max-height: 0;
      overflow: hidden;
      opacity: 1;
      visibility: visible;
      transition: max-height 0.3s ease;
      margin-left: 2rem;
    }
    
    .has-dropdown.active .dropdown-menu {
      max-height: 1000px;
    }
    
    .dropdown-menu a {
      padding: 0.8rem 2rem;
      font-size: 0.9rem;
    }
    
    /* Hamburger menu animation */
    .menu-toggle.active span:nth-child(1) {
      transform: translateY(10px) rotate(45deg);
    }
    
    .menu-toggle.active span:nth-child(2) {
      opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
      transform: translateY(-10px) rotate(-45deg);
    }
  }
  
  /* Overlay when mobile menu is open */
  .overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 999;
  }
  
  .overlay.active {
    display: block;
  }
  /* Ultra-Luxury Golden Header Styles */
header {
  background: linear-gradient(135deg, #0A0A0A 0%, #121212 50%, #0A0A0A 100%);
  color: #fff;
  padding: 1.2rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.5), 0 1px 3px rgba(212, 175, 55, 0.2);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  backdrop-filter: blur(10px);
}

/* Logo Styling */
.logo {
  height: 70px;
  width: 140px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
  filter: drop-shadow(0 2px 5px rgba(212, 175, 55, 0.3));
  position: relative;
}

.logo::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 30%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #D4AF37, transparent);
  opacity: 0.6;
}

/* Contact Information */
.contact-info {
  font-family: 'Playfair Display', serif;
  color: #F5D463;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 1px;
  border-left: 1px solid rgba(212, 175, 55, 0.3);
  padding-left: 25px;
  position: relative;
  transition: all 0.3s ease;
}

.contact-info::before {
  content: '';
  position: absolute;
  left: -5px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background: #D4AF37;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.8);
}

.contact-info:hover {
  color: #D4AF37;
  transform: translateY(-2px);
  text-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

/* Hamburger Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 24px;
  cursor: pointer;
  z-index: 1010;
  padding: 4px;
  border-radius: 5px;
  background: rgba(212, 175, 55, 0.05);
  transition: all 0.3s ease;
}

.menu-toggle:hover {
  background: rgba(212, 175, 55, 0.1);
}

.menu-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: linear-gradient(90deg, #D4AF37, #F5D463);
  border-radius: 2px;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Navigation Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-item {
  position: relative;
}

.nav-item a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.5px;
  padding: 0.7rem 0;
  transition: all 0.3s ease;
  display: block;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
}

.nav-item a:hover {
  color: #D4AF37;
  transform: translateY(-2px);
  text-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* Golden underline animation */
.nav-item a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #BF953F, #FCF6BA, #D4AF37, #FBF5B7, #AA771C);
  transition: width 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

.nav-item a:hover::after {
  width: 100%;
}

/* Dropdown Menu Styling */
.has-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 15px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: linear-gradient(135deg, #0A0A0A 0%, #121212 50%, #0A0A0A 100%);
  min-width: 250px;
  padding: 1.2rem 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-top: 3px solid #D4AF37;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 3px 10px rgba(212, 175, 55, 0.2);
  border-radius: 0 0 8px 8px;
  backdrop-filter: blur(10px);
}

.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #D4AF37;
}

.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
  padding: 0.9rem 1.8rem;
  color: #E5E5E5;
  transition: all 0.3s ease;
  position: relative;
  border-left: 0px solid #D4AF37;
  text-transform: none;
  font-weight: 400;
  font-size: 0.95rem;
}

.dropdown-menu a:hover {
  background: rgba(212, 175, 55, 0.12);
  color: #D4AF37;
  border-left: 4px solid #D4AF37;
  padding-left: 2.2rem;
}

/* Add a subtle hover effect to the menu items */
.dropdown-menu a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 1.8rem;
  width: calc(100% - 3.6rem);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
  transition: all 0.3s ease;
}

/* Responsive Design */
@media (max-width: 1200px) {
  header {
    padding: 1.2rem 2rem;
  }
  
  .nav-links {
    gap: 2rem;
  }
}

@media (max-width: 992px) {
  header {
    padding: 1rem 1.5rem;
  }
  
  .nav-links {
    gap: 1.5rem;
  }
  
  .nav-item a {
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  header {
    padding: 1rem;
    justify-content: space-between;
  }
  
  .menu-toggle {
    display: flex;
    order: 1;
  }
  
  .logo {
    order: 2;
    margin: 0 auto;
  }
  
  .contact-info {
    order: 3;
    border-left: none;
    padding-left: 0;
    font-size: 0.9rem;
  }
  
  .contact-info::before {
    display: none;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    left: -100%;
    width: 85%;
    max-width: 350px;
    height: 100vh;
    background: linear-gradient(135deg, #0A0A0A 0%, #121212 100%);
    flex-direction: column;
    padding: 100px 0 30px;
    gap: 0;
    z-index: 1000;
    transition: left 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
    overflow-y: auto;
    box-shadow: 5px 0 25px rgba(0, 0, 0, 0.5);
    border-right: 1px solid rgba(212, 175, 55, 0.2);
  }
  
  .nav-links.active {
    left: 0;
  }
  
  .nav-item {
    width: 100%;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.3s ease;
  }
  
  .nav-links.active .nav-item {
    opacity: 1;
    transform: translateX(0);
    transition-delay: calc(0.05s * var(--i));
  }
  
  .nav-item a {
    padding: 1.2rem 2rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    font-size: 1rem;
  }
  
  .nav-item a::after {
    display: none;
  }
  
  /* Dropdown styling for mobile */
  .dropdown-menu {
    position: static;
    transform: none;
    background: rgba(212, 175, 55, 0.03);
    border: none;
    border-left: 3px solid #D4AF37;
    box-shadow: none;
    max-height: 0;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    transition: max-height 0.4s ease;
    margin: 0 1rem 0 2rem;
    padding: 0;
    width: calc(100% - 3rem);
    border-radius: 0;
  }
  
  .dropdown-menu::before {
    display: none;
  }
  
  .has-dropdown.active .dropdown-menu {
    max-height: 1000px;
    padding: 0.5rem 0;
  }
  
  .dropdown-menu a {
    padding: 1rem 1.5rem;
    font-size: 0.9rem;
    border-left: 0;
  }
  
  .dropdown-menu a:hover {
    border-left: 0;
    padding-left: 1.5rem;
  }
  
  .dropdown-menu a::before {
    left: 1rem;
    width: calc(100% - 2rem);
  }
  
  /* Hamburger menu animation */
  .menu-toggle.active {
    background: rgba(212, 175, 55, 0.15);
  }
  
  .menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background: #D4AF37;
  }
  
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
  }
  
  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background: #D4AF37;
  }
}

@media (max-width: 480px) {
  .logo {
    height: 60px;
    width: 120px;
  }
  
  .contact-info {
    font-size: 0.8rem;
  }
}

/* Overlay when mobile menu is open */
.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 999;
  backdrop-filter: blur(5px);
  transition: opacity 0.4s ease;
  opacity: a;
}

.overlay.active {
  display: block;
  animation: fadeIn 0.4s forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Add a subtle floating effect to header */
header {
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.5), 0 1px 3px rgba(212, 175, 55, 0.2);
  }
  50% {
    box-shadow: 0 8px 35px rgba(0, 0, 0, 0.5), 0 2px 5px rgba(212, 175, 55, 0.3);
  }
}

/* Special effect for active page */
.nav-item.active a {
  color: #D4AF37;
  text-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

.nav-item.active a::after {
  width: 100%;
}
/* Centering the logo and splitting navigation */
header {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  /* Other properties remain the same */
}

/* Menu toggle positioning */
.menu-toggle {
  position: absolute;
  left: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  display: none; /* Hidden by default, shown in mobile view */
}

/* Logo styling - truly centered */
.logo {
  height: 70px;
  width: 140px;
  margin: 0 30px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 1001;
  position: relative;
}

/* Nav links positioning */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.left-nav {
  margin-right: auto;
}

.right-nav {
  margin-left: auto;
}

/* Mobile responsive updates */
@media (max-width: 768px) {
  .menu-toggle {
      display: flex;
      z-index: 1002;
  }
  
  .logo {
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      margin: 0;
  }
  
  .left-nav, .right-nav {
      position: fixed;
      top: 0;
      left: -100%;
      width: 85%;
      max-width: 350px;
      height: 100vh;
      background: linear-gradient(135deg, #0A0A0A 0%, #121212 100%);
      flex-direction: column;
      padding: 100px 0 30px;
      gap: 0;
      z-index: 1000;
      transition: left 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
      overflow-y: auto;
      box-shadow: 5px 0 25px rgba(0, 0, 0, 0.5);
      border-right: 1px solid rgba(212, 175, 55, 0.2);
  }
  
  .nav-links.active {
      left: 0;
  }
  
  /* Combine all navigation items */
  #rightNavLinks {
      display: none;
  }
  
  #leftNavLinks .nav-item:last-child::after {
      content: "";
      display: block;
      margin-bottom: 10px;
  }
  
  /* Add right nav items to left nav in mobile view */
  #leftNavLinks.active .nav-item:last-child::after {
      content: none;
  }
}
header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 1.2rem 3rem;
  background: linear-gradient(135deg, #0A0A0A 0%, #121212 50%, #0A0A0A 100%);
  color: #fff;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.5), 0 1px 3px rgba(212, 175, 55, 0.2);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  backdrop-filter: blur(10px);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 24px;
  cursor: pointer;
  z-index: 1010;
  position: absolute;
  left: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
}

.logo {
  grid-column: 2;
  text-align: center;
  height: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo img {
  width: 300px; /* Adjust this value as needed */
  object-fit: contain;
  margin: 0;
  padding: 0;
}

.left-nav {
  grid-column: 1;
  display: flex;
  justify-content: flex-end;
  gap: 2.5rem;
}

.right-nav {
  grid-column: 3;
  display: flex;
  justify-content: flex-start;
  gap: 2.5rem;
}

/* Mobile styles */
@media (max-width: 768px) {
  header {
      grid-template-columns: auto 1fr auto;
      padding: 1rem;
  }
  
  .menu-toggle {
      display: flex;
      grid-column: 1;
  }
  
  .logo {
      grid-column: 2;
  }
  
  .left-nav, .right-nav {
      position: fixed;
      top: 0;
      left: -100%;
      width: 85%;
      max-width: 350px;
      height: 100vh;
      background: linear-gradient(135deg, #0A0A0A 0%, #121212 100%);
      flex-direction: column;
      padding: 100px 0 30px;
      gap: 0;
      z-index: 1000;
      transition: left 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  
  .left-nav.active {
      left: 0;
  }
  
  .right-nav {
      display: none;
  }
}