:root {
    /* Color Palette - Tropica Vibe */
    --juicelander-orange: #FF7F32;
    --mint: #F0F9F8;
    --sand: #FCF9F2;
    --off-white: #FFFFFF;
    --light-aqua: #E8F4F8;

    /* Semantic Colors */
    --bg-gradient: linear-gradient(135deg, var(--off-white) 0%, var(--mint) 25%, var(--sand) 50%, var(--light-aqua) 75%, var(--off-white) 100%);
    --text-primary: #2D3436;
    --text-secondary: #636E72;
    --card-bg: rgba(255, 255, 255, 0.7);
    --card-border: rgba(255, 255, 255, 0.5);

    /* Typography */
    --font-main: 'Outfit', sans-serif;
}

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

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

.container {
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 40px 20px;
}

/* Hero Section */
.hero {
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards;
}

.logo {
    width: 280px;
    height: auto;
    margin-bottom: 40px;
}

.headline {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.headline span {
    position: relative;
    display: inline-block;
    animation: heartbeat 2.5s ease-in-out infinite;
    color: var(--juicelander-orange);
}

.headline span::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--juicelander-orange);
    opacity: 0.3;
    z-index: -1;
    border-radius: 2px;
}

.subtext {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Status Card */
.status-section {
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease 0.3s forwards;
}

.status-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--card-border);
    padding: 32px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.status-card h2 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    font-weight: 600;
}

.status-card p {
    color: var(--text-secondary);
}

/* Social Section */
.social-section {
    margin-bottom: 80px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease 0.6s forwards;
}

.section-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
}

.social-links {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.social-button {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: var(--off-white);
    border: 1px solid var(--card-border);
    border-radius: 50px;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-button:hover {
    background: var(--juicelander-orange);
    color: var(--off-white);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 127, 50, 0.2);
}

.social-button svg {
    width: 20px;
    height: 20px;
}

/* Footer */
footer {
    width: 100%;
    padding: 40px 0;
    text-align: center;
    margin-top: auto;
    opacity: 0;
    animation: fadeIn 1.5s ease 1s forwards;
}

.footer-logo {
    width: 40px;
    margin-bottom: 16px;
    opacity: 0.8;
}

.copyright {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.tagline {
    font-size: 0.875rem;
    font-style: italic;
    color: var(--text-secondary);
    opacity: 0.7;
}

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

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes heartbeat {
    0% {
        transform: scale(1);
    }

    14% {
        transform: scale(1.05);
    }

    28% {
        transform: scale(1);
    }

    42% {
        transform: scale(1.05);
    }

    70% {
        transform: scale(1);
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .container {
        width: 97%;
    }

    .headline {
        font-size: 2.25rem;
    }

    .logo {
        width: 220px;
    }
}