:root {
    /* Earthy/Recreational Palette */
    --bg-color: #fdf6e3;
    /* Creamy off-white */
    --text-color: #2c3e50;
    /* Dark slate */
    --accent-color: #e67e22;
    /* Earthy orange/rust */
    --secondary-accent: #27ae60;
    /* Forest green */
    --font-main: 'Outfit', sans-serif;
}

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

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

/* Subtle Texture Background */
.background-texture {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: radial-gradient(#d4c5a9 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.3;
}

.container {
    width: 100%;
    max-width: 1200px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    z-index: 1;
}

.content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    text-align: center;
    animation: fadeIn 1s ease-out;
}

/* Logo Styling */
.logo-wrapper {
    margin-bottom: 1rem;
}

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

.main-logo:hover {
    transform: scale(1.05) rotate(2deg);
}

/* Slogan Styling */
.slogan {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.highlight {
    color: var(--accent-color);
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 15px;
    background-color: rgba(39, 174, 96, 0.2);
    /* Green highlight */
    z-index: -1;
    transform: skewX(-10deg);
}

.footer {
    position: absolute;
    bottom: 2rem;
    color: #7f8c8d;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

/* Responsive */
@media (min-width: 768px) {
    .slogan {
        font-size: 5rem;
    }

    .main-logo {
        width: 280px;
    }
}