/* ===== CSS Variables ===== */
:root {
    /* Color Palette - Earth Tones & Warm Colors (No Purple) */
    --primary-color: #D4845C;
    --primary-dark: #B86740;
    --secondary-color: #8B6F47;
    --accent-color: #E8B384;
    --dark-brown: #3E2723;
    --warm-beige: #F5E6D3;
    --cream: #FFF8F0;
    --gold: #D4AF37;
    
    /* Glassmorphism Colors */
    --glass-bg: rgba(255, 248, 240, 0.15);
    --glass-border: rgba(255, 255, 255, 0.25);
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    
    /* Effects */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.2);
    --blur-amount: 20px;
}

/* ===== Global Reset ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

/* ===== Background Layer ===== */
.background-layer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -2;
}

.background-layer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(62, 39, 35, 0.85) 0%, rgba(139, 111, 71, 0.75) 50%, rgba(212, 132, 92, 0.7) 100%);
    z-index: -1;
}

/* ===== Floating Shapes Animation ===== */
.floating-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--gold) 100%);
    opacity: 0.1;
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 10%;
    animation-delay: 5s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    bottom: 15%;
    left: 15%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(30px, -30px) rotate(90deg);
    }
    50% {
        transform: translate(0, -60px) rotate(180deg);
    }
    75% {
        transform: translate(-30px, -30px) rotate(270deg);
    }
}

/* ===== Main Container ===== */
.container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--spacing-lg) var(--spacing-md);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-xl);
}

/* ===== Brand Section ===== */
.brand-section {
    text-align: center;
    animation: fadeInDown 1s ease-out;
}

.logo-container {
    width: 100px;
    height: 100px;
    margin: 0 auto var(--spacing-md);
    background: var(--glass-bg);
    backdrop-filter: blur(var(--blur-amount));
    border: 2px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease;
}

.logo-container:hover {
    transform: scale(1.1) rotate(5deg);
}

.logo-icon {
    font-size: 3rem;
    color: var(--accent-color);
    animation: pulse 2s infinite;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 900;
    letter-spacing: 0.1em;
    margin-bottom: var(--spacing-sm);
    background: linear-gradient(135deg, var(--cream) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.brand-tagline {
    font-size: clamp(1rem, 3vw, 1.25rem);
    font-weight: 300;
    letter-spacing: 0.15em;
    color: var(--warm-beige);
    text-transform: uppercase;
}

/* ===== Coming Soon Card ===== */
.coming-soon-card {
    width: 100%;
    max-width: 800px;
    background: var(--glass-bg);
    backdrop-filter: blur(var(--blur-amount));
    border: 2px solid var(--glass-border);
    border-radius: 32px;
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-lg);
    animation: zoomIn 1s ease-out 0.3s both;
    position: relative;
    overflow: hidden;
}

.coming-soon-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(212, 132, 92, 0.1) 100%);
    pointer-events: none;
}

.card-content {
    position: relative;
    z-index: 1;
}

.coming-soon-title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    font-weight: 700;
    color: var(--cream);
    margin-bottom: var(--spacing-md);
    text-align: center;
    line-height: 1.3;
}

.coming-soon-description {
    font-size: clamp(1rem, 2.5vw, 1.125rem);
    color: var(--warm-beige);
    margin-bottom: var(--spacing-xl);
    text-align: center;
    line-height: 1.8;
    font-weight: 300;
}

/* ===== Countdown Timer ===== */
.countdown-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.countdown-item {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: var(--spacing-md);
    text-align: center;
    transition: transform 0.3s ease, background 0.3s ease;
}

.countdown-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.countdown-value {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
    margin-bottom: var(--spacing-xs);
}

.countdown-label {
    font-size: clamp(0.75rem, 2vw, 0.875rem);
    color: var(--warm-beige);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
}

/* ===== CTA Section ===== */
.cta-section {
    text-align: center;
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    padding: var(--spacing-md) var(--spacing-xl);
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 600;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.whatsapp-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.whatsapp-button:hover::before {
    width: 300px;
    height: 300px;
}

.whatsapp-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.4);
}

.whatsapp-button i {
    font-size: 1.5rem;
    position: relative;
    z-index: 1;
}

.whatsapp-button span {
    position: relative;
    z-index: 1;
}

.cta-subtext {
    margin-top: var(--spacing-md);
    font-size: 0.875rem;
    color: var(--warm-beige);
    font-style: italic;
}

/* ===== Social Section ===== */
.social-section {
    text-align: center;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.social-title {
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, 4vw, 1.75rem);
    color: var(--cream);
    margin-bottom: var(--spacing-md);
    font-weight: 600;
}

.social-links {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

.social-link {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--glass-bg);
    backdrop-filter: blur(var(--blur-amount));
    border: 2px solid var(--glass-border);
    color: var(--cream);
    text-decoration: none;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    transform: translateY(100%);
    transition: transform 0.3s ease;
    z-index: -1;
}

.social-link:hover::before {
    transform: translateY(0);
}

.social-link:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: var(--shadow-md);
    color: white;
}

/* Platform Specific Colors */
.social-link.facebook:hover { background: #1877F2; border-color: #1877F2; }
.social-link.tiktok:hover { background: #000000; border-color: #000000; }
.social-link.instagram:hover { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); border-color: #bc1888; }
.social-link.twitter:hover { background: #1DA1F2; border-color: #1DA1F2; }
.social-link.pinterest:hover { background: #E60023; border-color: #E60023; }
.social-link.linkedin:hover { background: #0A66C2; border-color: #0A66C2; }

/* ===== Footer ===== */
.footer {
    margin-top: auto;
    padding-top: var(--spacing-lg);
    text-align: center;
    color: var(--warm-beige);
    font-size: 0.875rem;
    opacity: 0.8;
}

/* ===== Animations ===== */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    .container {
        padding: var(--spacing-md) var(--spacing-sm);
        gap: var(--spacing-lg);
    }

    .coming-soon-card {
        padding: var(--spacing-lg);
        border-radius: 24px;
    }

    .countdown-container {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-sm);
    }

    .logo-container {
        width: 80px;
        height: 80px;
    }

    .logo-icon {
        font-size: 2.5rem;
    }

    .whatsapp-button {
        padding: var(--spacing-sm) var(--spacing-md);
        font-size: 1rem;
    }

    .social-link {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .floating-shape {
        opacity: 0.05;
    }

    .shape-1 {
        width: 200px;
        height: 200px;
    }

    .shape-2 {
        width: 150px;
        height: 150px;
    }

    .shape-3 {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 480px) {
    .countdown-value {
        font-size: 2rem;
    }

    .countdown-label {
        font-size: 0.7rem;
    }

    .social-links {
        gap: var(--spacing-sm);
    }

    .whatsapp-button {
        width: 100%;
        justify-content: center;
    }
}

/* ===== Accessibility ===== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ===== Print Styles ===== */
@media print {
    .floating-elements,
    .background-layer {
        display: none;
    }
}
