/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2C1810;
    --secondary-color: #D4A574;
    --accent-color: #C41E3A;
    --text-light: #F5F5F5;
    --text-dark: #1A1A1A;
    --gold: #FFD700;
    --cream: #FFF8E7;
}

body {
    font-family: 'Georgia', serif;
    background: linear-gradient(135deg, #1a0f0a 0%, #2C1810 50%, #1a0f0a 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    overflow-x: hidden;
}

/* Background Pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(212, 165, 116, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(212, 165, 116, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 40% 80%, rgba(212, 165, 116, 0.06) 0%, transparent 35%);
    pointer-events: none;
    z-index: 0;
}

/* Container */
.container {
    text-align: center;
    padding: 2rem;
    max-width: 900px;
    width: 100%;
    position: relative;
    z-index: 1;
}

/* Logo Section */
.logo {
    margin-bottom: 2rem;
    animation: fadeInDown 1s ease-out;
}

.logo h1 {
    font-size: 3.5rem;
    font-weight: normal;
    letter-spacing: 0.3em;
    color: var(--gold);
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 0.5rem;
}

.logo .subtitle {
    font-size: 1.2rem;
    color: var(--secondary-color);
    letter-spacing: 0.5em;
    font-family: 'Arial', sans-serif;
    text-transform: uppercase;
}

/* Coming Soon Title */
.coming-soon {
    margin: 2rem 0;
    animation: fadeIn 1.5s ease-out 0.5s both;
}

.coming-soon h2 {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--cream);
    margin-bottom: 0.5rem;
}

.coming-soon p {
    font-size: 1.1rem;
    color: var(--secondary-color);
    font-style: italic;
}

/* Countdown Timer */
.countdown {
    margin: 3rem 0;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.countdown-title {
    font-size: 1rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 165, 116, 0.3);
    border-radius: 10px;
    padding: 1.5rem 2rem;
    min-width: 140px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.countdown-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 165, 116, 0.2);
}

.countdown-item .number {
    display: block;
    font-size: 3.5rem;
    font-weight: bold;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.5rem;
    font-family: 'Arial', sans-serif;
}

.countdown-item .label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--secondary-color);
}

/* Description */
.description {
    margin: 3rem 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeIn 1.5s ease-out 1s both;
}

.description p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--cream);
}

/* Newsletter Section */
.newsletter {
    margin: 3rem 0;
    animation: fadeInUp 1s ease-out 1.2s both;
}

.newsletter h3 {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
    font-weight: normal;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    min-width: 250px;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(212, 165, 116, 0.3);
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-light);
    font-size: 1rem;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--secondary-color);
    background: rgba(255, 255, 255, 0.1);
}

.newsletter-form input::placeholder {
    color: rgba(245, 245, 245, 0.5);
}

.newsletter-form button {
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #C4956A 100%);
    color: var(--primary-color);
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(212, 165, 116, 0.4);
}

/* Social Links */
.social-links {
    margin: 3rem 0;
    animation: fadeIn 1.5s ease-out 1.4s both;
}

.social-links h3 {
    font-size: 1rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-icon {
    width: 50px;
    height: 50px;
    border: 2px solid var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Footer */
.footer {
    margin-top: 4rem;
    animation: fadeIn 1.5s ease-out 1.6s both;
}

.footer p {
    font-size: 0.9rem;
    color: rgba(245, 245, 245, 0.5);
}

.footer .separator {
    display: inline-block;
    margin: 0 1rem;
    color: var(--secondary-color);
}

/* 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);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo h1 {
        font-size: 2.5rem;
        letter-spacing: 0.2em;
    }
    
    .logo .subtitle {
        font-size: 1rem;
        letter-spacing: 0.3em;
    }
    
    .coming-soon h2 {
        font-size: 2rem;
    }
    
    .countdown-timer {
        gap: 1rem;
    }
    
    .countdown-item {
        min-width: 100px;
        padding: 1rem 1.5rem;
    }
    
    .countdown-item .number {
        font-size: 2.5rem;
    }
    
    .countdown-item .label {
        font-size: 0.75rem;
    }
    
    .description p {
        font-size: 1rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        min-width: 100%;
    }
    
    .newsletter-form button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 2rem;
    }
    
    .container {
        padding: 1rem;
    }
    
    .countdown-item {
        min-width: 80px;
        padding: 0.8rem 1rem;
    }
    
    .countdown-item .number {
        font-size: 2rem;
    }
}