@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@200;300;400;500;600;700&display=swap');

:root {
    --gold-primary: #d4af37;
    --gold-light: #fdf0cd;
    --gold-dark: #aa841f;
    --gold-gradient: linear-gradient(135deg, #fdf0cd 0%, #d4af37 50%, #8a6f27 100%);
    --gold-gradient-hover: linear-gradient(135deg, #ffffff 0%, #fdf0cd 40%, #d4af37 100%);
    --bg-black: #050505;
    --bg-dark-gray: #121212;
    --bg-glass: rgba(10, 10, 10, 0.65);
    --border-gold-alpha: rgba(212, 175, 55, 0.15);
    --border-white-alpha: rgba(255, 255, 255, 0.05);
    --text-white: #f5f5f5;
    --text-gray: #a0a0a0;
    --font-primary: 'Outfit', sans-serif;
}

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

body {
    background-color: var(--bg-black);
    color: var(--text-white);
    font-family: var(--font-primary);
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Background Slideshow */
.slideshow-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 1.5s ease-in-out, transform 8s ease-out;
}

.slide.active {
    opacity: 1;
    transform: scale(1);
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(5, 5, 5, 0.55) 0%, rgba(5, 5, 5, 0.8) 100%);
    z-index: -1;
}

/* Scrollable Container (for mobile responsiveness) */
.page-wrapper {
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 25px 20px;
    z-index: 1;
}

/* Main Premium Glass Card */
.coming-soon-card {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-gold-alpha);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.8), 
                inset 0 1px 1px rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    width: 100%;
    max-width: 900px;
    padding: 25px 45px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Subtle glowing accent inside the card */
.coming-soon-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.03) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

/* Header & Logo */
.logo-container {
    position: relative;
    z-index: 1;
    margin-bottom: 12px;
    animation: float 6s ease-in-out infinite;
}

.logo-image {
    height: 108px;
    width: auto;
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.35));
    transition: transform 0.5s ease;
}

.logo-container:hover .logo-image {
    transform: scale(1.05);
}

.brand-name {
    font-size: 2.0rem;
    font-weight: 300;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 4px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.1);
    position: relative;
    z-index: 1;
}

.brand-tagline {
    font-size: 0.82rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--text-gray);
    margin-bottom: 16px;
    font-weight: 400;
    position: relative;
    z-index: 1;
}

/* Divider Line */
.card-divider {
    width: 80px;
    height: 1px;
    background: var(--gold-gradient);
    margin-bottom: 16px;
    opacity: 0.7;
    position: relative;
    z-index: 1;
}

/* Content & Multilingual Messages */
.message-container {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin-bottom: 20px;
}

.message-fr {
    margin-bottom: 0px;
}

.message-fr h2 {
    font-size: 1.45rem;
    font-weight: 400;
    margin-bottom: 8px;
    letter-spacing: 1px;
    color: var(--text-white);
}

.message-fr p {
    font-size: 0.92rem;
    line-height: 1.55;
    color: var(--text-gray);
    font-weight: 300;
}


/* Elegant Countdown Timer */
.countdown-container {
    display: flex;
    justify-content: center;
    gap: 18px;
    width: 100%;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.countdown-box {
    background: rgba(18, 18, 18, 0.4);
    border: 1px solid var(--border-white-alpha);
    border-radius: 16px;
    padding: 15px 18px;
    min-width: 105px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.countdown-box::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
}

.countdown-box:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.08);
}

.countdown-box:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.countdown-number {
    font-size: 2.5rem;
    font-weight: 200;
    color: var(--text-white);
    line-height: 1;
    margin-bottom: 6px;
    letter-spacing: -1px;
}

.countdown-label {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold-primary);
    font-weight: 500;
}


/* Subscription Form */
.subscription-container {
    width: 100%;
    max-width: 520px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.subscription-form {
    display: flex;
    width: 100%;
    background: rgba(18, 18, 18, 0.6);
    border: 1px solid var(--border-white-alpha);
    border-radius: 50px;
    padding: 5px;
    transition: all 0.3s ease;
}

.subscription-form:focus-within {
    border-color: var(--gold-primary);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.15);
}

.subscription-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-white);
    padding: 10px 22px;
    font-family: var(--font-primary);
    font-size: 0.92rem;
}

.subscription-input::placeholder {
    color: #666;
}


.subscription-button {
    background: var(--gold-gradient);
    border: none;
    outline: none;
    color: #000;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0 30px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
}

.subscription-button:hover {
    background: var(--gold-gradient-hover);
    transform: translateY(-1px);
    box-shadow: 0 7px 20px rgba(212, 175, 55, 0.4);
}

.subscription-button:active {
    transform: translateY(1px);
}

/* Success Message */
.success-message {
    display: none;
    color: var(--gold-light);
    font-size: 1rem;
    padding: 15px;
    border-radius: 12px;
    background: rgba(212, 175, 55, 0.08);
    border: 1px dashed rgba(212, 175, 55, 0.3);
    margin-top: 15px;
    animation: fadeIn 0.5s ease forwards;
}

/* Footer / Contact Details */
.footer-contact {
    width: 100%;
    border-top: 1px solid var(--border-white-alpha);
    padding-top: 25px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    position: relative;
    z-index: 1;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 9px;
    text-decoration: none;
    color: var(--text-gray);
    font-size: 0.82rem;
    transition: color 0.3s ease;
}

.contact-item svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
    stroke: currentColor;
    stroke-width: 0;
    color: var(--gold-primary);
}

.contact-item:hover {
    color: var(--text-white);
}

.contact-item span {
    font-weight: 300;
}


/* Floating Animation */
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
    100% {
        transform: translateY(0px);
    }
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
    .coming-soon-card {
        padding: 35px 20px;
        border-radius: 18px;
    }
    
    .brand-name {
        font-size: 1.8rem;
        letter-spacing: 4px;
    }
    
    .brand-tagline {
        font-size: 0.75rem;
        letter-spacing: 2px;
        margin-bottom: 25px;
    }
    
    .countdown-container {
        gap: 10px;
    }
    
    .countdown-box {
        min-width: 75px;
        padding: 12px 5px;
        border-radius: 12px;
    }
    
    .countdown-number {
        font-size: 1.8rem;
    }
    
    .countdown-label {
        font-size: 0.6rem;
        letter-spacing: 1px;
    }
    
    .message-fr h2 {
        font-size: 1.3rem;
    }
    
    .message-fr p {
        font-size: 0.85rem;
    }
    
    .subscription-form {
        flex-direction: column;
        background: transparent;
        border: none;
        border-radius: 0;
        gap: 12px;
        padding: 0;
    }
    
    .subscription-form:focus-within {
        border-color: transparent;
        box-shadow: none;
    }
    
    .subscription-input {
        background: rgba(18, 18, 18, 0.75);
        border: 1px solid var(--border-white-alpha);
        border-radius: 30px;
        width: 100%;
        padding: 15px 20px;
        text-align: center;
    }
    
    .subscription-input:focus {
        border-color: var(--gold-primary);
        box-shadow: 0 0 15px rgba(212, 175, 55, 0.15);
    }
    
    .subscription-button {
        width: 100%;
        padding: 15px 0;
        border-radius: 30px;
    }

    .footer-contact {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        padding-top: 25px;
    }
}

/* Custom Interactive Cursor */
.custom-cursor-dot,
.custom-cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.15s ease;
    opacity: 0;
}

.custom-cursor-dot {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 16px;
    line-height: 1;
    color: var(--gold-primary);
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.8);
    user-select: none;
    -webkit-user-select: none;
    transition: opacity 0.3s ease, transform 0.15s ease, color 0.25s ease, text-shadow 0.25s ease;
}

.custom-cursor-outline {
    width: 32px;
    height: 32px;
    border: 1.5px solid var(--gold-primary);
    background-color: rgba(212, 175, 55, 0.03);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.15);
    transition: width 0.25s ease, height 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, opacity 0.3s ease;
}

/* Hover state for interactive items */
.custom-cursor-outline.hovered {
    width: 50px;
    height: 50px;
    border-color: #fff;
    background-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.25);
}

.custom-cursor-dot.hovered {
    transform: translate(-50%, -50%) scale(1.3);
    color: #fff;
    text-shadow: 0 0 10px #fff;
}

/* Hide default cursor on desktops */
@media (pointer: fine) {
    body, a, button, input, select, textarea {
        cursor: none;
    }
}
