/* Fonts are imported in HTML head */

:root {
    --primary: #bfa15f;
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --bg-light: #ffffff;
    --bg-dark: #f8fafc;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-primary);
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

.btn-gold-outline {
    border: 1px solid var(--primary);
    color: var(--primary);
    background-color: transparent;
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-size: 0.75rem;
    font-weight: 500;
    padding: 1rem 2rem;
    cursor: pointer;
    border-radius: 9999px;
    /* Rounded full */
}

.btn-gold-outline:hover {
    background-color: var(--primary);
    color: white;
}

.card-hover-effect {
    transition: all 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

.card-hover-effect:hover {
    border-color: rgba(191, 161, 95, 0.5);
    transform: translateY(-0.25rem);
}

/* Video Container Styles - Remains dark effectively due to content, but wrapper is clear */
.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

#hero-section .z-20 {
    z-index: 20;
}

/* FAQ Styles */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    /* Light border */
}

.faq-question {
    padding: 24px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-primary);
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    color: var(--text-secondary);
    font-weight: 300;
    line-height: 1.6;
}

.faq-answer-content {
    padding-bottom: 24px;
}

.faq-toggle {
    transition: transform 0.3s ease;
    color: var(--primary);
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    /* Accommodate long answers */
}

/* Flip Card Styles */
.perspective-1000 {
    perspective: 1000px;
}

.preserve-3d {
    transform-style: preserve-3d;
}

.backface-hidden {
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.rotate-y-180 {
    transform: rotateY(180deg);
}

.card-inner {
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.card-flip-container.is-flipped .card-inner {
    transform: rotateY(180deg);
}

/* Specific styling for the back of the card to match design */
.card-back {
    background-color: var(--bg-light);
    /* Ensure background is solid */
    border: 1px solid #e2e8f0;
    /* gray-200 */
}