:root {
    --gold: #c5a059;
    --gold-bright: #f1d592;
    --dark: #0a0a0a;
}

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

body,
html {
    height: 100%;
    font-family: 'Montserrat', sans-serif;
    background-color: var(--dark);
    color: white;
    overflow: hidden;
}

.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: url('https://images.unsplash.com/photo-1600585154340-be6199f7ea0f?auto=format&fit=crop&q=80&w=2070') no-repeat center center/cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.9) 100%);
    z-index: 1;
}

.content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
    animation: fadeInScale 1.8s ease-out;
}

.logo {
    width: 100%;
    max-width: 450px;
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.8));
}

.line {
    width: 80px;
    height: 1px;
    background: var(--gold);
    margin: 20px auto;
}

h1 {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.5rem, 4vw, 3rem);
    letter-spacing: 12px;
    text-transform: uppercase;
    color: white;
    margin-bottom: 10px;
}

p {
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    font-weight: 200;
    letter-spacing: 5px;
    color: #ccc;
    margin-bottom: 40px;
}

.subscription-form {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

input[type="email"] {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(197, 160, 89, 0.3);
    padding: 15px 25px;
    color: white;
    width: 350px;
    backdrop-filter: blur(5px);
    font-family: 'Montserrat', sans-serif;
    transition: all 0.4s ease;
}

input[type="email"]:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.1);
    width: 380px;
}

button {
    background: var(--gold);
    color: #000;
    border: none;
    padding: 15px 40px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

button:hover {
    background: var(--gold-bright);
    box-shadow: 0 0 30px rgba(197, 160, 89, 0.5);
}

.footer {
    position: absolute;
    bottom: 30px;
    z-index: 2;
    width: 100%;
    font-size: 0.7rem;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
}

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.95);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .subscription-form {
        flex-direction: column;
        align-items: center;
    }

    input[type="email"] {
        width: 100%;
    }

    h1 {
        letter-spacing: 5px;
    }
}