:root {
    --primary: #2b7a4b; /* Foundation green */
    --primary-light: #48a970;
    --primary-dark: #1e5c36;
    --accent: #d8f3dc;
    --bg-color: #f1f5f3;
    --card-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.6);
    --text-color: #212529;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

.brand-title {
    font-family: 'Playfair Display', serif;
    letter-spacing: 1.5px;
    font-size: 3rem;
}

.brand-subtitle {
    font-size: 1.15rem;
    letter-spacing: 1px;
}

/* Background Animation */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    overflow: hidden;
    background: linear-gradient(135deg, #e4eee9 0%, #f6f9f7 100%);
}

.blob {
    position: absolute;
    filter: blur(90px);
    border-radius: 50%;
    opacity: 0.65;
    animation: drift 25s infinite alternate ease-in-out;
    z-index: -1;
}

.blob-1 {
    top: -15%;
    left: -15%;
    width: 60vw;
    height: 60vw;
    background-color: #b0dfc6; /* Light green */
    animation-duration: 28s;
}

.blob-2 {
    bottom: -20%;
    right: -10%;
    width: 55vw;
    height: 55vw;
    background-color: #8ed6af; /* Mid green */
    animation-direction: alternate-reverse;
}

.blob-3 {
    top: 25%;
    left: 35%;
    width: 45vw;
    height: 45vw;
    background-color: #fce4b4; /* Warm accent */
    opacity: 0.5;
    animation-duration: 32s;
}

@keyframes drift {
    0% { transform: translate(0, 0) scale(1) rotate(0deg); }
    33% { transform: translate(15%, 25%) scale(1.15) rotate(15deg); }
    66% { transform: translate(-10%, 15%) scale(0.9) rotate(-10deg); }
    100% { transform: translate(5%, -15%) scale(1.05) rotate(5deg); }
}

/* Glassmorphism */
.glass-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-top: 1px solid rgba(255,255,255,0.8);
    border-left: 1px solid rgba(255,255,255,0.8);
    box-shadow: 0 25px 45px rgba(20, 50, 35, 0.1);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}

.glass-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 35px 60px rgba(20, 50, 35, 0.15);
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Countdown */
.countdown-item {
    min-width: 100px;
    padding: 18px 12px;
}

.glass-pill {
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 25px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.glass-pill:hover {
    background: rgba(255, 255, 255, 0.85);
    transform: translateY(-4px);
    box-shadow: 0 12px 20px rgba(45, 106, 79, 0.1);
}

/* Form Styles */
.glass-input {
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    border-radius: 40px;
    transition: all 0.3s ease;
}

.glass-input:focus {
    background: #fff;
    box-shadow: 0 0 0 4px rgba(72, 169, 112, 0.2);
    border-color: var(--primary-light);
    outline: none;
}

.notify-btn {
    background-color: var(--primary);
    border-color: var(--primary);
    color: #fff;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.notify-btn:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(43, 122, 75, 0.3);
}

/* Social Icons */
.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: #fff;
    color: var(--primary);
    border-radius: 50%;
    font-size: 1.3rem;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.8);
}

.social-icon:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-6px) rotate(10deg);
    box-shadow: 0 10px 20px rgba(43, 122, 75, 0.25);
}

/* Responsive fixes */
@media (max-width: 768px) {
    .brand-title {
        font-size: 2.5rem;
    }
    
    .countdown-item {
        min-width: 75px;
        padding: 15px 5px;
    }
    
    .countdown-item .fs-1 {
        font-size: 1.75rem !important;
    }
    
    .glass-card {
        padding: 2.5rem 1.5rem !important;
        margin-top: 2rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .countdown {
        gap: 0.5rem !important;
    }
    
    .countdown-item {
        min-width: 65px;
    }
    
    .notify-form {
        width: 100%;
    }
    
    .notify-btn {
        width: 100%;
        margin-top: 0.5rem;
    }
}
