:root {
    --primary: #c3b091;
    /* Premium Beige */
    --accent: #eee5d8;
    /* Soft Cream */
    --background: #fffafa;
    /* Snow White */
    --text: #4a4238;
    /* Warm Earthy Brown */
    --text-muted: #8c7f70;
    /* Muted Sand */
    --glass-bg: rgba(255, 255, 255, 0.82);
    --glass-border: rgba(195, 176, 145, 0.25);
    --shadow: 0 15px 45px rgba(74, 66, 56, 0.08);
}

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

body {
    font-family: 'Tajawal', 'Outfit', sans-serif;
    background: var(--background);
    color: var(--text);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
    padding: 20px;
}

/* Artistic Fashion Background */
.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: url('assets/bg.png') no-repeat center center;
    background-size: cover;
    filter: brightness(1.05) contrast(0.95);
}

.background-animation::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 248, 249, 0.2) 0%, rgba(255, 248, 249, 0.8) 100%);
}

.container {
    max-width: 800px;
    width: 100%;
    text-align: center;
    z-index: 10;
}

/* Glassmorphism utility */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow);
}

.logo-section {
    margin-bottom: 3rem;
    animation: fadeInDown 1.2s ease-out;
}

.brand-name {
    font-family: 'Playfair Display', serif;
    font-size: clamp(4.5rem, 15vw, 7.5rem);
    font-weight: 800;
    font-style: italic;
    letter-spacing: -2px;
    color: #000000;
    margin-bottom: 0.1rem;
    line-height: 0.9;
}

.brand-name span {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 0.22em;
    font-weight: 300;
    letter-spacing: 18px;
    margin-top: 5px;
    opacity: 0.55;
    text-transform: uppercase;
    text-indent: 18px;
}

.tagline {
    font-size: clamp(1rem, 4vw, 1.2rem);
    color: var(--text-muted);
    font-weight: 300;
    letter-spacing: 1px;
}

/* Countdown */
.countdown-section {
    margin-bottom: 4rem;
    animation: fadeInUp 1.4s ease-out;
}

.countdown-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    padding: 2.5rem;
    border-radius: 2rem;
}

.countdown-wrapper {
    display: flex;
    flex-direction: column;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.number {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 0 4px 12px rgba(195, 176, 145, 0.15);
}

.label {
    font-size: clamp(0.7rem, 2vw, 0.9rem);
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    animation: fadeInUp 1.6s ease-out;
}

.social-icon {
    width: 3.5rem;
    height: 3.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: var(--text);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    cursor: pointer;
}

.social-icon:hover {
    transform: translateY(-5px);
    background: var(--text);
    color: var(--accent);
    box-shadow: 0 10px 20px rgba(61, 43, 39, 0.2);
}

#alma-link {
    background: #4d0011;
    /* Deep Burgundy */
    color: var(--primary);
    /* Beige */
    border: 1px solid rgba(195, 176, 145, 0.3);
}

#alma-link:hover {
    background: #660016;
    color: #fff;
    transform: translateY(-5px) scale(1.05);
}

.social-icon svg {
    width: 1.5rem;
    height: 1.5rem;
}

/* Hide SR only spans */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

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

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

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

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

/* Mobile Responsiveness */
@media (max-width: 600px) {
    .countdown-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 1.5rem;
    }

    .social-links {
        gap: 1rem;
    }

    .social-icon {
        width: 3rem;
        height: 3rem;
    }
}

/* Add custom cursor or interactive glow */
body::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(201, 168, 106, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}