:root {
    --primary: #153058;
    --secondary: #C5AE7D;
    --white: #FFFFFF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--primary);
    color: var(--white);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
    position: relative;
}

/* Decorative Background */

.background-accent {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(197, 174, 125, 0.08);
    top: -250px;
    right: -200px;
}

.background-accent::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    border: 1px solid rgba(197, 174, 125, 0.15);
    top: 50px;
    left: 50px;
}

/* Main Container */

.container {
    max-width: 700px;
    width: 90%;
    text-align: center;
    z-index: 2;
}

/* Logo */

.logo-container {
    margin-bottom: 0%;
}

.logo-image {
    width: 250px;
    max-width: 90%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Optional Brand Text */

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary);
    letter-spacing: 2px;
    margin-bottom: 20px;
}

/* Tagline */

.tagline {
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.95rem;
    margin-bottom: 30px;
}

/* Heading */

h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

/* Description */

p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    line-height: 1.8;
    max-width: 550px;
    margin: 0 auto 40px;
}

/* Email Form */

.email-form {
    display: flex;
    gap: 10px;
    max-width: 550px;
    margin: 0 auto;
}

.email-form input {
    flex: 1;
    padding: 16px 20px;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    outline: none;
}

.email-form button {
    padding: 16px 30px;
    border: none;
    border-radius: 4px;
    background: var(--secondary);
    color: var(--primary);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.email-form button:hover {
    transform: translateY(-2px);
}

/* Success Message */

.success-message {
    display: none;
    margin-top: 25px;
    color: var(--secondary);
    font-weight: 500;
}

/* Footer */

footer {
    margin-top: 50px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

/* Mobile */

@media (max-width: 768px) {

    .logo-image {
        width: 180px;
    }

    .logo-text {
        font-size: 2.2rem;
    }

    h1 {
        font-size: 2rem;
    }

    .email-form {
        flex-direction: column;
    }

    .email-form button {
        width: 100%;
    }
}
