:root {
    --bg-color: #F8F5EE;
    --text-primary: #943E2C;
    --text-secondary: #5a3832;
    --border-color: rgba(148, 62, 44, 0.2);
    --hover-color: #793223;
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.container {
    width: 100%;
    max-width: 800px;
    padding: 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

/* Background decorative elements */
body::before {
    content: '';
    position: absolute;
    top: -20vh;
    left: -20vw;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(148, 62, 44, 0.05) 0%, rgba(248, 245, 238, 0) 70%);
    border-radius: 50%;
    z-index: 0;
    animation: float 15s ease-in-out infinite alternate;
}

body::after {
    content: '';
    position: absolute;
    bottom: -20vh;
    right: -20vw;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(148, 62, 44, 0.06) 0%, rgba(248, 245, 238, 0) 70%);
    border-radius: 50%;
    z-index: 0;
    animation: float 20s ease-in-out infinite alternate-reverse;
}

@keyframes float {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

.content {
    animation: fadeIn 1.2s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}

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

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

.logo {
    width: 180px;
    height: auto;
    border-radius: 50%; 
    box-shadow: 0 10px 30px rgba(148, 62, 44, 0.15);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.logo:hover {
    transform: scale(1.05);
}

.title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.title .italic {
    font-style: italic;
    font-weight: 400;
}

.subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-weight: 300;
    max-width: 500px;
    margin-inline: auto;
    line-height: 1.6;
}

.notify-form {
    display: flex;
    max-width: 450px;
    margin: 0 auto 3rem;
    gap: 0.5rem;
}

.notify-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 1px solid var(--border-color);
    background: transparent;
    border-radius: 50px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-primary);
    outline: none;
    transition: all 0.3s ease;
}

.notify-form input::placeholder {
    color: rgba(148, 62, 44, 0.5);
}

.notify-form input:focus {
    border-color: var(--text-primary);
    box-shadow: 0 0 0 3px rgba(148, 62, 44, 0.1);
}

.notify-form button {
    padding: 1rem 2rem;
    border: none;
    background-color: var(--text-primary);
    color: var(--bg-color);
    border-radius: 50px;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.notify-form button:hover {
    background-color: var(--hover-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(148, 62, 44, 0.2);
}

.socials {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.socials a {
    color: var(--text-secondary);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
}

.socials a:hover {
    color: var(--bg-color);
    background-color: var(--text-primary);
    border-color: var(--text-primary);
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .title {
        font-size: 2.5rem;
    }
    
    .notify-form {
        flex-direction: column;
        gap: 1rem;
    }
    
    .notify-form input,
    .notify-form button {
        width: 100%;
    }
}
