/* Global Styles */
:root {
    --primary-color: #1e3a8a;
    --secondary-color: #0ea5e9;
    --accent-color: #f59e0b;
    --dark-color: #111827;
    --light-color: #f3f4f6;
    --text-color: #374151;
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    background-color: #f8fafc;
    background-image: linear-gradient(135deg, rgba(30, 58, 138, 0.03) 0%, rgba(14, 165, 233, 0.03) 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/pattern.png');
    opacity: 0.02;
    z-index: -1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    justify-content: space-between;
}

/* Header Styles */
header {
    padding: 1.5rem 0;
}

.logo-container {
    text-align: center;
}

.logo-container h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.tagline {
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 3px;
    color: var(--secondary-color);
    margin-top: 0.25rem;
}

/* Main Content Styles */
main {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 0;
}

.content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.headline {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.accent {
    color: var(--accent-color);
    -webkit-text-fill-color: var(--accent-color);
}

.description {
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 3rem;
    color: var(--text-color);
}

/* Countdown Styles */
.countdown-container {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
}

.countdown-item span:first-child {
    font-size: 2.5rem;
    font-weight: 600;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.countdown-item .label {
    font-size: 0.875rem;
    color: var(--text-color);
    font-weight: 500;
    -webkit-text-fill-color: var(--text-color);
}

/* Notify Form Styles */
.notify-container {
    max-width: 500px;
    margin: 0 auto;
}

#notify-form {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

#email {
    flex: 1;
    padding: 0.875rem 1.25rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.375rem;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

#email:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.2);
}

.btn-notify {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    padding: 0.875rem 1.5rem;
    border-radius: 0.375rem;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-notify:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(14, 165, 233, 0.1);
}

.success-message {
    color: #10b981;
    font-weight: 500;
    display: none;
    padding: 0.5rem 0;
}

/* Contact Info Styles */
.contact-container {
    max-width: 500px;
    margin: 0 auto;
    padding: 1rem 0;
}

.contact-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.contact-info i {
    color: var(--primary-color);
}

.contact-info a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-info a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Footer Styles */
footer {
    padding: 2rem 0 1rem;
    text-align: center;
}

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

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    color: var(--primary-color);
    border-radius: 50%;
    font-size: 1.25rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.social-icon:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.copyright {
    font-size: 0.875rem;
    color: #6b7280;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .headline {
        font-size: 2.25rem;
    }
    
    .description {
        font-size: 1rem;
    }
    
    .countdown-container {
        gap: 1rem;
    }
    
    .countdown-item {
        min-width: 60px;
    }
    
    .countdown-item span:first-child {
        font-size: 2rem;
    }
    
    #notify-form {
        flex-direction: column;
    }
    
    .btn-notify {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 1.5rem;
    }
    
    .headline {
        font-size: 1.75rem;
    }
    
    .countdown-container {
        gap: 0.75rem;
    }
    
    .countdown-item {
        min-width: 50px;
    }
    
    .countdown-item span:first-child {
        font-size: 1.5rem;
    }
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo-container, .headline, .description, .countdown-container, .notify-container, .social-icons {
    animation: fadeIn 0.8s ease-out forwards;
}

.headline {
    animation-delay: 0.2s;
}

.description {
    animation-delay: 0.4s;
}

.countdown-container {
    animation-delay: 0.6s;
}

.notify-container {
    animation-delay: 0.8s;
}

.social-icons {
    animation-delay: 1s;
}
