/* 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; /* 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 {
    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 {
    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 {
    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 */
    }
}

/*for smaller screens*/
@media (max-width: 769px) {
    .hero-overlay 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 p {
        font-size: 1.2rem;
        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;
} 


/* Contact Info Section */
.contact-info-section {
    text-align: center;
    padding: 50px 20px;
    background-color: #f8f8f8; /* Subtle background to differentiate */
}

.contact-info-container {
    max-width: 800px;
    margin: auto;
    background: #ffffff;
    padding: 30px;
    border: 1px solid #ddd;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.contact-info-container h2 {
    font-size: 2.5rem;
    font-family: 'Didot', serif;
    font-weight: 500;
    color: #333;
    margin-bottom: 20px;
}

.contact-info-container p {
    font-size: 1.2rem;
    font-family: 'Playfair Display', serif;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.8;
}

.contact-info-container a {
    color: #333;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.contact-info-container a:hover {
    color: #555; /* Slightly lighter on hover */
}

.or-divider {
    font-size: 1.5rem;
    font-family: 'Playfair Display', serif;
    color: #333;
    font-weight: 700;
    margin: 30px 0;
    text-transform: uppercase;
}

/* contact us*/
/* Contact Us Section */
.contact-us {
    background-color: #f8f8f8;
    padding: 60px 20px;
    text-align: center;
    font-family: 'Playfair Display', serif;
    color: #333;
  }
  
  .contact-container {
    max-width: 800px;
    margin: 0 auto;
    background: #ffffff;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
  }
  
  .section-title {
    font-size: 2.5rem;
    font-family: 'Didot', serif;
    color: #222;
    margin-bottom: 20px;
  }
  
  .section-description {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 30px;
    color: #666;
  }
  
  .contact-form {
    margin-top: 20px;
  }
  
  .form-group {
    margin-bottom: 20px;
    text-align: left;
  }
  
  label {
    display: block;
    font-size: 1rem;
    font-weight: bold;
    color: #555;
    margin-bottom: 5px;
  }
  
  input, select, textarea {
    width: 100%;
    padding: 10px 15px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: 'Playfair Display', serif;
    background-color: #f9f9f9;
    transition: all 0.3s ease-in-out;
  }
  
  input:focus, select:focus, textarea:focus {
    border-color: #222;
    outline: none;
  }
  
  textarea {
    resize: none;
  }
  
  .hidden {
    display: none;
  }
  
  .submit-button {
    font-family: 'Didot', serif;
    font-size: 1.2rem;
    padding: 15px 30px;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
  }
  
  .submit-button:hover {
    background-color: #555;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .contact-container {
      padding: 20px;
    }
  
    .section-title {
      font-size: 2rem;
    }
  
    .section-description {
      font-size: 1rem;
    }
  
    .submit-button {
      font-size: 1rem;
      padding: 10px 20px;
    }
  }
  
  /* 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;
      }

  }