/* Reset et base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    background-color: #fff;
    color: #000;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Loader */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    z-index: 9999;
    transition: opacity 0.3s ease;
}

#loader img {
    width: 200px;
    height: 200px;
}

/* Navigation */
.navbar {
    background-color: #fff !important;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: lowercase;
    color: #000;
}

.navbar-light .navbar-nav .nav-link {
    color: #000;
    font-weight: bold;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link.active {
    color: #ff9900;
}

.navbar-light .dropdown-menu {
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    margin-top: 0.5rem;
}

.navbar-light .dropdown-menu .dropdown-item {
    color: #000;
    transition: all 0.3s ease;
}

.navbar-light .dropdown-menu .dropdown-item:hover,
.navbar-light .dropdown-menu .dropdown-item:focus {
    color: #ff9900;
    background-color: rgba(255, 153, 0, 0.1);
}

.social-icons .nav-link {
    color: #000;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.social-icons .nav-link:hover {
    color: #ff9900;
}

/* Coming Soon Container */
.coming-soon-body {
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 50%, #f0f0f0 100%);
}

.coming-soon-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    min-height: calc(100vh - 200px);
}

.coming-soon-content {
    text-align: center;
    max-width: 800px;
    width: 100%;
    animation: fadeInUp 0.8s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Coming Soon Badge */
.coming-soon-badge {
    display: inline-block;
    padding: 1.5rem 3rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.coming-soon-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: bold;
    letter-spacing: 8px;
    margin: 0;
    color: #000;
    font-family: 'Playfair Display', serif;
}

/* Coming Soon Card */
.coming-soon-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    border: 2px solid rgba(0, 0, 0, 0.08);
    padding: 4rem 3rem;
    margin-bottom: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.coming-soon-main {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 300;
    letter-spacing: 4px;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ff9900 0%, #ff6b00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.coming-soon-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* Loading Animation */
.loading-animation {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, #ff9900, #ff6b00);
    border-radius: 50%;
    animation: pulse 1.5s ease-in-out infinite;
}

.dot:nth-child(2) {
    animation-delay: 0.2s;
}

.dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.5;
    }
}

/* Back to Home Button */
.back-home-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 1rem 2rem;
    background: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.back-home-btn:hover {
    background: #ff9900;
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 153, 0, 0.3);
}

.back-home-btn i {
    transition: transform 0.3s ease;
}

.back-home-btn:hover i {
    transform: translateX(-5px);
}

/* Footer */
.footer {
    padding: 3rem 0 0;
    background-color: #fff;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    margin-top: auto;
}

.footer .text-uppercase {
    text-transform: uppercase;
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.footer-description {
    color: #666;
    font-size: 0.95rem;
    margin-top: 0.5rem;
}

.footer .text-dark {
    color: #333 !important;
    transition: color 0.3s ease;
    text-decoration: none;
}

.footer .text-dark:hover {
    color: #ff9900 !important;
    text-decoration: none;
}

.footer ul li {
    margin-bottom: 0.5rem;
}

.footer-bottom-bar {
    background-color: rgba(0, 0, 0, 0.03) !important;
}

/* Responsive Mobile */
@media (max-width: 991px) {
    .navbar {
        padding: 1.5rem 0;
    }

    .navbar-brand {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1;
    }

    .navbar-toggler {
        position: absolute;
        right: 1rem;
        z-index: 2;
        border: none;
        padding: 0.5rem;
    }

    .navbar-toggler:focus {
        box-shadow: none;
    }

    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #fff;
        text-align: center;
        z-index: 10;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .navbar-collapse.show {
        max-height: 500px;
    }

    .navbar-nav {
        padding: 1rem 0;
    }

    .navbar-nav .nav-link {
        padding: 0.75rem 1rem;
    }

    .dropdown-menu {
        background-color: rgba(255, 255, 255, 0.98) !important;
        border: none;
    }
}

@media (max-width: 768px) {
    .coming-soon-container {
        padding: 1.5rem;
        min-height: calc(100vh - 250px);
    }

    .coming-soon-badge {
        padding: 1rem 2rem;
        margin-bottom: 2rem;
    }

    .coming-soon-title {
        letter-spacing: 4px;
    }

    .coming-soon-card {
        padding: 3rem 2rem;
    }

    .coming-soon-main {
        letter-spacing: 2px;
    }

    .coming-soon-subtitle {
        font-size: 1rem;
    }

    .footer {
        padding: 2rem 0 0;
    }

    .footer .col-lg-6 {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    .coming-soon-badge {
        padding: 0.8rem 1.5rem;
        margin-bottom: 1.5rem;
    }

    .coming-soon-title {
        letter-spacing: 3px;
    }

    .coming-soon-card {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }

    .coming-soon-main {
        letter-spacing: 1px;
    }

    .back-home-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .navbar-brand {
        font-size: 1.2rem;
    }

    .footer {
        padding: 1.5rem 0 0;
    }
}