:root {
    --primary: #002418;
    --secondary: #004B34;
    --accent: #2E936B;
    --white: #FFFFFF;
}

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

body,
html {
    width: 100%;
    height: 100%;
    font-family: 'Roboto', sans-serif;
    color: var(--white);
    overflow: hidden;
    background: url('bg.jpeg') no-repeat center center/cover;
    position: relative;
    display: flex;
    flex-direction: column;
}

/* Background Photo with Green Shade Overlay */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Gradient using the requested colors with transparency for the shade */
    background: linear-gradient(135deg, rgba(0, 36, 24, 0.9) 0%, rgba(0, 75, 52, 0.85) 100%);
    z-index: 1;
}

.header {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 40px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInDown 1s ease-out forwards;
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    max-width: 600px;
    height: auto;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
}

.main-content {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    margin-top: -80px;
    /* Offset the header height to keep things truly centered */
}

.coming-soon {
    font-size: 5rem;
    font-weight: 700;
    letter-spacing: 0.1rem;
    margin-bottom: 0.5rem;
    color: var(--white);
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.4);
    animation: fadeInUp 1s ease-out forwards;
}

.sub-heading {
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--white);
    margin-bottom: 2rem;
    opacity: 0.8;
    animation: fadeInUp 1s ease-out 0.3s forwards;
    opacity: 0;
}

.animated-text-container {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--accent);
    /* Accent color for the animated text */
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    height: 3rem;
    /* maintain height */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    animation: fadeIn 1.5s ease-out 0.5s forwards;
}

#animated-text {
    font-weight: 400;
}

.cursor {
    font-weight: 300;
    color: var(--white);
    margin-left: 5px;
    animation: blink 1s step-end infinite;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

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

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

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

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

@keyframes blink {

    from,
    to {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .logo {
        max-width: 120px;
    }

    .coming-soon {
        font-size: 3.5rem;
        letter-spacing: 0.3rem;
    }

    .animated-text-container {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .coming-soon {
        font-size: 2.5rem;
        letter-spacing: 0.15rem;
    }

    .animated-text-container {
        font-size: 1.3rem;
    }
}