:root {
    --gold: #d4af37;
    --gold-light: #f3e5ab;
    --gold-dark: #996515;
    --dark: #0a0a0a;
    --text: #e0e0e0;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--dark);
    color: var(--text);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    overflow: hidden;
}

.bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('bg.png');
    background-size: cover;
    background-position: center;
    z-index: 0;
    animation: bgZoom 20s infinite alternate ease-in-out;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10,10,10,0.9) 0%, rgba(20,15,10,0.85) 100%);
    z-index: 1;
}

.content {
    position: relative;
    z-index: 2;
    padding: 2rem;
    max-width: 800px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: fadeInDown 1.5s ease-out;
}

.logo-img {
    width: 220px;
    height: auto;
    border-radius: 50%;
    box-shadow: 0 4px 25px rgba(212, 175, 55, 0.15);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.logo-img:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 30px rgba(212, 175, 55, 0.25);
}

main {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 400;
    font-style: italic;
    color: var(--gold-light);
    line-height: 1.2;
    margin-bottom: 0.5rem;
    animation: fadeInUp 1.5s ease-out 0.3s both;
}

p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #ccc;
    animation: fadeInUp 1.5s ease-out 0.6s both;
}

.subtitle {
    font-weight: 300;
    font-size: 1.2rem;
    color: #aaa;
}

.divider {
    margin: 2rem 0;
    color: var(--gold);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 2s ease-out 0.9s both;
}

.divider::before,
.divider::after {
    content: '';
    display: block;
    width: 150px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold));
    margin: 0 1rem;
}

.divider::after {
    background: linear-gradient(to left, transparent, var(--gold));
}

.contact {
    margin-top: 1rem;
    animation: fadeInUp 1.5s ease-out 1.2s both;
}

.notify-form {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

input[type="email"] {
    padding: 1rem 1.5rem;
    border: 1px solid rgba(212, 175, 55, 0.5);
    background: rgba(0,0,0,0.6);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    border-radius: 4px;
    width: 100%;
    max-width: 320px;
    outline: none;
    transition: all 0.3s ease;
}

input[type="email"]::placeholder {
    color: #888;
}

input[type="email"]:focus {
    border-color: var(--gold);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

button {
    padding: 1rem 2.5rem;
    background: linear-gradient(to right, var(--gold), var(--gold-dark));
    color: #000;
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

footer {
    margin-top: 3rem;
    font-size: 0.9rem;
    color: #666;
    animation: fadeIn 2s ease-out 1.5s both;
}

/* Keyframes */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes bgZoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

@media (max-width: 768px) {
    .logo-img {
        width: 160px;
    }
    h1 {
        font-size: 2.2rem;
    }
    .divider::before,
    .divider::after {
        width: 80px;
    }
    .notify-form {
        flex-direction: column;
        align-items: center;
    }
    input[type="email"], button {
        width: 100%;
        max-width: 100%;
    }
}
