:root {
    --bg-maroon: #2d0606;
    --text-white: #ffffff;
    --text-dim: rgba(255, 255, 255, 0.5);
    --accent: #e0c097;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    background: radial-gradient(circle at center, #4e0d0d 0%, #3d0a0a 100%);
    height: 100%;
    width: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-white);
    -webkit-font-smoothing: antialiased;
}

.main-wrapper {
    height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* Bottom padding increased to 40px to push socials lower naturally */
    padding: 60px 60px 40px 60px;
    position: relative;
    z-index: 2;
}

.brand-name {
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    text-align: center;
}

.content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.badge {
    text-transform: uppercase;
    font-size: 0.65rem;
    letter-spacing: 4px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 24px;
    display: inline-block;
    margin-bottom: 30px;
    border-radius: 100px;
    color: var(--accent);
}

h1 {
    font-size: clamp(2.2rem, 8vw, 4.5rem);
    font-weight: 200;
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -2px;
}

p {
    color: var(--text-dim);
    font-size: 1rem;
    font-weight: 300;
    max-width: 400px;
    margin: 0 auto;
    line-height: 1.6;
}

.footer {
    /* Changed from fixed to flex for professional alignment */
    display: flex; 
    justify-content: space-between;
    align-items: center;
    width: 100%;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.socials {
    display: flex;
    gap: 25px;
    align-items: center;
}

.socials a {
    text-decoration: none;
    color: var(--text-white);
    opacity: 0.6;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
}

.social-icon {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.socials a:hover {
    opacity: 1;
    color: var(--accent);
}

.socials a:hover .social-icon {
    transform: translateY(-3px) scale(1.1);
}

.slo {
    margin-bottom: 2px;
}

.sec {
    letter-spacing: 1.2px;
    text-transform: uppercase;
    max-width: 100%; /* Makes the line width big as requested */
}

/* --- ANIMATION LOGIC --- */

.reveal {
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 1.5s cubic-bezier(0.16, 1, 0.3, 1),
                transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* 1. Breathing Pulse Animation for the Badge */
.pulse {
    animation: pulse-glow 3s infinite ease-in-out;
}

@keyframes pulse-glow {
    0%, 100% {
        transform: scale(1);
        border-color: rgba(255, 255, 255, 0.2);
    }
    50% {
        transform: scale(1.03);
        border-color: var(--accent);
        box-shadow: 0 0 15px 2px rgba(224, 192, 151, 0.1);
    }
}

/* 2. Text Shimmer Effect for the Heading */
.shimmer {
    background: linear-gradient(
        to right, 
        #fff 20%, 
        var(--accent) 40%, 
        var(--accent) 60%, 
        #fff 80%
    );
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 5s linear infinite;
}

@keyframes shine {
    to { background-position: 200% center; }
}

/* 3. Smooth Floating for the Paragraph */
.sec.active {
    animation: float 4s ease-in-out infinite alternate;
    animation-delay: 1.5s;
}

@keyframes float {
    from { transform: translateY(0); }
    to { transform: translateY(-5px); }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .main-wrapper {
        /* Bottom padding kept low for mobile visibility */
        padding: 40px 24px 25px 24px;
    }

    .footer {
        flex-direction: column-reverse;
        gap: 25px;
        text-align: center;
        font-size: 10px;
    }

    .socials {
        margin-bottom: 0; /* Managed the margin for footer consistency */
    }

    h1 {
        font-size: 2.5rem;
    }
}