/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #0B3D91;
    color: white;
}

.btn-primary:hover {
    background-color: #092b6a;
}

.btn-secondary {
    background-color: #D4AF37;
    color: white;
}

.btn-secondary:hover {
    background-color: #b8942c;
}

/* Header */
#header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: background-color 0.3s ease;
}

#header.scrolled {
    background-color: rgba(255, 255, 255, 1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

#header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo img {
    height: 60px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

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

#nav li {
    margin-left: 30px;
}

#nav li.separator {
        width: 1px;
        height: 30px;
        background-color: #D4AF37;
        margin: 0 20px;
    }
}

#nav a {
    font-weight: 600;
    color: #333;
    transition: color 0.3s ease;
}

#nav a:hover {
    color: #0B3D91;
}

#nav a.cta-nav {
    background-color: #D4AF37;
    color: white;
    padding: 8px 16px;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

#nav a.cta-nav:hover {
    background-color: #b8942c;
}

.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 24px;
}

/* Hero Section */
#hero {
    height: 100vh;
    background-image: url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(11, 61, 145, 0.7);
}

.hero-content {
    position: relative;
    z-index: 1;
    color: white;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    animation: fadeIn 2s ease-in-out;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 24px;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

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

/* Sections */
.section {
    padding: 80px 0;
}

.section h2 {
    text-align: center;
    font-size: 36px;
    color: #0B3D91;
    margin-bottom: 40px;
}

.section p {
    font-size: 18px;
    line-height: 1.8;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Valeurs */
.valeurs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.valeur-card {
    background-color: white;
    padding: 40px 20px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.valeur-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.valeur-card i {
    font-size: 48px;
    color: #D4AF37;
    margin-bottom: 20px;
}

.valeur-card h3 {
    font-size: 24px;
    color: #0B3D91;
}

/* Slogan */
#slogan {
    background-color: #f8f9fa;
}

#slogan blockquote {
    font-size: 24px;
    font-style: italic;
    color: #0B3D91;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

#slogan blockquote:before {
    content: '"';
    font-size: 60px;
    position: absolute;
    left: -20px;
    top: -10px;
    color: #D4AF37;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: white;
    padding: 40px 20px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.service-card i {
    font-size: 48px;
    color: #D4AF37;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 24px;
    color: #0B3D91;
    margin-bottom: 15px;
}

.service-card p {
    color: #666;
}

/* Destinations */
.destinations-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.destination-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.destination-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.destination-item h3 {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
    font-size: 24px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.destination-item p {
    position: absolute;
    bottom: 0;
    left: 20px;
    right: 20px;
    color: white;
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.3s ease;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 10px;
    border-radius: 5px;
}

.destination-item:hover p {
    opacity: 1;
}

/* Témoignages */
.temoignages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.temoignage-card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.temoignage-card p {
    font-style: italic;
    margin-bottom: 15px;
}

.temoignage-card cite {
    font-weight: 600;
    color: #0B3D91;
}

/* Stats */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-item h3 {
    font-size: 48px;
    color: #0B3D91;
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 18px;
    color: #666;
}

/* Contact */
#contact {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

#contact-form {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(11, 61, 145, 0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #0B3D91;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    transition: all 0.3s ease;
    background-color: #f8f9fa;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #D4AF37;
    background-color: white;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-group textarea {
    height: 140px;
    resize: vertical;
    font-family: 'Open Sans', sans-serif;
}

#contact-form .btn {
    width: 100%;
    margin-top: 10px;
    background-color: #0B3D91;
    color: white;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

#contact-form .btn:hover {
    background-color: #092b6a;
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(11, 61, 145, 0.3);
}

.contact-info {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(11, 61, 145, 0.1);
}

.contact-info h3 {
    margin-bottom: 30px;
    color: #0B3D91;
    font-size: 24px;
}

.contact-info p {
    margin-bottom: 18px;
    color: #555;
    font-size: 15px;
    display: flex;
    align-items: center;
    line-height: 1.8;
}

.contact-info i {
    color: #D4AF37;
    margin-right: 15px;
    font-size: 20px;
    width: 30px;
    text-align: center;
}

.social-links {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid #e0e0e0;
}

.social-links a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    font-size: 20px;
    color: white;
    background-color: #0B3D91;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

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

/* Footer */
#footer {
    background-color: #0B3D91;
    color: white;
    padding: 40px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h3 {
    margin-bottom: 20px;
    color: #D4AF37;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 10px;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
}

/* Scroll to Top */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #0B3D91;
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background-color: #092b6a;
}

/* Responsive */
@media (max-width: 768px) {
    #header .container {
        flex-wrap: wrap;
    }

    #nav {
        display: none;
        width: 100%;
    }

    #nav.active {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: white;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    #nav ul {
        flex-direction: column;
    }

    #nav li {
        margin: 10px 0;
    }

    .menu-toggle {
        display: block;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .valeurs-grid,
    .services-grid,
    .destinations-gallery,
    .temoignages-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .section {
        padding: 60px 0;
    }

    .section h2 {
        font-size: 28px;
    }
}
