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

/* Set consistent scaling */
html, body {
    width: 100%;
    height: 100%;
    font-family: 'Arial', sans-serif; /* Default fallback font */
}

/* Load the luxurious fonts */
@import url('https://fonts.googleapis.com/css2?family=Didot&family=Playfair+Display&family=Aguero&display=swap');

/* Navigation Bar */
/* Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 50px;
    background-color: rgba(255, 255, 255, 0.9);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    height: 70px; /* Same height as the LV navbar */
}


/* Left Links */
.navbar-left, .navbar-right {
    display: flex;
    list-style: none;
    gap: 30px;
}

.navbar-left li a, .navbar-right li a {
    text-decoration: none;
    color: #000;
    font-family: 'Didot', serif; /* Luxurious serif font */
    font-size: 0.72rem; /* Font size reduced by 40% */
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.navbar-left li a:hover, .navbar-right li a:hover {
    color: #b59f3b; /* Luxurious gold color */
}

/* Logo Styling */
.navbar-logo img {
    height: 120px;
    object-fit: contain;
    display: block;
    margin-left: 25%;
    align-self: center;
}

/* Responsive Design - Mobile */
@media (max-width: 768px) {
    .navbar-left {
        display: none !important; /* Hide navbar-left on mobile */
    }

    .navbar-right {
        display: flex;
        justify-content: flex-end; /* Align navbar-right items to the right */
        gap: 0.3rem;
        
        margin-right: -40px;
        
    }

    .navbar-right .nav-about, 
    .navbar-right .nav-contact {
        display: none; /* Hides the About and Contact buttons */
    }

    /* Move the Menu Button to navbar-right on small screens */
    .menu-container {
        order: 1; /* Move the menu button to the front of navbar-right */
    }

    .navbar-logo {
        margin-left: -70px; /* Center the logo */
        
    }

    .navbar-left li a, .navbar-right li a {
        font-size: 0.7rem; /* Make the font larger for better readability on small screens */
    }

    /* Show the dropdown menu when the menu button is clicked */
    .dropdown {
        display: none; /* Hide the dropdown by default */
    }

    .menu-item.active + .dropdown {
        display: block; /* Show the dropdown when the menu item is clicked */
        left: 150px;
    }
}

/* On larger screens (above 768px), keep the original layout */
@media (min-width: 769px) {

    /* Move the Menu Button to navbar-right on small screens */
    
    .navbar-left {
        display: flex; /* Show navbar-left on larger screens */
    }

    .navbar-right {
        display: flex; /* Show navbar-right on larger screens */
        .menu-container {
            display: none; /* Move the menu button to the front of navbar-right */
        }
    }

    .dropdown {
        display: none; /* Hide the dropdown menu on larger screens */
    }

    .menu-item.active + .dropdown {
        display: block; /* Show the dropdown when the menu item is clicked */
        
    }
}

/* Hero Section */
.hero-section {
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    padding: 20px;
}


@media (min-width: 769px) {
    .hero-overlay h1 {
        font-size: 5rem; /* Larger font size for luxury feel */
        font-family: 'Didot', serif; /* Luxurious Aguero font for tagline */
        font-weight: 500;
        text-transform: capitalize;
        margin-bottom: 10px;
        letter-spacing: 2px;
    }

    .hero-overlay p {
        font-size: 1.5rem;
        font-weight: 300;
        margin-bottom: 20px;
        font-family: 'Playfair Display', serif; /* Match the tagline font */
    }
}


@media (max-width: 769px) {
    .hero-overlay h1 {
        font-size: 2.7rem; /* Larger font size for luxury feel */
        font-family: 'Didot', serif; /* Luxurious Aguero font for tagline */
        font-weight: 500;
        text-transform: capitalize;
        margin-bottom: 10px;
        letter-spacing: 2px;
    }

    .hero-overlay p {
        font-size: 1rem;
        font-weight: 300;
        margin-bottom: 20px;
        font-family: 'Playfair Display', serif; /* Match the tagline font */
    }
}

/* Dropdown Menu */
.menu-item {
    cursor: pointer;
}

.dropdown {
    display: none;
    position: absolute;
    background-color: white;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    min-width: 160px;
    padding: 10px 0;
    z-index: 1000;
}

.dropdown a {
    color: black;
    padding: 8px 16px;
    display: block;
    text-decoration: none;
}

.dropdown a:hover {
    background-color: #ddd;
}

.show {
    display: block;
} 

/* quote Section */

.quote-section {
    text-align: center;
    margin: 10px 0;
    padding-top: 40px
}
/* for smaller screens*/
@media (max-width: 769px) {
.quote-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 500;
    color: #b59f3b; /* Luxurious gold color */
    letter-spacing: 1px;
    line-height: 1.5;
    margin: 0;
}
}
/* for bigger screens*/
@media (min-width: 769px) {
    .quote-text {
        font-family: 'Playfair Display', serif;
        font-size: 2.3rem;
        font-weight: 500;
        color: #b59f3b; /* Luxurious gold color */
        letter-spacing: 1px;
        line-height: 1.5;
        margin: 0;
    }
    }




/* Reveal Section */

/* Reset Styles */


/* Image Container */
.image-container {
    position: relative;
    height: 100vh; /* Fullscreen image */
    overflow: hidden;
}

.image-container img {
    position: fixed; /* This keeps the image static in the viewport */
    top: 0px;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1; /* Ensures it stays in the background */
}

/* Image Container */

/* Hero Section */
.hero-section-2 {
    position: relative;
    width: 100vw; /* Full width of the viewport */
    height: 100vh; /* Full height of the viewport */
    overflow: hidden; /* Ensures no overflow content is visible */
}

.hero-image-2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%; /* Image width fills the container */
    height: 100%; /* Image height fills the container */
    object-fit: cover; /* Ensures the image maintains its aspect ratio and covers the container */
    z-index: -1; /* Ensures the image stays behind the overlay */
}

.hero-overlay-2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    padding: 20px;
}

@media (min-width: 769px) {
    .hero-overlay-2 h1 {
        font-size: 3rem; /* Larger font size for luxury feel */
        font-family: 'Didot', serif; /* Luxurious Aguero font for tagline */
        font-weight: 500;
        text-transform: capitalize;
        margin-bottom: 10px;
        letter-spacing: 2px;
        
    }

    .hero-overlay-2 p {
        font-size: 1.5rem;
        font-weight: 300;
        margin-bottom: 20px;
        font-family: 'Playfair Display', serif; /* Match the tagline font */
    }
}

/*for smaller screens*/
@media (max-width: 769px) {
    .hero-overlay-2 h1 {
        font-size: 3rem; /* Larger font size for luxury feel */
        font-family: 'Didot', serif; /* Luxurious Aguero font for tagline */
        font-weight: 500;
        text-transform: capitalize;
        margin-bottom: 10px;
        letter-spacing: 2px;
    }

    .hero-overlay-2 p {
        font-size: 1.2rem;
        font-weight: 300;
        margin-bottom: 20px;
        font-family: 'Playfair Display', serif; /* Match the tagline font */
    }
}

.luxury-button {
    display: inline-block;
    padding: 12px 24px;
    font-size: 16px;
    font-family: 'Playfair Display', serif; /* Use a serif font for luxury vibes */
    color: #fff;
    background-color: transparent;
    border: 1px solid #b59f3b; /* Gold border */
    border-radius: 10px; /* Rounded edges for a refined look */
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
  }
  
  .luxury-button:hover {
    background-color: #b59f3b; /* Gold background on hover */
    color: #000; /* Black text on hover */
    transform: scale(1.05); /* Slight zoom effect */
  }
  
  .hero-overlay-2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
  }
  
  .hero-overlay-2 h1 {
    margin-bottom: 8px;
  }
  
  .hero-overlay-2 p {
    margin-bottom: 16px;
  }
  
  




/* explore Section */
/* explore Section */
.explore-section {
    padding: 30px 0;
    text-align: center;
}

.explore-container {
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.explore-item {
    position: relative;
    width: 50%; /* Ensure each image takes up 50% of the width */
    height: 100%; /* Make sure both images take the full height of their container */
}

.explore-img {
    width: 100%; /* Ensure the image fills the container's width */
    height: 100%; /* Ensure the image fills the container's height */
    object-fit: cover; /* Make sure the image covers the container without stretching */
    /*border-radius: 10px;*/
    transition: transform 0.3s, box-shadow 0.3s;
}

.explore-item:hover .explore-img {
    transform: scale(1.05); /* Slight zoom effect */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Add shadow on hover */
}

.overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Center the text */
    font-family: 'Didot', serif; /* Luxurious font */
    font-size: 2rem;
    font-weight: 500;
    color: #fff;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    text-align: center;
    letter-spacing: 1px;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .overlay-text {
        font-size: 1rem;
    }
    .explore-container {
        display: flex;
        width: 100%;
        justify-content: space-between;
        flex-wrap: wrap;
        flex-direction: column;
    }
    .explore-item {
        position: relative;
        width: 100%; /* Ensure each image takes up 50% of the width */
        height: 100%; /* Make sure both images take the full height of their container */
    }
}

/* quote Section 2*/

.quote-section-2 {
    text-align: center;
    margin: 1px 0;
    padding-bottom: 0px
}

/* for smaller screens*/
@media (max-width: 769px) {
    .quote-text-2 {
        font-family: 'Playfair Display', serif;
        font-size: 1.3rem;
        font-weight: 500;
        color: #b59f3b; /* Luxurious gold color */
        letter-spacing: 1px;
        line-height: 1.5;
        margin: 0;
    }
}
/* for bigger screens*/
@media (min-width: 769px) {
    .quote-text-2 {
        font-family: 'Playfair Display', serif;
        font-size: 2.3rem;
        font-weight: 500;
        color: #b59f3b; /* Luxurious gold color */
        letter-spacing: 1px;
        line-height: 1.5;
        margin: 0;
    }
}



/* quote Section 2*/

.quote-section-3 {
    text-align: center;
    margin: 1px 0;
    padding-bottom: 40px
}

/* for smaller screens*/
@media (max-width: 769px) {
    .quote-text-3 {
        font-family: 'Playfair Display', serif;
        font-size: 1.3rem;
        font-weight: 500;
        color: #b59f3b; /* Luxurious gold color */
        letter-spacing: 1px;
        line-height: 1.5;
        margin: 0;
    }
}
/* for bigger screens*/
@media (min-width: 769px) {
    .quote-text-3 {
        font-family: 'Playfair Display', serif;
        font-size: 2.3rem;
        font-weight: 500;
        color: #b59f3b; /* Luxurious gold color */
        letter-spacing: 1px;
        line-height: 1.5;
        margin: 0;
    }
}






.timeline-section {
    background-color: #f8f4eb;
    padding: 100px 5%;
    text-align: center;
}

.timeline-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #8b5e3c;
    margin-bottom: 50px;
}

.timeline {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.timeline-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 80%;
    max-width: 1000px;
    position: relative;
    padding: 20px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.timeline-content {
    flex: 1;
    text-align: left;
}

.timeline-content h3 {
    font-size: 1.5rem;
    color: #8b5e3c;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.timeline-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: #333;
    font-family: 'Roboto', sans-serif;
}

.timeline-icon {
    font-size: 2rem;
    color: #8b5e3c;
    margin-left: 20px;
}

@media screen and (max-width: 768px) {
    .timeline {
        gap: 20px;
    }
    .timeline-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .timeline-icon {
        margin-left: 0;
        margin-top: 10px;
    }
}




/* Testimonial Section */
/* Testimonial Section */
.testimonial-section {
    background-color: #000; /* Luxurious black background */
    color: #fff; /* Elegant white text */
    padding: 50px 0;
    font-family: 'Didot', serif; /* High-end luxury font */
    text-align: center;
}

.testimonial-container {
    overflow: hidden; /* Ensures smooth scrolling within the container */
    position: relative;
    max-width: 80%;
    margin: 0 auto;
}

.testimonial-carousel {
    display: flex; /* Horizontal layout */
    animation: scrollTestimonials 150s linear infinite; /* Slow horizontal scrolling animation */
}

.testimonial-item {
    flex: 0 0 100%; /* Each testimonial takes up the full width of the container */
    padding: 30px;
    box-sizing: border-box;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.testimonial-item:hover {
    opacity: 1; /* Slight glow effect on hover */
    transform: scale(1.02);
}

.testimonial-text {
    font-size: 1.5rem;
    line-height: 1.8;
    margin-bottom: 15px;
    font-style: italic; /* Adds elegance */
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.1);
}

.testimonial-author {
    font-size: 1.25rem;
    font-weight: bold;
    margin-top: 10px;
}

.testimonial-credentials {
    font-size: 1rem;
    font-style: normal;
    color: #aaa; /* Softer contrast for credentials */
}

/* Animation for Horizontal Scrolling */
@keyframes scrollTestimonials {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-1000%); /* Moves through all 10 testimonials */
    }
    
}
.testimonials {
    animation: scrollTestimonials 10s linear infinite;
}
/* Dots/Indicators (Optional for Navigation) */
.testimonial-indicators {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.testimonial-indicators span {
    width: 12px;
    height: 12px;
    margin: 0 5px;
    background-color: #fff;
    border-radius: 50%;
    display: inline-block;
    opacity: 0.5;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.testimonial-indicators span.active {
    opacity: 1;
    background-color: #c0a16b; /* Gold tone for active dot */
}


/* Footer Styling */
/* Footer Styling */
.footer {
    background-color: #f8f8f8; /* Matches the header navbar */
    color: #333; /* Dark text for readability */
    padding: 40px 20px;
    text-align: center;
    font-family: 'Didot', serif; /* Luxurious typography */
    border-top: 1px solid #ccc; /* Subtle divider from the testimonial section */
  }
  
  .footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .footer-left, .footer-center, .footer-right {
    flex: 1;
    min-width: 200px; /* Ensures proper spacing */
  }
  
  .footer-text {
    font-size: 1rem;
    margin: 0;
  }
  
  .instagram-link {
    color: #b59f3b; /* Maroon for consistency with your site */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
  }
  
  .instagram-link:hover {
    color: #0a0800; /* Subtle hover effect */
  }
  
  .footer-contact-link {
    color: #b59f3b;
    font-size: 1.2rem;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid #b59f3b;
    padding: 5px 10px;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
  }
  
  .footer-contact-link:hover {
    background-color: #000000;
    color: #fff;
  }
  
  /* Back to Top Button */
  .back-to-top {
    margin: 20px 0;
  }

  
  .back-to-top-link {
    color: #333;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: bold;
    transition: opacity 0.3s;
  }
  
  .back-to-top-link:hover {
    opacity: 0.7;
    color: #b59f3b; /* Subtle hover effect */
  }
  
  /* Copyright Section */
  .footer-bottom {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #555;
  }
  
  .copyright {
    margin: 0;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .footer-content {
      flex-direction: column;
      text-align: center;
    }
  
    .footer-left, .footer-center, .footer-right {
      margin-bottom: 20px;
    }
  }
  
  @media (max-width: 768px) {
    
    
    .footer-contact-link {
        font-size: 0.8rem;
      }
  
    .footer-left, .footer-center {
      display:none;

    }
    .back-to-top {
        margin: 10px 0;
        font-size: 0.5rem;
      }

  }