/* ===========================
   HOTEL BELLECOTE - STYLES CSS
   Développé par Evariste Kouamé
   =========================== */

/* Reset et Variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Couleurs - Inspirées du logo orange de l'hôtel */
    --primary-color: #FF6B35;      /* Orange vif */
    --secondary-color: #D4AF37;     /* Or/Doré */
    --dark-color: #1A1A2E;          /* Bleu nuit */
    --light-color: #FAFAFA;         /* Blanc cassé */
    --gray-color: #E5E5E5;
    
    /* Typographie */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    
    /* Transitions */
    --transition: all 0.3s ease;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--dark-color);
    background: var(--light-color);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Section */
.section {
    padding: 5rem 2rem;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: var(--primary-color);
    font-style: italic;
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

/* ==================
   POPUP DE BIENVENUE
   ================== */
.welcome-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.5s ease;
    backdrop-filter: blur(10px);
}

.welcome-popup.show {
    display: flex;
}

.welcome-popup.hidden {
    display: none;
}

.popup-content {
    background: white;
    border-radius: 20px;
    padding: 3rem 2.5rem;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    animation: slideUp 0.6s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.close-popup {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: white;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    font-size: 22px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-popup:hover {
    background: var(--dark-color);
    transform: rotate(90deg);
}

.popup-content h2 {
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-size: 2rem;
}

.popup-content h2 i {
    color: var(--primary-color);
    margin-right: 10px;
}

.popup-tagline {
    color: var(--secondary-color);
    font-size: 1.3rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
}

.popup-discount {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 2rem;
    border-radius: 15px;
    margin: 1.5rem 0;
    color: white;
}

.discount-badge {
    font-size: 3rem;
    font-weight: bold;
    display: block;
}

.popup-discount p {
    font-size: 1.1rem;
    margin-top: 0.5rem;
}

.popup-content > p {
    font-size: 1.1rem;
    margin: 1rem 0;
}

.popup-content strong {
    color: var(--primary-color);
    font-size: 1.4rem;
    padding: 8px 15px;
    background: var(--gray-color);
    border-radius: 8px;
    display: inline-block;
}

.btn-popup {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    margin-top: 1.5rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-popup:hover {
    background: var(--dark-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.5);
}

/* ==================
   HEADER & NAVIGATION
   ================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand h1 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 0.25rem;
}

.nav-brand p {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-style: italic;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: white;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-menu a:hover::after {
    width: 100%;
}

.lang-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    cursor: pointer;
    transition: var(--transition);
}

.lang-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

/* ==================
   HERO SECTION avec SLIDER VIDÉO (HAUTEUR RÉDUITE)
   ================== */
.hero-section {
    position: relative;
    height: 70vh; /* Réduit de 100vh à 70vh */
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Slider Vidéo Background */
.hero-video-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.video-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    background-size: cover;
    background-position: center;
}

.video-slide.active {
    opacity: 1;
}

/* Images de fond pour le slider */
.video-slide:nth-child(1) {
    background-image: url('https://images.unsplash.com/photo-1566073771259-6a8506099945?w=1920&q=80');
}

.video-slide:nth-child(2) {
    background-image: url('https://images.unsplash.com/photo-1582719508461-905c673771fd?w=1920&q=80');
}

.video-slide:nth-child(3) {
    background-image: url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?w=1920&q=80');
}

/* Overlay sombre sur les vidéos */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.85), rgba(255, 107, 53, 0.4));
    z-index: 2;
}

/* Contenu Hero */
.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    max-width: 900px;
    padding: 0 2rem;
}

.hero-text-slider {
    position: relative;
    min-height: 300px; /* Réduit de 400px à 300px */
}

.hero-slide {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    pointer-events: none;
}

.hero-slide.active {
    opacity: 1;
    transform: translateY(0);
    position: relative;
    pointer-events: auto;
}

.hero-slide h1 {
    font-size: clamp(2rem, 4vw, 3.5rem); /* Réduit légèrement */
    margin-bottom: 1rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease;
}

.hero-slide .subtitle {
    font-size: clamp(1.2rem, 2.5vw, 2rem); /* Réduit légèrement */
    color: var(--secondary-color);
    font-family: var(--font-heading);
    font-style: italic;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.hero-slide .description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-slide .buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
    cursor: pointer;
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1rem;
}

.btn-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.btn-outline:hover {
    background: white;
    color: var(--dark-color);
    transform: translateY(-3px);
}

/* Navigation du Slider (Points) */
.slider-dots {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--primary-color);
    width: 40px;
    border-radius: 10px;
}

.dot:hover {
    background: var(--secondary-color);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    text-align: center;
    color: white;
    animation: bounce 2s infinite;
}

.mouse {
    width: 25px;
    height: 40px;
    border: 2px solid white;
    border-radius: 15px;
    position: relative;
    margin: 0 auto 10px;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: white;
    border-radius: 2px;
    animation: scroll 1.5s infinite;
}

.scroll-indicator p {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* ==================
   STATS SECTION
   ================== */
.stats {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
    color: white;
}

.stat-item {
    animation: fadeInUp 1s ease;
}

.stat-item i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.stat-item .number {
    font-size: 3.5rem;
    font-weight: bold;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* ==================
   SECTIONS DE PRÉSENTATION
   ================== */
.about-section,
.rooms-section,
.restaurant-section {
    padding: 5rem 2rem;
}

.about-section {
    background: var(--light-color);
}

.rooms-section {
    background: white;
}

.restaurant-section {
    background: var(--light-color);
}

.section-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.section-text h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.section-text .tagline {
    color: var(--primary-color);
    font-style: italic;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.section-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #555;
}

.section-text .highlight-box {
    background: var(--gray-color);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    margin: 2rem 0;
}

.section-text .highlight-box h4 {
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.section-text .highlight-box ul {
    list-style: none;
    padding: 0;
}

.section-text .highlight-box li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.section-text .highlight-box li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.section-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.section-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: var(--transition);
}

.section-image:hover img {
    transform: scale(1.05);
}

.section-image .image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(26, 26, 46, 0.9), transparent);
    color: white;
    padding: 2rem;
}

.section-image .image-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.btn-secondary {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    margin-top: 1.5rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-secondary:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

/* ==================
   MAP SECTION
   ================== */
.map-section {
    padding: 5rem 2rem;
    background: white;
}

.map-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.map-container h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.map-container .tagline {
    color: var(--primary-color);
    font-style: italic;
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

.map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    height: 500px;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-card {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.contact-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-card h4 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.contact-card p {
    color: #555;
    font-size: 1rem;
}

/* ==================
   FOOTER
   ================== */
.footer {
    background: var(--dark-color);
    color: white;
    padding: 3rem 2rem 1rem;
    text-align: center;
}

.footer-content h3 {
    color: var(--secondary-color);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.footer-content p {
    margin: 0.5rem 0;
    opacity: 0.9;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin: 2rem 0;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: white;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* ==================
   ANIMATIONS
   ================== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

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

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

@keyframes scroll {
    0% { opacity: 1; top: 8px; }
    100% { opacity: 0; top: 20px; }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* ==================
   RESPONSIVE
   ================== */
@media (max-width: 968px) {
    .section-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero-section {
        height: 60vh;
        min-height: 450px;
    }
    
    .hero-text-slider {
        min-height: 250px;
    }
    
    .hero-slide h1 {
        font-size: 2rem;
    }
    
    .hero-slide .subtitle {
        font-size: 1.5rem;
    }
    
    .hero-slide .buttons {
        flex-direction: column;
    }
    
    .stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        padding: 2rem 1rem;
    }
    
    .section {
        padding: 3rem 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .map-wrapper {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .popup-content {
        padding: 2rem 1.5rem;
    }
    
    .popup-content h2 {
        font-size: 1.5rem;
    }
    
    .discount-badge {
        font-size: 2.5rem;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 20px;
        right: 20px;
    }
    
    .stat-item .number {
        font-size: 2.5rem;
    }
    
    .section-image img {
        height: 300px;
    }
}