/* --- Global Styles & Resets --- */
:root {
    --primary-accent: #c9b47f;
    --text-color: #e9e9e9;
    --text-secondary: #a0a0a0;
    --bg-color: #1a1a1d;
    --card-bg: #232326;
    --border-color: rgba(201, 180, 127, 0.2);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

/* === UPDATED BODY WITH BACKGROUND IMAGE === */
body {
    font-family: 'Lato', sans-serif;
    color: var(--text-color);
    /* Image from Unsplash by Ricardo Gomez Angel */
    background-image: linear-gradient(rgba(18, 18, 20, 0.7), rgba(18, 18, 20, 0.7)), url('img/bg.png');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    display: flex; justify-content: center; align-items: center; min-height: 100vh; padding: 4rem 2rem;
}

/* --- Main Container & Layout --- */
.container { display: flex; flex-direction: column; align-items: center; text-align: center; width: 100%; max-width: 700px; gap: 2.5rem; }

/* --- Header & Logo Styles --- */
.logo-header { margin-bottom: 0; }
.logo { font-family: 'Cormorant Garamond', serif; font-size: clamp(3rem, 10vw, 5rem); font-weight: 600; letter-spacing: 1px; color: #e9e9e9 !important; line-height: 1.1; text-shadow: 0 0 15px rgba(255, 255, 255, 0.1); white-space: nowrap; }
.logo .partner-text { font-weight: 300; }

/* --- Main Content Card --- */
.main-content-card { background: var(--card-bg); border: 1px solid var(--border-color); border-radius: 12px; padding: 2rem 2.5rem; width: 100%; backdrop-filter: blur(5px); box-shadow: 0 10px 30px rgba(0,0,0,0.3); }
.tagline { font-size: 1.25rem; font-weight: 300; color: var(--text-color); margin-bottom: 2rem; }

/* --- Countdown Timer --- */
.countdown { display: flex; justify-content: center; gap: 2rem; margin-bottom: 2.5rem; }
.time-box { width: 90px; }
.time-box span { display: block; font-size: clamp(2rem, 10vw, 3rem); font-weight: 400; line-height: 1; color: var(--text-color); padding-bottom: 0.5rem; border-bottom: 1px solid var(--border-color); }
.time-box small { display: block; margin-top: 0.75rem; font-size: 0.75rem; font-weight: 300; text-transform: uppercase; letter-spacing: 1px; color: var(--text-secondary); }

/* --- Contact Section --- */
.signup-section h2 { font-family: 'Cormorant Garamond', serif; font-size: 1.75rem; font-weight: 600; margin-bottom: 0.5rem; color: var(--primary-accent); }
.signup-section p { font-weight: 300; color: var(--text-secondary); margin-bottom: 1.5rem; max-width: 450px; margin-left: auto; margin-right: auto; }
.email-link { display: inline-block; color: var(--primary-accent); font-size: 1.1rem; font-weight: 400; text-decoration: none; padding: 0.5rem 1rem; border: 1px solid var(--border-color); border-radius: 6px; transition: background-color 0.3s ease, color 0.3s ease; }
.email-link:hover { background-color: var(--primary-accent); color: var(--bg-color); }

/* === NEW FAQ SECTION STYLES === */
.faq-section { width: 100%; text-align: left; }
.faq-title { text-align: center; font-family: 'Cormorant Garamond', serif; font-size: 2rem; margin-bottom: 1.5rem; color: var(--text-color); }
.faq-item { border-bottom: 1px solid var(--border-color); }
.faq-question { width: 100%; background: none; border: none; padding: 1.5rem 1rem; text-align: left; font-family: 'Lato', sans-serif; font-size: 1.1rem; color: var(--text-color); cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.faq-question:hover { color: var(--primary-accent); }
.faq-icon { font-size: 1.5rem; font-weight: 300; color: var(--text-secondary); transition: transform 0.3s ease; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease-out; }
.faq-answer p { padding: 0 1rem 1.5rem 1rem; color: var(--text-secondary); line-height: 1.6; }
/* Styles for active/open state */
.faq-question.active .faq-icon.plus { display: none; }
.faq-question:not(.active) .faq-icon.minus { display: none; }
.faq-question.active .faq-icon.minus { transform: rotate(180deg); }

/* --- Footer --- */
footer { margin-top: 1rem; }
.social-links { display: flex; justify-content: center; gap: 2rem; margin-bottom: 1rem; }
.social-links a { color: var(--text-secondary); font-size: 1.2rem; transition: color 0.3s ease, transform 0.3s ease; }
.social-links a:hover { color: var(--primary-accent); transform: translateY(-3px); }
.copyright { font-size: 0.8rem; font-weight: 300; color: var(--text-secondary); opacity: 0.7; }

/* --- Responsive Design --- */
@media (max-width: 600px) {
    body { padding: 2rem 1rem; }
    .main-content-card { padding: 1.5rem; }
    .countdown { gap: 1rem; }
}