/* === /css-style-full-day-tour/style.css === */

/* ===== GLOBAL VARIABLES ===== */
:root {
    --lagoon-blue: #0a7d9c;
    --lagoon-turquoise: #2ac5e0;
    --lagoon-light: #8ae1f0;
    --coral: #f8b500;
    --white-sand: #f8f9fa;
    --deep-ocean: #2785e4;
    --navy-dark: #0a5c5c;
    
    --header-height: 90px;
    --header-height-scrolled: 80px;
    
    --transition-smooth: cubic-bezier(0.16, 1, 0.3, 1);
    --transition-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.7;
    color: var(--deep-ocean);
    background: var(--white-sand);
    overflow-x: hidden;
    font-weight: 300;
    padding-top: 0;
}

h1, h2, h3, h4, .section-title {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    letter-spacing: -0.5px;
}

a {
    text-decoration: none;
    color: inherit;
}

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

/* ===== FIXED NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1001;
    transition: all 0.4s var(--transition-smooth);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
    box-shadow: 0 5px 30px rgba(10, 92, 92, 0.15);
    height: var(--header-height-scrolled);
    padding: 0.8rem 2rem;
}

.logo img {
    width: 160px;
    height: auto;
    transition: transform 0.3s var(--transition-smooth);
}

.navbar.scrolled .logo img {
    transform: scale(1.05);
}

/* ===== NAV MENU ===== */
.nav-menu {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    list-style: none;
}

.nav-menu a {
    text-decoration: none;
    color: white;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s var(--transition-smooth);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.navbar.scrolled .nav-menu a {
    color: var(--deep-ocean) !important;
    text-shadow: none;
}

.nav-menu a:hover,
.nav-menu a.active {
    background: var(--deep-ocean);
    color: white !important;
    transform: translateY(-2px);
}

.navbar.scrolled .nav-menu a:hover,
.navbar.scrolled .nav-menu a.active {
    background: var(--deep-ocean);
    color: white !important;
}

.dropdown {
    position: relative;
}

.dropdown > a::after {
    content: '▼';
    font-size: 0.7rem;
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.dropdown:hover > a::after {
    transform: rotate(180deg);
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 280px;
    background: white;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    border-radius: 15px;
    padding: 1rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s var(--transition-smooth);
    z-index: 1001;
    border: 1px solid rgba(10, 92, 92, 0.1);
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content a {
    display: block;
    padding: 0.8rem 1.5rem;
    color: var(--deep-ocean);
    transition: all 0.3s ease;
    border-radius: 0;
    font-weight: 500;
    text-shadow: none;
}

.dropdown-content a:hover {
    background: var(--lagoon-light);
    color: var(--deep-ocean);
    padding-left: 2rem;
}

/* ===== HEADER CONTACT ===== */
.header-contact {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.whatsapp-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: white;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.3s var(--transition-smooth);
    white-space: nowrap;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.navbar.scrolled .whatsapp-link {
    background: var(--lagoon-light);
    color: var(--deep-ocean) !important;
    text-shadow: none;
}

.whatsapp-link:hover {
    background: var(--lagoon-blue);
    color: white;
    transform: translateY(-2px);
}

/* Language */
.language-switcher {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.french-flag {
    width: 24px;
    height: 18px;
    background: linear-gradient(90deg, #002395 33%, white 33%, white 66%, #ED2939 66%);
    border-radius: 2px;
    border: 1px solid rgba(221, 221, 221, 0.3);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.french-flag:hover {
    transform: scale(1.1);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    padding: 0.5rem;
    z-index: 1002;
    background: none;
    border: none;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    transition: 0.3s;
    transform-origin: center;
}

.navbar.scrolled .hamburger span {
    background: var(--deep-ocean);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ===== HERO SECTION ===== */
.tour-hero-section {
    position: relative;
    height: 30vh; /* Hauteur réduite */
    min-height: 280px;
    margin-top: 0;
    padding-top: var(--header-height);
    background-size: 100%; /* Image à 100% de largeur */
    background-position: center center; /* Centrée */
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Option : ajouter un léger overlay pour lisibilité du texte */
.tour-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(10, 125, 156, 0.2), transparent 70%);
    z-index: 1;
}

.tour-hero-content {
    position: relative;
    z-index: 2;
}

.tour-hero-section h1 {
    font-size: 3.1rem;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 
        4px 4px 25px rgba(0, 0, 0, 0.95),
        0 0 80px rgba(0, 0, 0, 0.8),
        0 0 120px rgba(0, 0, 0, 0.6);
    font-weight: 530;
    line-height: 1.1;
    position: relative;
}


/* ===== BOOK BUTTON ===== */
.book-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, var(--lagoon-blue), var(--lagoon-turquoise));
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 35px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.book-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.7s ease;
}

.book-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(10, 125, 156, 0.3);
}

.book-btn:hover::before {
    left: 100%;
}

/* ===== TOUR DETAILS ===== */
.tour-details-section {
    padding: 5rem 2rem;
    background: white;
}

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

.tour-video-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    aspect-ratio: 16/9;
    background: #000;
    position: relative;
}

.tour-video-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.tour-video-container:hover img {
    transform: scale(1.05);
}

.tour-info-box {
    background: var(--white-sand);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid rgba(10, 92, 92, 0.1);
}

.tour-info-box h2 {
    color: var(--lagoon-blue);
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.tour-highlight-list {
    list-style: none;
    margin: 2rem 0;
}

.tour-highlight-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(10, 92, 92, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.tour-highlight-list li:last-child {
    border-bottom: none;
}

.tour-highlight-list i {
    color: var(--coral);
    font-size: 1.2rem;
}

.tour-price-tag {
    background: linear-gradient(135deg, var(--lagoon-blue), var(--lagoon-turquoise));
    color: white;
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    margin-top: 2rem;
}

.tour-price-tag .price {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.tour-price-tag .per-person {
    font-size: 1rem;
    opacity: 0.9;
}

/* ===== FEATURES GRID ===== */
.tour-features-grid {
    padding: 5rem 2rem;
    background: linear-gradient(180deg, var(--white-sand) 0%, var(--lagoon-light) 100%);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

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

.feature-card-modern {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s var(--transition-smooth);
}

.feature-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.feature-card-modern img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.feature-card-content {
    padding: 2rem;
    text-align: center;
}

.feature-card-content h4 {
    color: var(--lagoon-blue);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

/* ===== GALLERY ===== */
.tour-gallery-section {
    padding: 5rem 2rem;
    background: white;
}

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

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* ===== TOURS SLIDER ===== */
.similar-tours-section {
    padding: 5rem 2rem;
    background: var(--white-sand);
}

.tours-slider-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    padding: 0 1rem;
}

.tours-slider {
    display: flex;
    transition: transform 0.5s var(--transition-smooth);
    gap: 1.5rem;
    padding: 1rem 0.5rem;
}

.tour-card {
    min-width: 300px;
    max-width: 320px;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s var(--transition-smooth);
    border: 1px solid rgba(10, 92, 92, 0.08);
    flex-shrink: 0;
    margin: 0 auto;
}

.tour-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.tour-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: transform 0.5s var(--transition-smooth);
}

.tour-card:hover .tour-image {
    transform: scale(1.03);
}

.tour-price {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--coral);
    color: var(--deep-ocean);
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(248, 181, 0, 0.25);
    z-index: 2;
}

.tour-content {
    padding: 1.5rem;
}

.tour-content h3 {
    font-size: 1.3rem;
    color: var(--lagoon-blue);
    margin-bottom: 0.8rem;
    line-height: 1.3;
    min-height: 3.2em;
}

.tour-content p {
    color: var(--deep-ocean);
    opacity: 0.9;
    margin-bottom: 1.2rem;
    line-height: 1.5;
    font-size: 0.95rem;
    min-height: 4.5em;
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    padding: 0 1rem;
}

.slider-arrow {
    width: 45px;
    height: 45px;
    background: var(--lagoon-blue);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.slider-arrow::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.7s ease;
}

.slider-arrow:hover {
    background: var(--coral);
    transform: scale(1.05);
}

.slider-arrow:hover::before {
    left: 100%;
}

/* ===== PARTNERS (3 CARDS) ===== */
.partners-section {
    padding: 4rem 2rem;
    background: var(--white-sand);
    text-align: center;
}

.partners-section h2 {
    font-size: 2.5rem;
    color: var(--lagoon-blue);
    margin-bottom: 3rem;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 2rem auto 0;
}

.partner-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s var(--transition-smooth);
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.partner-card img {
    max-width: 120px;
    height: auto;
    margin-bottom: 1rem;
}

.partner-card h3 {
    font-size: 1.5rem;
    color: var(--lagoon-blue);
    margin-bottom: 1rem;
}

.partner-card p {
    color: var(--deep-ocean);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* === BOUTONS ARRONDIS (Discovery, Gallery, etc.) === */

.promo-tag {
    display: inline-block;
    background: var(--coral); /* JAUNE/ORANGE */
    color: var(--deep-ocean);
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
    animation: tagPulse 3s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

@keyframes tagPulse {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        background: var(--coral);
    }
    50% {
        transform: scale(1.05) rotate(1deg);
        background: var(--lagoon-blue);
        color: white;
    }
}

/* Version bleue */
.title-tag {
    display: inline-block;
    background: var(--lagoon-blue); /* BLEU */
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

/* Pour la section FEATURES */
.tour-features-grid .promo-tag {
    background: var(--lagoon-blue);
    color: white;
}

/* Pour la section GALLERY */
.tour-gallery-section .promo-tag {
    background: var(--coral);
    color: var(--deep-ocean);
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(135deg, var(--lagoon-blue), var(--deep-ocean));
    color: white;
    padding: 4rem 2rem 2rem;
    margin-top: 4rem;
}

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

.footer-section h3 {
    margin-bottom: 1.5rem;
    color: var(--lagoon-light);
    font-size: 1.3rem;
}

.footer-section p {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.footer-section i {
    width: 20px;
    text-align: center;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s var(--transition-smooth);
}

.social-links a:hover {
    background: var(--coral);
    transform: scale(1.1);
}

.copyright {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.2);
    color: var(--lagoon-light);
    font-size: 0.9rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: var(--header-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        padding: 2rem;
        transition: left 0.3s var(--transition-smooth);
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        gap: 1rem;
        z-index: 999;
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu a {
        width: 100%;
        text-align: center;
        padding: 1rem;
        font-size: 1.2rem;
        color: var(--deep-ocean) !important;
        text-shadow: none !important;
    }

    .dropdown-content {
        position: static;
        box-shadow: none;
        border: none;
        display: none;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: var(--white-sand);
        margin-top: 0.5rem;
        border-radius: 15px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .dropdown.active .dropdown-content {
        display: block;
        max-height: 500px;
    }

    .dropdown > a::after {
        content: '▼';
        float: right;
        transition: transform 0.3s ease;
    }

    .dropdown.active > a::after {
        transform: rotate(180deg);
    }

    .header-contact {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: flex-end !important;
        gap: 10px !important;
        flex-wrap: nowrap !important;
        width: auto !important;
        margin-left: auto !important;
    }
    
    .whatsapp-link {
        display: inline-flex !important;
        align-items: center !important;
        padding: 6px 12px !important;
        font-size: 13px !important;
        font-weight: 600 !important;
        white-space: nowrap !important;
        max-width: 160px !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        flex-shrink: 1 !important;
        min-width: 0 !important;
        box-sizing: border-box !important;
    }
    
    .whatsapp-link > span,
    .whatsapp-link i + * {
        display: none !important;
    }
    
    .whatsapp-link::after {
        content: "87 79 11 62" !important;
        font-weight: 600 !important;
    }

    .tour-details-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .tour-hero-section {
        height: 60vh;
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem;
    }

    .logo img {
        width: 140px;
    }

    .tour-hero-section {
        height: 50vh;
        min-height: 400px;
        padding-top: var(--header-height-scrolled);
    }
    
    .tour-info-box {
        padding: 1.5rem;
    }
    
    .features-grid-modern {
        grid-template-columns: 1fr;
    }

    .tour-card {
        min-width: 280px;
    }
    
    .whatsapp-link {
        max-width: 140px !important;
        padding: 5px 10px !important;
        font-size: 12px !important;
    }
    
    .whatsapp-link::after {
        content: "87 79..." !important;
    }
}

@media (max-width: 480px) {
    .tour-hero-section {
        height: 45vh;
        min-height: 350px;
        padding-top: var(--header-height-scrolled);
    }
    
    .tour-hero-content h1 {
        font-size: 2rem;
    }
    
    .promo-tag {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .tour-card {
        min-width: 260px;
    }

    .partner-card {
        padding: 1.5rem;
    }
    
    .whatsapp-link {
        max-width: 120px !important;
        padding: 4px 8px !important;
    }
    
    .whatsapp-link::after {
        content: "WhatsApp" !important;
    }
}