/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #fef8f5 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    padding: 2rem;
}

.content {
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

/* Logo Section */
.logo-section {
    margin-bottom: 2rem;
}

.logo {
    display: inline-block;
    animation: pulse 2s ease-in-out infinite;
}

.logo svg {
    filter: drop-shadow(0 4px 6px rgba(212, 165, 116, 0.3));
}

/* Typography */
.main-heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: #7f8c8d;
    font-weight: 400;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Countdown Container */
.countdown-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(0.5rem, 2vw, 1.5rem);
    margin: 3rem 0;
    flex-wrap: wrap;
}

.countdown-box {
    background: white;
    border-radius: 16px;
    padding: clamp(1.5rem, 3vw, 2.5rem) clamp(1rem, 2.5vw, 2rem);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    min-width: clamp(80px, 15vw, 120px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid #f8f9fa;
}

.countdown-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 165, 116, 0.2);
}

.countdown-number {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: #d4a574;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.countdown-label {
    font-size: clamp(0.75rem, 1.5vw, 1rem);
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #7f8c8d;
    font-weight: 500;
}

.countdown-separator {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    color: #d4a574;
    opacity: 0.5;
    display: none;
}

/* Launch Date */
.launch-date {
    margin: 2rem 0 3rem;
}

.launch-date p {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: #5a6c7d;
    font-weight: 400;
}

.launch-date span {
    font-weight: 600;
    color: #d4a574;
}

/* Notify Section */
.notify-section {
    max-width: 600px;
    margin: 4rem auto 3rem;
    padding: 2.5rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.notify-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.notify-text {
    color: #7f8c8d;
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    margin-bottom: 2rem;
}

.email-form {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.email-form input[type="email"] {
    flex: 1;
    min-width: 250px;
    padding: 1rem 1.5rem;
    border: 2px solid #e8ecef;
    border-radius: 50px;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    outline: none;
}

.email-form input[type="email"]:focus {
    border-color: #d4a574;
    box-shadow: 0 0 0 4px rgba(212, 165, 116, 0.1);
}

.email-form button {
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #d4a574 0%, #c89660 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.email-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212, 165, 116, 0.3);
}

.email-form button:active {
    transform: translateY(0);
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: white;
    color: #5a6c7d;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.social-links a:hover {
    background: #d4a574;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 165, 116, 0.3);
}

/* Animations */
@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.05);
    }
}

/* Responsive Design */
@media (min-width: 768px) {
    .countdown-separator {
        display: block;
    }
}

@media (max-width: 767px) {
    .countdown-container {
        gap: 1rem;
    }
    
    .email-form {
        flex-direction: column;
    }
    
    .email-form input[type="email"],
    .email-form button {
        width: 100%;
    }
    
    .notify-section {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 1rem;
    }
    
    .countdown-box {
        min-width: 70px;
    }
    
    .social-links {
        gap: 1rem;
    }
    
    .social-links a {
        width: 40px;
        height: 40px;
    }
    
    .social-links a svg {
        width: 20px;
        height: 20px;
    }
}

/* Print Styles */
@media print {
    body {
        background: white;
    }
    
    .email-form,
    .social-links {
        display: none;
    }
}
