:root {
    --primary: #7D9D85;
    --primary-dark: #5A7260;
    --accent: #D4AF37;
    --bg-cream: #FDFBFA;
    --text-dark: #2D3436;
    --text-light: #636E72;
    --glass: rgba(255, 255, 255, 0.85);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-cream);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
        url('./assets/images/banner-parkhill.jpg');
    background-size: cover;
    background-position: center;
    filter: brightness(0.8) contrast(1.1);
    animation: zoomEffect 20s infinite alternate ease-in-out;
}

@keyframes zoomEffect {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.1);
    }
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeIn 1.2s forwards 0.3s;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

header {
    margin-bottom: 50px;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: -1px;
    margin-bottom: 10px;
    display: inline-block;
    position: relative;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--accent);
}

.tagline {
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 3px;
    font-size: 0.85rem;
    color: #F9F7F2;
    margin-top: 15px;
    opacity: 0.9;
}

main {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 60px 40px;
    border-radius: 30px;
    max-width: 900px;
    margin: 0 auto;
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 7vw, 5rem);
    margin-bottom: 25px;
    color: #FFFFFF;
    line-height: 1.1;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    font-weight: 700;
}

.intro-text {
    font-size: 1.3rem;
    color: #F9F7F2;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    font-weight: 400;
    line-height: 1.8;
}

.form-container {
    max-width: 500px;
    margin: 0 auto;
}

.input-group {
    display: flex;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 10px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition);
}

.input-group:focus-within {
    box-shadow: 0 15px 40px rgba(125, 157, 133, 0.15);
    border-color: var(--primary);
}

input[type="email"] {
    flex: 1;
    border: none;
    padding: 15px 25px;
    font-size: 1rem;
    border-radius: 50px;
    outline: none;
    font-family: inherit;
    background: transparent;
    color: white;
}

input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

button {
    background: var(--accent);
    color: #2D3436;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
    text-transform: uppercase;
    letter-spacing: 1px;
}

button:hover {
    background: var(--primary-dark);
    transform: scale(1.02);
    box-shadow: 0 5px 15px rgba(125, 157, 133, 0.3);
}

.status-msg {
    margin-top: 15px;
    font-size: 0.9rem;
    color: var(--primary);
    display: none;
}

footer {
    margin-top: 50px;
    color: #F9F7F2;
    opacity: 0.8;
}

.social-links {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-links a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    border-bottom: 1px solid transparent;
}

.social-links a:hover {
    color: var(--accent);
}

.copyright {
    font-size: 0.85rem;
    opacity: 0.7;
}

@media (max-width: 768px) {
    main {
        padding: 40px 20px;
    }

    .input-group {
        flex-direction: column;
        background: transparent;
        box-shadow: none;
        border: none;
        padding: 0;
        gap: 15px;
    }

    input[type="email"] {
        width: 100%;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        border: 1px solid #eee;
    }

    button {
        width: 100%;
    }
}