/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative;
    background-image: url('img/mecca_hd.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* Dark Semi-transparent Overlay */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.65) 50%, rgba(0, 0, 0, 0.75) 100%);
    z-index: 1;
}

/* Main Container */
.container {
    position: relative;
    z-index: 2;
    display: flex;
    width: 100%;
    height: 100vh;
}

/* Left Section - Coming Soon */
.left-section {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    animation: fadeInLeft 1.2s ease-out;
}

.coming-soon {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 900;
    color: #ffffff;
    text-align: center;
    letter-spacing: 0.05em;
    line-height: 1.2;
    text-shadow:
        0 4px 12px rgba(0, 0, 0, 0.5),
        0 8px 24px rgba(0, 0, 0, 0.3);
    position: relative;
}

.coming-soon::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #FFD700, transparent);
    border-radius: 2px;
    animation: glow 2s ease-in-out infinite;
}

/* Right Section - Brand */
.right-section {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    animation: fadeInRight 1.2s ease-out;
}

.brand {
    font-family: 'Inter', sans-serif;
    font-size: clamp(2.5rem, 6vw, 5.5rem);
    font-weight: 600;
    color: #ffffff;
    text-align: center;
    letter-spacing: 0.02em;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    position: relative;
    animation: shimmer 3s ease-in-out infinite;
}

/* Animations */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes glow {

    0%,
    100% {
        opacity: 0.5;
        box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    }

    50% {
        opacity: 1;
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
    }
}

@keyframes shimmer {

    0%,
    100% {
        filter: brightness(1);
    }

    50% {
        filter: brightness(1.1);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }

    .left-section {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
        padding: 3rem 1rem;
    }

    .right-section {
        padding: 3rem 1rem;
    }

    .coming-soon::after {
        bottom: -15px;
        width: 60px;
        height: 3px;
    }
}

@media (max-width: 480px) {

    .left-section,
    .right-section {
        padding: 2rem 1rem;
    }
}

/* High-resolution Display Optimization */
@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {

    .coming-soon,
    .brand {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
}