* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #ffffff;
    --accent-color: #e74c3c;
    --text-light: #ffffff;
    --text-dark: #1a1a1a;
    --gradient-1: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    --gradient-2: linear-gradient(45deg, #f8f9fa 0%, #e9ecef 100%);
    --gradient-3: linear-gradient(180deg, #e74c3c 0%, #c0392b 100%);
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--text-light);
    overflow-x: hidden;
}

/* LOADER */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--secondary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loader-content {
    text-align: center;
}

.loader-logo {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 2rem;
    letter-spacing: 0.1em;
}

.loader-bar {
    width: 200px;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    overflow: hidden;
}

.loader-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: var(--primary-color);
    animation: loading 2s ease-in-out infinite;
}

@keyframes loading {
    0% { width: 0; }
    50% { width: 100%; }
    100% { width: 0; }
}

/* HEADER */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: #ffe2ff;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.navbar {
    padding: 1rem 5%;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.logo-container {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary-color);
    letter-spacing: 0.05em;
}

.logo-tagline {
    font-size: 0.7rem;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.2em;
    margin-top: -2px;
    text-shadow: 0 0 1px rgba(0,0,0,0.3), 0 0 2px rgba(0,0,0,0.2);
}

/* COMING SOON SECTION */
.coming-soon {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 0;
}

.coming-soon-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #2C2C2C;
    z-index: -2;
}

.coming-soon-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.05) 0%, rgba(26, 26, 26, 0.1) 100%);
    z-index: -1;
}

.coming-soon-content {
    text-align: center;
    z-index: 1;
    max-width: 800px;
    padding: 0 2rem;
}

.coming-soon-title {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.coming-soon-title .title-line {
    display: block;
    color: #ffffff;
}

.coming-soon-title .title-line.highlight {
    color: var(--text-light);
    position: relative;
}

.coming-soon-title .title-line.highlight::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: #ffe2ff;
}

.coming-soon-subtitle {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.coming-soon-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
    font-weight: 300;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.coming-soon-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 2px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: left 0.3s ease;
}

.btn:hover::before {
    left: 0;
}

.btn-primary {
    background-color: #ffe2ff;
    color: #3D3D3D;
}

.btn-primary:hover {
    background-color: #ffccee;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffe2ff;
}

.btn-secondary:hover {
    background-color: #ffe2ff;
    transform: translateY(-2px);
}

.btn-arrow {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.btn:hover .btn-arrow {
    transform: translateX(5px);
}

/* FOOTER */
.footer {
    background-color: var(--secondary-color);
    color: var(--text-light);
    padding: 4rem 5% 2rem;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.footer-logo {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-logo-text {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--text-light);
}

.footer-tagline {
    font-size: 0.8rem;
    color: var(--primary-color);
    letter-spacing: 0.2em;
}

.footer-description {
    margin-top: 1rem;
    line-height: 1.6;
    opacity: 0.9;
}

.footer-contact {
    margin-bottom: 1rem;
}

.footer-contact p {
    margin-bottom: 0.3rem;
    opacity: 0.9;
}

.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .coming-soon-title {
        font-size: 3rem;
    }

    .coming-soon-actions {
        flex-direction: column;
        width: 100%;
    }

    .coming-soon-actions .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .coming-soon-title {
        font-size: 2.5rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.8rem;
    }

    .coming-soon-actions {
        flex-direction: column;
        width: 100%;
    }

    .coming-soon-actions .btn {
        width: 100%;
    }
}