/* ========================================
   nexUS Observatories - Responsive Design
   Media Queries and Mobile Adaptations
   ======================================== */

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }
    
    .logo-main {
        font-size: 2.5rem;
    }
    
    .logo-sub {
        font-size: 1rem;
        letter-spacing: 4px;
    }
    
    .coming-soon h1 {
        font-size: 2rem;
    }
    
    .coming-soon p {
        font-size: 1rem;
    }
    
    .intro-video-container {
        max-width: 100%;
        margin: 2rem auto 1.5rem;
    }
    
    .video-controls {
        bottom: 10px;
        right: 10px;
        gap: 8px;
    }
    
    .video-control-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .info-card {
        padding: 1.5rem;
    }
    
    .countdown {
        gap: 0.8rem;
    }
    
    .countdown-item {
        padding: 1rem;
        min-width: 70px;
    }
    
    .countdown-number {
        font-size: 1.8rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .input-wrapper {
        width: 100%;
    }
    
    .newsletter-button {
        width: 100%;
    }
    
    .conditions-grid {
        grid-template-columns: 1fr;
    }
    
    .tech-pipeline {
        flex-direction: column;
    }
    
    .pipeline-arrow {
        transform: rotate(90deg);
    }
}

