/* WindPrana - Kite & Yoga Adventure - Trips Page Stylesheet 
   Palette: Éléments naturels revitalisés
   - Bleu Turquoise (#45B7A4) - eau et ciel
   - Violet Améthyste (#8A65C9) - spiritualité et yoga
   - Jaune Soleil (#FFB84D) - énergie et soleil
   - Blanc (#FFFFFF) - espace et légèreté
*/

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #FFFFFF;
}

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

a {
    text-decoration: none;
    color: #45B7A4;
    transition: all 0.3s ease;
}

a:hover {
    color: #8A65C9;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', Arial, sans-serif;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 2.5rem;
    color: #45B7A4;
}

h2 {
    font-size: 2rem;
    color: #45B7A4;
    text-align: center;
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.5rem;
    color: #8A65C9;
}

p {
    margin-bottom: 1rem;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

section {
    padding: 4rem 0;
}

/* -------------------- BUTTONS -------------------- */
.btn-primary, .btn {
    display: inline-block;
    background-color: #FFB84D;
    color: #FFFFFF;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-primary:hover, .btn:hover {
    background-color: #E5A444;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: #45B7A4;
    padding: 0.8rem 1.5rem;
    border: 2px solid #45B7A4;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #45B7A4;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* -------------------- HEADER -------------------- */
header {
    background-color: rgba(255, 255, 255, 0.9);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo a {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: #45B7A4;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logo a:hover {
    color: #8A65C9;
}

.logo img {
    height: 50px;
    width: auto;
    margin-right: 10px;
    vertical-align: middle;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    color: #333;
    font-weight: 600;
    padding: 0.5rem 0;
    position: relative;
}

nav ul li a:hover {
    color: #8A65C9;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #8A65C9;
    transition: width 0.3s ease;
}

nav ul li a:hover::after {
    width: 100%;
}

.menu-mobile {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-mobile span {
    width: 30px;
    height: 3px;
    background-color: #45B7A4;
    margin: 3px 0;
    transition: all 0.3s ease;
}

/* -------------------- HERO SECTION -------------------- */
.hero-trips {
    height: 60vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../images/GP010130.JPG');
    background-size: cover;
    background-position: center 30%;
    display: flex;
    margin-top: 5rem;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #FFFFFF;
}

.hero-content {
    max-width: 800px;
    padding: 2rem;
}

.hero h1 {
    margin-bottom: 1.5rem;
    font-size: 3rem;
    color: #FFFFFF;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

/* -------------------- MAIN CONTENT -------------------- */
main {
    padding: 2rem 0;
}

.opening {
    text-align: center;
    max-width: 1500px;
    margin: 0 auto 3rem auto;
}

.opening h1 {
    color: #45B7A4;
    margin-bottom: 1.5rem;
}

.opening p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}

/* -------------------- DESTINATION SECTIONS -------------------- */

.destination {
    position: relative;
    height: 250px;
    margin-bottom: 2rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: inline-flex;
    width: 45%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.3s ease;
    background-size: cover;
    background-position: center;
}

.destination:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.trip1 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../images/captown.jpg');
}

.trip2 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../images/diani_kenya.jpg'); 
}

.trip3 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../images/dune-blanche-dakhla.jpeg');
}

.trip4 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../images/ireland.webp');
}

.trip5 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../images/naxos.jpeg');
}

.destination h1 {
    color: #FFFFFF;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.destination .btn {
    position: relative;
    z-index: 2;
}

/* -------------------- TRIP DETAILS SECTION -------------------- */
.greece, .ireland, .kenya, .morocco, .southafrica {
    padding: 5rem 0;
    border-bottom: 1px solid #eee;
}

.greece h1, .ireland h1, .kenya h1, .morocco h1, .southafrica h1 {
    color: #45B7A4;
    margin-bottom: 0.5rem;
}

.greece p:first-of-type, .ireland p:first-of-type, .morocco p:first-of-type, .kenya p:first-of-type, .southafrica p:first-of-type {
    color: #8A65C9;
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.greece p:last-of-type, .ireland p:last-of-type, .kenya p:last-of-type, .morocco p:last-of-type, .southafrica p:last-of-type {
    color: #8A65C9;
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.greece h3, .ireland h3, .kenya h3, .morocco h3, .southafrica h3{
    color: #FFB84D;
    margin-bottom: 1.5rem;
}

.greece p, .ireland p, .kenya p, .morocco p, .southafrica p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.greece .btn, .ireland .btn, .kenya .btn, .morocco .btn, .southafrica .btn {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    
}


.offer {
    margin: 2rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

table {
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    overflow: hidden;
}

.included {
    flex: 1;
    min-width: 300px;
}

.not_included {
    flex: 1;
    min-width: 300px;
}

table thead {
    background-color: #45B7A4;
    color: #FFFFFF;
}

table th, table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

table th {
    font-weight: 600;
}

table tbody tr:hover {
    background-color: #f9f9f9;
}

/* -------------------- TRIPS CTA SECTION -------------------- */
.trips-cta {
    background-color: #8A65C9;
    color: #FFFFFF;
    padding: 4rem 0;
    text-align: center;
}

.trips-cta h2 {
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.trips-cta p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

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

.trips-cta .btn-secondary {
    border-color: #FFFFFF;
    color: #FFFFFF;
}

.trips-cta .btn-secondary:hover {
    background-color: #FFFFFF;
    color: #8A65C9;
}

/* -------------------- TESTIMONIALS SECTION -------------------- */
.testimonials {
    background-color: #45B7A4;
    color: #FFFFFF;
    padding: 4rem 0;
}

.testimonials h2 {
    color: #FFFFFF;
}

.testimonials-slider {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.testimonial {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
    flex: 1;
    min-width: 300px;
    max-width: 400px;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial cite {
    font-weight: 600;
    font-style: normal;
    display: block;
}

/* -------------------- FOOTER -------------------- */
footer {
    background-color: #333;
    color: #FFFFFF;
    padding: 3rem 0;
}

.footer-logo a {
    color: #FFFFFF;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-nav ul, .footer-social ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    margin: 1.5rem 0;
}

.footer-nav ul li, .footer-social ul li {
    margin-right: 1.5rem;
    margin-bottom: 0.5rem;
}

.footer-nav ul li a, .footer-social ul li a {
    color: #FFFFFF;
    opacity: 0.8;
}

.footer-nav ul li a:hover, .footer-social ul li a:hover {
    opacity: 1;
}

.footer-contact {
    margin: 1.5rem 0;
}

.footer-contact p {
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.footer-copyright {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.6;
}

.footer-copyright a {
    color: #FFFFFF;
}

/* -------------------- RESPONSIVE STYLES -------------------- */
@media (max-width: 992px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero-trips {
        height: 50vh;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    header {
        padding: 1rem;
    }
    
    .logo img {
        height: 40px;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100%;
        background-color: #FFFFFF;
        padding: 5rem 2rem;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
    }
    
    nav.active {
        right: 0;
    }
    
    nav ul {
        flex-direction: column;
    }
    
    nav ul li {
        margin: 1rem 0;
    }
    
    .menu-mobile {
        display: flex;
        z-index: 1001;
    }
    
    .menu-mobile.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .menu-mobile.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-mobile.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .destination h1 {
        font-size: 1.8rem;
    }

    .offer {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero-trips {
        height: 40vh;
    }
    
    .destination {
        height: 200px;
    }
    
    .destination h1 {
        font-size: 1.5rem;
    }
    
    .testimonials-slider {
        flex-direction: column;
    }
    
    .testimonial {
        width: 100%;
        max-width: none;
    }

    .logo img {
        height: 35px;
    }
}

/* -------------------- CAROUSEL STYLES -------------------- */
.carousel-container {
    width: 100%;
    max-width: 1200px;
    margin: 2rem auto;
    position: relative;
    overflow: hidden;
    padding: 1rem 0;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 1rem;
}

.carousel-slide {
    min-width: 180px;
    height: 120px;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.carousel-slide:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(69, 183, 164, 0.8);
    color: white;
    border: none;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.carousel-button:hover {
    background-color: rgba(138, 101, 201, 0.8);
}

.carousel-button.prev {
    left: 10px;
}

.carousel-button.next {
    right: 10px;
}

/* Lightbox Styles */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1100;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    width: 30px;
    height: 30px;
    font-size: 1.5rem;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-nav {
    position: absolute;
    bottom: -40px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.lightbox-nav button {
    background-color: #45B7A4;
    color: white;
    border: none;
    padding: 5px 15px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.lightbox-nav button:hover {
    background-color: #8A65C9;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .carousel-slide {
        min-width: 140px;
        height: 100px;
    }
    
    .carousel-button {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .carousel-slide {
        min-width: 120px;
        height: 80px;
    }
}