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

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(90deg, 
        #1a1a2e 0%, 
        #16213e 20%, 
        #0f3460 40%, 
        #e94560 60%, 
        #ff4757 80%, 
        #ff3838 100%);
    background-size: 200% 100%;
    position: relative;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Vertical Stripes Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 2px,
        rgba(255, 255, 255, 0.03) 2px,
        rgba(255, 255, 255, 0.03) 4px
    );
    pointer-events: none;
    z-index: 1;
}

/* Container */
.container {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2rem;
    color: white;
}

/* Header */
.header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-image {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: brightness(0) invert(1); /* Makes the logo white */
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-line {
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 0.1em;
}

/* Main Content */
.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 4rem;
}

/* Slogan Section */
.slogan-section {
    display: flex;
    justify-content: center;
    align-items: center;
}

.slogan {
    font-size: 3.5rem;
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
    max-width: 800px;
    letter-spacing: -0.02em;
}

/* Coming Soon Section */
.coming-soon-section {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -2rem;
}

.coming-soon-text {
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1.4;
    text-align: center;
    opacity: 0.9;
    letter-spacing: 0.02em;
    max-width: 600px;
}

/* Contact Section */
.contact-section {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
}

.contact-label {
    font-size: 0.9rem;
    font-weight: 400;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.contact-link, .contact-text {
    font-size: 1.2rem;
    font-weight: 500;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-link:hover {
    opacity: 0.8;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
}

.copyright {
    font-size: 0.9rem;
    font-weight: 300;
    opacity: 0.7;
    text-align: center;
}

/* Fade-in Animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out forwards;
}

.slogan.fade-in {
    animation-delay: 0.3s;
}

.coming-soon-text.fade-in {
    animation-delay: 0.5s;
}

.contact-section.fade-in {
    animation-delay: 0.8s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 1.5rem;
    }
    
    .logo {
        gap: 0.8rem;
    }
    
    .logo-line {
        font-size: 1rem;
    }
    
    .slogan {
        font-size: 2.5rem;
        padding: 0 1rem;
    }
    
    .coming-soon-text {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .contact-info {
        gap: 1.2rem;
    }
    
    .contact-link, .contact-text {
        font-size: 1.1rem;
    }
    
    .main-content {
        gap: 3rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 1rem;
    }
    
    .slogan {
        font-size: 2rem;
        padding: 0 0.5rem;
    }
    
    .coming-soon-text {
        font-size: 1rem;
        padding: 0 0.5rem;
    }
    
    .contact-info {
        gap: 1rem;
    }
    
    .contact-link, .contact-text {
        font-size: 1rem;
    }
    
    .logo-line {
        font-size: 0.9rem;
    }
    
    .main-content {
        gap: 2.5rem;
    }
}

/* Landscape orientation adjustments */
@media (max-height: 600px) and (orientation: landscape) {
    .container {
        padding: 1rem;
    }
    
    .main-content {
        gap: 2rem;
    }
    
    .slogan {
        font-size: 2.5rem;
    }
    
    .coming-soon-text {
        font-size: 1.1rem;
    }
    
    .contact-info {
        gap: 1rem;
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    body::before {
        background: repeating-linear-gradient(
            90deg,
            transparent,
            transparent 1px,
            rgba(255, 255, 255, 0.03) 1px,
            rgba(255, 255, 255, 0.03) 2px
        );
    }
}

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

/* Focus styles for accessibility */
.contact-link:focus {
    outline: 2px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
    border-radius: 4px;
}

/* Print styles */
@media print {
    body {
        background: white !important;
        color: black !important;
    }
    
    .container {
        padding: 0;
    }
    
    .fade-in {
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
    }
} 