:root {
    --color-primary: #8C9970;
    /* Olive/Sage Green from logo feel */
    --color-secondary: #C4A484;
    /* Light Brown/Beige */
    --color-dark: #4A4A40;
    /* Darker Earth Tone for text */
    --color-bg: #F9F8F4;
    /* Off-white/Cream background */
    --font-main: "september", sans-serif;
}

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

body {
    font-family: var(--font-main);
    background-color: var(--color-bg);
    color: var(--color-dark);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

/* Subtle background texture or gradient */
.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(140, 153, 112, 0.1) 0%, transparent 70%);
    z-index: -1;
    animation: pulse 10s infinite alternate;
}

.container {
    text-align: center;
    max-width: 800px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.logo-container {
    margin-bottom: 3rem;
    position: relative;
}

.logo {
    max-width: 180px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.05));
    transition: transform 0.3s ease;
}

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

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.coming-soon {
    font-size: 4.5rem;
    font-weight: 500;
    letter-spacing: -0.02em;
    color: var(--color-primary);
    min-height: 5.5rem;
    /* Prevent layout shift */
    display: flex;
    align-items: center;
    justify-content: center;
}

.dynamic-text {
    font-weight: 700;
}

.cursor {
    display: inline-block;
    width: 3px;
    background-color: var(--color-secondary);
    animation: blink 1s infinite;
    margin-left: 10px;
    height: 0.8em;
    vertical-align: baseline;
    margin-bottom: -0.1em;
}

.subtitle {
    font-size: 1.1rem;
    color: var(--color-dark);
    opacity: 0.8;
    margin-bottom: 2rem;
    font-weight: 500;
    font-size: 1.3rem;
}

.contact-wrapper {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
    color: var(--color-dark);
}

.contact-label {
    font-size: 1rem;
    opacity: 0.7;
}

.contact-email {
    text-decoration: none;
    color: var(--color-secondary);
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0;
    border: none;
}

.contact-email:hover {
    color: var(--color-primary);
    transform: none;
    box-shadow: none;
    text-decoration: underline;
}

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

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .coming-soon {
        font-size: 2rem;
    }

    .logo {
        max-width: 220px;
    }

    .subtitle {
        font-size: 1rem;
    }
}