/* Custom Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* Global Styles using custom fonts */
body {
    font-family: 'Inter', sans-serif;
    color: #4A4A4A; /* Slightly darker stone for body text */
}
h1, h2, h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600; /* Semi-bold for headings */
    color: #2F4F4F; /* Deep forest green for headings */
}

/* Custom CSS Classes for Nav and Interactivity */
.nav-link.active {
    color: #C8AA6A; /* Richer Gold for active nav */
    font-weight: 600;
}

/* FAQ Accordion Transitions */
.faq-question .chevron {
    transition: transform 0.3s ease;
}
.faq-item.open .faq-question .chevron {
    transform: rotate(180deg);
}
.faq-answer {
    transition: max-height 0.3s ease-out;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    padding-top: 0;
}
.faq-item.open .faq-answer {
    max-height: 500px; /* arbitrary large value to ensure content fits */
    opacity: 1;
    padding-top: 1.5rem; /* Increased padding for elegance */
}

/* Custom Button Styles (Non-Tailwind Hover Effects) */
.btn-lux-primary {
    background-color: #3A5340; /* Soft Green */
    color: white;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    box-shadow: 0 6px 15px rgba(58, 83, 64, 0.2); /* Softer, deeper shadow */
}
.btn-lux-primary:hover {
    background-color: #4C7862; /* Moss Green */
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(58, 83, 64, 0.3);
}

.btn-lux-secondary {
    background-color: #F8F8F8; /* Light background for secondary */
    color: #2F4F4F; /* Deep Green Text */
    border: 1px solid #DCDCDC;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.btn-lux-secondary:hover {
    background-color: #EFEFEF;
    color: #4C7862;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Input Focus Style */
.input-lux:focus {
    border-color: #C8AA6A; /* Rich Gold focus */
    box-shadow: 0 0 0 3px rgba(200, 170, 106, 0.3);
}