/* ===== Base Styles ===== */
:root {
    --gold: #c19a6b;
    --dark: #2a2a2a;
    --light: #f9f5f0;
    --text: #555;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: var(--dark);
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: all 0.5s ease;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.nav-left, .nav-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.logo-img {
    height: 50px;
    transition: all 0.3s ease;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--gold);
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

.nav-link:hover:after {
    width: 100%;
}

.nav-link:hover {
    color: var(--gold);
}

/* CTA Button */
.cta-button {
    background-color: var(--gold);
    color: white;
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    margin-left: 15px;
}

.cta-button:hover {
    background-color: #b0885a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Scrolled Header Styles */
.scrolled {
    background-color: rgba(0, 0, 0, 0.95);
    padding: 12px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.scrolled .logo-img {
    height: 40px;
}

.scrolled .nav-link {
    color: white;
}

.scrolled .cta-button {
    background-color: var(--gold);
}

/* Premium White Footer Styles */
.premium-white-footer {
    background: #ffffff;
    color: #333333;
    padding: 60px 0 30px;
    font-family: 'Poppins', sans-serif;
    border-top: 1px solid #f0f0f0;
  }
  
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .footer-top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    margin-bottom: 50px;
  }
  
  .footer-brand {
    display: flex;
    flex-direction: column;
  }
  
  .footer-logo {
    width: 180px;
    height: auto;
    margin-bottom: 20px;
    filter: brightness(0.9);
  }
  
  .footer-tagline {
    font-size: 0.9rem;
    color: #c19a6b;
    margin-bottom: 25px;
    letter-spacing: 1px;
  }
  
  .footer-socials {
    display: flex;
    gap: 15px;
  }
  
  .social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #f5f5f5;
    border-radius: 50%;
    color: #555555;
    transition: all 0.3s ease;
  }
  
  .social-icon:hover {
    background: #c19a6b;
    color: white;
    transform: translateY(-3px);
  }
  
  .footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
  
  .links-column h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #222222;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .links-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .links-column li {
    margin-bottom: 12px;
  }
  
  .links-column a {
    color: #666666;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
  }
  
  .links-column a:hover {
    color: #c19a6b;
  }
  
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid #eeeeee;
    font-size: 0.8rem;
    color: #888888;
  }
  
  .copyright {
    color: #888888;
  }
  
  .credits a {
    color: #c19a6b;
    text-decoration: none;
    transition: opacity 0.3s ease;
  }
  
  .credits a:hover {
    opacity: 0.8;
  }
  
  /* Responsive */
  @media (max-width: 992px) {
    .footer-top {
      grid-template-columns: 1fr;
      gap: 40px;
    }
    
    .footer-links {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 768px) {
    .footer-links {
      grid-template-columns: 1fr;
      gap: 40px;
    }
    
    .footer-bottom {
      flex-direction: column;
      gap: 15px;
      text-align: center;
    }
  }
  
  @media (max-width: 480px) {
    .premium-white-footer {
      padding: 50px 0 25px;
    }
    
    .footer-logo {
      width: 150px;
    }
  }