
/* Custom CSS */

/* Colors */
:root {
    --gold: #D0B27A;
    --gold-light: #E6D5B8;
    --charcoal: #1e1e1e;
    --charcoal-light: #262626;
    --cream: #F8F5F0;
  }
  
  .bg-gold {
    background-color: var(--gold);
  }
  
  .bg-gold\/10 {
    background-color: rgba(208, 178, 122, 0.1);
  }
  
  .bg-gold\/90 {
    background-color: rgba(208, 178, 122, 0.9);
  }
  
  .text-gold {
    color: var(--gold);
  }
  
  .border-gold {
    border-color: var(--gold);
  }
  
  .border-gold\/20 {
    border-color: rgba(208, 178, 122, 0.2);
  }
  
  .border-gold\/50 {
    border-color: rgba(208, 178, 122, 0.5);
  }
  
  .hover\:bg-gold\/10:hover {
    background-color: rgba(208, 178, 122, 0.1);
  }
  
  .hover\:bg-gold\/90:hover {
    background-color: rgba(208, 178, 122, 0.9);
  }
  
  .text-charcoal {
    color: var(--charcoal);
  }
  
  .text-charcoal-light {
    color: var(--charcoal-light);
  }
  
  .bg-cream {
    background-color: var(--cream);
  }
  
  .hover\:text-gold:hover {
    color: var(--gold);
  }
  
  /* Font families */
  .font-playfair {
    font-family: 'Playfair Display', serif;
  }
  
  .font-inter {
    font-family: 'Inter', sans-serif;
  }
  
  /* Animations */
  @keyframes fade-in {
    0% {
      opacity: 0;
      transform: translateY(20px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes fade-in-left {
    0% {
      opacity: 0;
      transform: translateX(-20px);
    }
    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  @keyframes fade-in-right {
    0% {
      opacity: 0;
      transform: translateX(20px);
    }
    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  @keyframes zoom-in {
    0% {
      opacity: 0;
      transform: scale(0.95);
    }
    100% {
      opacity: 1;
      transform: scale(1);
    }
  }
  
  .animate-fade-in {
    animation: fade-in 0.7s ease-out forwards;
  }
  
  .animate-fade-in-left {
    animation: fade-in-left 0.7s ease-out forwards;
  }
  
  .animate-fade-in-right {
    animation: fade-in-right 0.7s ease-out forwards;
  }
  
  .animate-zoom-in {
    animation: zoom-in 0.7s ease-out forwards;
  }
  
  /* Utilities */
  .container {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  /* Responsive styles */
  @media (min-width: 768px) {
    .md\:grid-cols-2 {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    
    .md\:text-4xl {
      font-size: 2.25rem;
    }
    
    .md\:py-24 {
      padding-top: 6rem;
      padding-bottom: 6rem;
    }
  }
  
  @media (min-width: 1024px) {
    .lg\:grid-cols-3 {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    
    .lg\:text-5xl {
      font-size: 3rem;
    }
  }

  header.bg-white{
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
  }
  
  .big-heading{
    font-size: 45px;
    line-height: 1.2;
  }

  .heading{
    font-size: 32px;
    line-height: 1.2;
  }

  .para{
    font-size: 14px;
    line-height: 1.5;
  }

  .sm-flex-column {
    flex-direction: row;
  }

  @media (max-width: 600px) {
    .section-title {
      font-size: 22px;
    }
    .para {
      font-size: 12px;
    }
    .mb-16 {
      margin-bottom: 2rem;
  }
  .py-20 {
    padding-top: 2rem;
    padding-bottom: 2rem;
}
.text-2xl {
  font-size: 18px;
  line-height: 1rem;
}
.footer{
  padding-top: 2rem;
}
.footer p,.footer a{
  font-size: 12px;
  line-height: 1rem;
}
body{
  width: 100%;
  overflow-x: hidden;
}
  }