/* === layout.css === */
/* Navbar Container Fix */
.navbar {
    position: sticky;
    top: 0;
    z-index: 999;
    background-color: #0a0a0a;
    border-bottom: 1px solid #222;
  }
  
  .navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
  }
  
  .navbar-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 2rem;
  }
  
  /* Logo */
  .logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
  }
  
  .logo img {
    height: 55px;
    width: auto;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: drop-shadow(0 0 6px rgba(255, 215, 0, 0.2));
  }
  
  .logo img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 12px rgba(255, 215, 0, 0.4));
  }
  
  .logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: #f5d76e;
    letter-spacing: 0.5px;
  }
  
  /* Nav Links */
  .nav-links {
    display: flex;
    gap: 2rem;
  }
  
  .nav-links li a {
    font-weight: bold;
    font-size: 1rem;
    position: relative;
    color: #f5d76e;
  }
  
  .nav-links li a::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    background: #f5d76e;
    left: 0;
    bottom: -4px;
    transition: width 0.3s ease;
  }
  
  .nav-links li a:hover::after {
    width: 100%;
  }
  
  /* Hamburger Toggle */
  .hamburger {
    display: none;
    font-size: 1.8rem;
    color: #f5d76e;
    cursor: pointer;
  }
  
  /* Mobile Style */
  @media (max-width: 768px) {
    .nav-links {
      display: none;
      flex-direction: column;
      gap: 1rem;
      background: #0a0a0a;
      padding: 1rem 0;
    }
  
    .nav-links.active {
      display: flex;
    }
  
    .hamburger {
      display: block;
    }
  }
  
  
  .footer {
    background-color: #0a0a0a;
    text-align: center;
    padding: 2rem 0 1rem;
    font-size: 0.9rem;
    border-top: 1px solid #222;
    color: #888;
  }
  
  .luxury-line {
    height: 2px;
    background: linear-gradient(90deg, transparent, #f5d76e, transparent);
    animation: shimmer 4s linear infinite;
    margin: 0 auto 1rem;
    width: 80%;
  }
  
  @keyframes shimmer {
    0% { opacity: 0.2; transform: scaleX(0.8); }
    50% { opacity: 1; transform: scaleX(1); }
    100% { opacity: 0.2; transform: scaleX(0.8); }
  }
  