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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    color: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Main Container */
.coming-soon-container {
    min-height: calc(100vh - 80px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    text-align: center;
    position: relative;
}

/* Logo Section */
.logo-section {
    margin-bottom: 3rem;
    animation: fadeInDown 1s ease-out;
}

.logo {
    max-width: 100%;
    height: auto;
    max-height: 180px;
    filter: drop-shadow(0 4px 8px rgba(104, 175, 176, 0.3));
}

/* Image Section */
.image-section {
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.bg-image {
    max-width: 100%;
    height: auto;
    max-height: 400px;
    border-radius: 20px;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: brightness(0.95) saturate(1.1);
    transform: translateY(0px) scale(1);
}

.bg-image:hover {
    transform: translateY(-8px) scale(1.02);
    filter: brightness(1) saturate(1.2) drop-shadow(0 15px 35px rgba(104, 175, 176, 0.2));
}

/* Text Section */
.text-section {
    animation: fadeInUp 1s ease-out 0.6s both;
}

.coming-soon-title {
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #68AFB0 0%, #ffffff 50%, #68AFB0 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.coming-soon-subtitle {
    font-size: clamp(1rem, 4vw, 1.25rem);
    font-weight: 300;
    color: #cccccc;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
    line-height: 1.8;
}

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

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

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* Background Effects */
.coming-soon-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(104, 175, 176, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(104, 175, 176, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .coming-soon-container {
        padding: 1.5rem 1rem;
        min-height: calc(100vh - 70px);
        justify-content: center;
    }
    
    .logo-section {
        margin-bottom: 2rem;
    }
    
    .logo {
        max-height: 150px;
    }
    
    .image-section {
        margin-bottom: 2rem;
    }
    
    .bg-image {
        max-height: 300px;
        border-radius: 15px;
    }
    
    .coming-soon-title {
        margin-bottom: 0.75rem;
        font-size: clamp(2rem, 10vw, 3rem);
    }
    
    .coming-soon-subtitle {
        font-size: 1rem;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    .coming-soon-container {
        padding: 1rem 0.75rem;
        min-height: calc(100vh - 70px);
        justify-content: center;
    }
    
    .logo {
        max-height: 120px;
    }
    
    .bg-image {
        max-height: 250px;
        border-radius: 12px;
    }
    
    .coming-soon-title {
        font-size: clamp(1.8rem, 12vw, 2.5rem);
    }
    
    .coming-soon-subtitle {
        font-size: 0.9rem;
    }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo,
    .bg-image {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .coming-soon-title {
        animation: none;
        background: #68AFB0;
        -webkit-text-fill-color: #68AFB0;
        background-clip: unset;
    }
}

/* Print Styles */
@media print {
    body {
        background: white;
        color: black;
    }
    
    .coming-soon-container::before {
        display: none;
    }
    
    .logo,
    .bg-image {
        filter: none;
        box-shadow: none;
    }
}

/* Focus Styles for Accessibility */
.logo:focus,
.bg-image:focus {
    outline: 2px solid #68AFB0;
    outline-offset: 4px;
}

/* Loading States */
.logo,
.bg-image {
    opacity: 1;
    transition: opacity 0.5s ease;
}
