@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600&family=Playfair+Display:wght@700;900&display=swap');

:root {
    --bg-dark: #050a14;
    --accent-gold: #c5a059;
    --accent-gold-bright: #e5c17b;
    --text-light: #ffffff;
    --text-dim: rgba(255, 255, 255, 0.6);
    --glass: rgba(10, 25, 47, 0.7);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Background Slider/Hero */
.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
    transform: scale(1);
    transition: transform 10s ease-out;
}

.hero-section:hover .hero-bg img {
    transform: scale(1.1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, var(--bg-dark) 100%);
    z-index: -1;
}

/* Content */
.content-wrapper {
    max-width: 1200px;
    width: 90%;
    text-align: center;
    z-index: 10;
    padding: 4rem 2rem;
    background: var(--glass);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(197, 160, 89, 0.2);
    border-radius: 4px;
    /* Sharp, architectural feel */
    position: relative;
}

.content-wrapper::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    width: 50px;
    height: 50px;
    border-top: 2px solid var(--accent-gold);
    border-left: 2px solid var(--accent-gold);
}

.content-wrapper::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 50px;
    height: 50px;
    border-bottom: 2px solid var(--accent-gold);
    border-right: 2px solid var(--accent-gold);
}

.logo-container {
    margin-bottom: 2rem;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
}

.logo-subtext {
    font-size: 0.9rem;
    letter-spacing: 0.5em;
    color: var(--text-dim);
    text-transform: uppercase;
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin: 1.5rem 0;
    line-height: 1.1;
    font-weight: 900;
}

.highlight {
    color: var(--accent-gold);
}

p.tagline {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: var(--text-dim);
    font-weight: 300;
    letter-spacing: 0.05em;
}

/* Countdown */
.timer-container {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 4rem;
}

.timer-box {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.timer-value {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: var(--text-light);
    font-weight: 700;
    line-height: 1;
}

.timer-label {
    font-size: 0.7rem;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 0.3em;
    margin-top: 0.5rem;
}

/* CTA */
.cta-form {
    display: flex;
    max-width: 600px;
    margin: 0 auto;
    gap: 10px;
}

.cta-form input {
    flex: 1;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1.2rem 1.5rem;
    color: white;
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s;
}

.cta-form input:focus {
    border-color: var(--accent-gold);
}

.cta-form button {
    background: var(--accent-gold);
    color: var(--bg-dark);
    border: none;
    padding: 0 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s;
}

.cta-form button:hover {
    background: var(--accent-gold-bright);
    letter-spacing: 0.2em;
}

/* Socials & Footer */
.footer-simple {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.socials {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
}

.socials a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 0.1rem;
    transition: color 0.3s;
}

.socials a:hover {
    color: var(--accent-gold);
}

@media (max-width: 768px) {
    .timer-container {
        gap: 1.5rem;
    }

    .timer-value {
        font-size: 2rem;
    }

    .cta-form {
        flex-direction: column;
    }

    .cta-form button {
        padding: 1.2rem;
    }

    .content-wrapper {
        padding: 2rem 1rem;
    }
}