/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* CSS Variables */
:root {
    --primary-dark: #0a0a0a;
    --secondary-dark: #1a1a1a;
    --accent-red: #dc3545;
    --accent-red-dark: #c82333;
    --text-white: #ffffff;
    --text-gray: #6c757d;
    --border-light: rgba(255, 255, 255, 0.1);
    --overlay-dark: rgba(0, 0, 0, 0.7);
}

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

body {
    font-family: 'Poppins', sans-serif;
    background: var(--primary-dark);
    color: var(--text-white);
    overflow-x: hidden;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}


/* Main Coming Soon Section */
.coming-soon-section {
    min-height: 100vh;
    background: url('logo.jpeg') center/cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--overlay-dark);
    backdrop-filter: blur(8px);
}

.coming-soon-section .container {
    position: relative;
    z-index: 1;
}

/* Coming Soon Title */
.coming-soon-title h1 {
    font-size: 4rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 8px;
    animation: fadeInUp 1s ease;
}

/* Subtitle */
.coming-soon-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease 0.2s;
    animation-fill-mode: both;
}

/* Countdown Timer */
.countdown-container {
    margin-bottom: 3rem;
}

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

.countdown-item {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--accent-red);
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    min-width: 120px;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease 0.4s;
    animation-fill-mode: both;
}

.countdown-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(220, 53, 69, 0.3);
    border-color: var(--accent-red-dark);
}

.countdown-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-white);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.countdown-label {
    display: block;
    font-size: 0.875rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Subscription Section */
.subscription-section {
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease 0.6s;
    animation-fill-mode: both;
}

.subscribe-text {
    font-size: 1.1rem;
    color: var(--text-white);
    margin-bottom: 1.5rem;
}

.subscribe-form {
    max-width: 500px;
    margin: 0 auto;
}

.input-group {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-light);
    border-radius: 50px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.input-group:focus-within {
    border-color: var(--accent-red);
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.2);
}

.form-control {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--text-white);
    padding: 15px 20px;
    font-size: 1rem;
}

.form-control::placeholder {
    color: var(--text-gray);
}

.form-control:focus {
    outline: none;
    box-shadow: none;
}

.btn-subscribe {
    background: var(--accent-red);
    color: var(--text-white);
    border: none;
    padding: 15px 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-subscribe:hover {
    background: var(--accent-red-dark);
    transform: translateX(2px);
}

/* Social Media Icons */
.social-icons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    animation: fadeInUp 1s ease 0.8s;
    animation-fill-mode: both;
}

.social-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: var(--accent-red);
    color: var(--text-white);
    transform: translateY(-3px);
    border-color: var(--accent-red);
}

/* About Section */
.about-section {
    background: var(--secondary-dark);
    padding: 5rem 0;
}

.content-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-light);
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
}

.content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--accent-red);
}

.content-card h3 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 1rem;
}

.content-card p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.content-card ul {
    list-style: none;
    padding: 0;
}

.content-card ul li {
    color: var(--text-gray);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.content-card ul li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: var(--accent-red);
    font-size: 0.8rem;
}

/* Contact Section */
.contact-section {
    background: var(--primary-dark);
    padding: 5rem 0;
}

.contact-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-light);
    border-radius: 15px;
    padding: 3rem;
    text-align: center;
}

.contact-card h3 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 2rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.contact-item i {
    font-size: 2rem;
    color: var(--accent-red);
    width: 60px;
    height: 60px;
    background: rgba(220, 53, 69, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-item h5 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: var(--text-gray);
    margin: 0;
    font-size: 1.1rem;
}

/* Footer */
.footer {
    background: var(--secondary-dark);
    padding: 2rem 0;
    border-top: 1px solid var(--border-light);
}

.footer p {
    color: var(--text-gray);
    margin: 0.5rem 0;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Success/Error Messages */
.success-message {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: var(--text-white);
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    margin-top: 1rem;
    animation: fadeInUp 0.5s ease;
}

.error-message {
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: var(--text-white);
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    margin-top: 1rem;
    animation: fadeInUp 0.5s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
    .coming-soon-title h1 {
        font-size: 2.5rem;
        letter-spacing: 4px;
    }
    
    .coming-soon-subtitle {
        font-size: 1rem;
    }
    
    .countdown {
        gap: 1rem;
    }
    
    .countdown-item {
        min-width: 80px;
        padding: 1rem;
    }
    
    .countdown-number {
        font-size: 1.8rem;
    }
    
    .navbar-nav {
        gap: 1rem;
    }
    
    .social-icons {
        gap: 1rem;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .subscribe-form {
        max-width: 100%;
    }
    
    .input-group {
        flex-direction: column;
        border-radius: 10px;
    }
    
    .btn-subscribe {
        border-radius: 0 0 10px 10px;
    }
    
    .contact-info {
        gap: 1rem;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .coming-soon-title h1 {
        font-size: 2rem;
        letter-spacing: 2px;
    }
    
    .countdown {
        gap: 0.5rem;
    }
    
    .countdown-item {
        min-width: 70px;
        padding: 0.75rem;
    }
    
    .countdown-number {
        font-size: 1.5rem;
    }
    
    .content-card {
        padding: 1.5rem;
    }
    
    .contact-card {
        padding: 2rem 1.5rem;
    }
}

/* Loading Animation */
.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--text-white);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}
