@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;700&display=swap');

:root {
    --primary-color: #95c83d;
    --text-color: #333;
    --bg-color: #ffffff;
    --secondary-bg: #f9f9f9;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

/* Gentle radiating background effect */
body::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80vmax;
    height: 80vmax;
    background: radial-gradient(circle, rgba(149, 200, 61, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: -1;
    border-radius: 50%;
    animation: radiate 6s ease-in-out infinite alternate;
}

body::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60vmax;
    height: 60vmax;
    background: radial-gradient(circle, rgba(149, 200, 61, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: -1;
    border-radius: 50%;
    animation: radiate 10s ease-in-out infinite alternate-reverse;
}

@keyframes radiate {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.4;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.8;
    }
}

.container {
    text-align: center;
    padding: 2rem;
    animation: fadeIn 1.5s ease-out;
}

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #555;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0;
    animation: slideDown 1s ease-out forwards 0.5s;
}

.slogan {
    font-size: 4rem;
    font-weight: 300;
    color: var(--text-color);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.highlight {
    color: var(--primary-color);
    font-weight: 700;
    position: relative;
    display: inline-block;
}

/* Underline effect */
.highlight::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 6px;
    bottom: 5px;
    left: 0;
    background-color: var(--primary-color);
    opacity: 0.3;
    z-index: -1;
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.5s ease-out;
    animation: underline 1s ease-out forwards 1.5s;
}

@keyframes underline {
    to {
        transform: scaleX(1);
        transform-origin: bottom left;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .slogan {
        font-size: 2.5rem;
    }

    .brand {
        font-size: 1.2rem;
    }
}