/* --- VARIABLES & RESET --- */
:root {
    --primary-orange: #f57b55;     /* Orange corail */
    --primary-purple: #743a96;     /* Violet profond */
    --bg-light: #fdfdfd;
    --text-dark: #222;
    --text-grey: #666;
    --font-heading: 'Fredoka', sans-serif;
    --font-body: 'Poppins', sans-serif;
    --dark-overlay: rgba(0,0,0,0.3);
}

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

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: #000;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

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

.section-padding { padding: 60px 0; }

.subtitle {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-purple);
    display: block;
    margin-bottom: 10px;
    text-align: center;
    font-weight: 600;
}

.section-header { text-align: center; margin-bottom: 50px; }
.section-header h2 { font-size: 2.5rem; margin-bottom: 15px; }
.section-intro {
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-grey);
    line-height: 1.8;
}

/* --- NAVBAR --- */
.navbar {
    background: white;
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    max-height: 100px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

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

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-phone { 
    position: relative; 
    font-size: 1.2rem; 
    cursor: pointer;
    color: var(--primary-orange);
}

.burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-purple);
    border-radius: 3px;
    transition: all 0.3s;
}

/* --- OFFCANVAS MENU --- */
.offcanvas-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.offcanvas-overlay.active {
    opacity: 1;
    visibility: visible;
}

.offcanvas-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    max-width: 85%;
    height: 100%;
    background: white;
    z-index: 999;
    padding: 20px;
    overflow-y: auto;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease-in-out;
}

.offcanvas-menu.active {
    right: 0;
}

.offcanvas-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.offcanvas-header img {
    max-height: 40px;
}

.close-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-purple);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
}

.close-btn:hover {
    background: rgba(116, 58, 150, 0.1);
}

.offcanvas-links {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.offcanvas-links li {
    margin-bottom: 5px;
}

.offcanvas-link {
    display: block;
    padding: 15px 10px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-dark);
    border-radius: 8px;
    transition: all 0.3s;
}

.offcanvas-link:hover {
    background: rgba(245, 123, 85, 0.1);
    color: var(--primary-orange);
    padding-left: 20px;
}

.offcanvas-contact {
    padding: 20px;
    background: linear-gradient(135deg, var(--primary-purple), rgba(116, 58, 150, 0.9));
    border-radius: 15px;
    color: white;
}

.offcanvas-contact h4 {
    color: white;
    font-size: 1rem;
    margin-bottom: 15px;
}

.offcanvas-contact p {
    font-size: 0.85rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.offcanvas-contact i {
    color: var(--primary-orange);
}

/* --- HERO SECTION --- */
.hero {
    background-image: linear-gradient(rgba(116, 58, 150, 0.7), rgba(245, 123, 85, 0.6)), url('img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    height: 500px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    width: 100%; 
    height: 100%;
    display: flex; 
    align-items: center; 
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: white;
    max-width: 800px;
    position: relative;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    line-height: 1.2;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    color: white;
}

.star {
    color: var(--primary-orange);
    font-size: 2rem;
    position: absolute;
}
.star-1 { top: -40px; left: 10%; transform: rotate(-15deg); }
.star-2 { bottom: -40px; right: 20%; transform: rotate(15deg); }

/* --- FEATURES BAR --- */
.features-bar {
    background: white;
    padding: 25px 0;
    border-bottom: 1px solid #eee;
}

.features-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #333;
}

.feature-item i { 
    font-size: 1.2rem;
    color: var(--primary-purple);
}

/* --- ACTIVITIES SECTION --- */
.activities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.activity-card {
    height: 200px;
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s;
    background-color: #ddd;
}

.activity-card:hover { transform: translateY(-5px); }

.activity-label {
    position: absolute;
    bottom: 15px;
    left: 15px;
    color: white;
    font-weight: 700;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    background: rgba(116, 58, 150, 0.8);
    padding: 8px 15px;
    border-radius: 8px;
}

/* --- STORY SECTION --- */
.story-row {
    display: flex;
    gap: 50px;
    margin-bottom: 60px;
    align-items: center;
}

.story-row.reverse { flex-direction: row-reverse; }

.story-image {
    flex: 1;
    position: relative;
}

.story-image img { 
    border-radius: 20px; 
    width: 100%;
    min-height: 300px;
    object-fit: cover;
    background-color: #ddd;
}

.bg-yellow::before {
    content: '';
    position: absolute;
    top: -20px; left: -20px;
    width: 100%; height: 100%;
    background-color: rgba(245, 123, 85, 0.15);
    z-index: -1;
    border-radius: 20px;
}

.story-text { flex: 1; }
.story-text .subtitle { text-align: left; }
.story-text h2 { font-size: 2.5rem; margin-bottom: 20px; line-height: 1.1; }

.text-block {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.icon-star { 
    color: var(--primary-orange); 
    margin-top: 5px; 
}

.highlight-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-purple);
    margin-top: 20px;
}

/* --- PRODUCTS / SERVICES --- */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-card {
    text-align: center;
}

.product-icon {
    background: #f9f9f9;
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 15px;
    transition: 0.3s;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-icon i {
    font-size: 4rem;
    color: var(--primary-purple);
    transition: color 0.3s;
}

.product-icon:hover { 
    background: var(--primary-purple);
    transform: translateY(-5px);
}

.product-icon:hover i {
    color: white;
}

.product-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    font-family: var(--font-heading);
    color: var(--primary-purple);
}

.service-desc {
    font-size: 0.9rem;
    color: var(--text-grey);
    line-height: 1.6;
}

/* --- MESSAGE SECTION --- */
.message-section {
    background: linear-gradient(135deg, var(--primary-purple) 0%, rgba(116, 58, 150, 0.95) 100%);
    padding: 80px 0;
    position: relative;
}

.message-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.message-content h2 {
    font-size: 2.8rem;
    color: white;
    margin-bottom: 20px;
    font-weight: 600;
    line-height: 1.3;
}

.message-content p {
    font-size: 1.3rem;
    color: var(--primary-orange);
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* --- VOYAGE SECTION --- */
.voyage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.voyage-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.voyage-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(116, 58, 150, 0.15);
}

.voyage-card i {
    font-size: 2.5rem;
    color: var(--primary-orange);
    margin-bottom: 20px;
}

.voyage-card h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--primary-purple);
}

.voyage-card p {
    font-size: 0.9rem;
    color: var(--text-grey);
    line-height: 1.6;
}

/* --- TESTIMONIALS / ENGAGEMENTS --- */
.testimonials {
    background: linear-gradient(135deg, var(--primary-purple) 0%, rgba(116, 58, 150, 0.9) 100%);
    padding: 80px 0 120px;
    color: white;
    position: relative;
}

.testimonials-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.testi-left { flex: 1; }
.subtitle-white {
    font-size: 0.75rem; 
    text-transform: uppercase; 
    letter-spacing: 2px;
    opacity: 0.9; 
    display: block; 
    margin-bottom: 10px;
    color: var(--primary-orange);
    font-weight: 600;
}

.testi-left h2 { 
    color: white; 
    margin-bottom: 20px; 
    font-size: 2.5rem; 
    line-height: 1.2; 
}
.testi-left p { margin-bottom: 30px; opacity: 0.95; }

.btn-salmon {
    background-color: var(--primary-orange);
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    display: inline-block;
    transition: all 0.3s;
}

.btn-salmon:hover {
    background-color: #ff8f6d;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}

.testi-right-card {
    flex: 1;
    background: white;
    color: #333;
    padding: 40px;
    border-radius: 15px;
    position: relative;
}

.quote-icon {
    font-size: 3rem;
    color: var(--primary-orange);
    line-height: 0;
    margin-bottom: 20px;
    font-family: serif;
}

.engagement-title {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--primary-purple);
}

.engagement-list {
    list-style: none;
    padding: 0;
}

.engagement-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.engagement-list i {
    color: var(--primary-orange);
    margin-top: 3px;
    font-size: 1.1rem;
}

/* --- TRUST / POURQUOI --- */
.trust-content {
    text-align: center;
}

.trust-content h3 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--primary-purple);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.why-item {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.why-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(116, 58, 150, 0.15);
}

.why-item i {
    font-size: 2.5rem;
    color: var(--primary-orange);
    margin-bottom: 20px;
}

.why-item h4 {
    font-size: 1rem;
    margin-bottom: 10px;
    color: var(--primary-purple);
}

.why-item p {
    font-size: 0.85rem;
    color: var(--text-grey);
    line-height: 1.6;
}

/* --- FOOTER --- */
.main-footer {
    background-color: var(--primary-purple);
    color: white;
    padding-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-col h4 { 
    color: white; 
    font-size: 1rem; 
    margin-bottom: 20px; 
    font-family: var(--font-body); 
    font-weight: 700; 
}

.footer-col p { 
    font-size: 0.85rem; 
    margin-bottom: 10px; 
    opacity: 0.9; 
}

.footer-col a.underline { text-decoration: underline; }

.big-phone { 
    font-size: 1rem; 
    font-weight: 600; 
    margin-top: 5px; 
}

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

.footer-links a {
    opacity: 0.9;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--primary-orange);
}

.social-icons a {
    display: inline-block;
    background: white;
    color: var(--primary-purple);
    width: 35px; 
    height: 35px;
    text-align: center;
    line-height: 35px;
    border-radius: 5px;
    margin-right: 10px;
    transition: all 0.3s;
}

.social-icons a:hover {
    background: var(--primary-orange);
    color: white;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.3);
    padding: 20px 0;
    text-align: center;
    font-size: 0.75rem;
    opacity: 0.8;
}

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
    .nav-links { display: none; }
    
    .burger-menu { display: flex; }
    
    .features-grid { 
        flex-wrap: wrap; 
        justify-content: center; 
        gap: 20px; 
    }
    
    .activities-grid { 
        grid-template-columns: repeat(2, 1fr); 
    }
    
    .products-grid,
    .voyage-grid,
    .why-grid { 
        grid-template-columns: 1fr; 
    }
    
    .story-row, 
    .testimonials-content, 
    .footer-grid {
        flex-direction: column;
        gap: 30px;
    }
    
    .story-row.reverse { flex-direction: column; }
    
    .hero h1 { font-size: 2.2rem; }
    
    .section-header h2 { font-size: 2rem; }
    
    .message-content h2 { font-size: 2rem; }
    .message-content p { font-size: 1.1rem; }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .activities-grid { 
        grid-template-columns: 1fr; 
    }
    
    .hero h1 { 
        font-size: 1.8rem; 
    }
    
    .star {
        font-size: 1.5rem;
    }
    
    .offcanvas-menu {
        width: 280px;
    }
    
    .message-content h2 { 
        font-size: 1.6rem; 
    }
    
    .message-content p { 
        font-size: 1rem; 
    }
}

/* --- POPUP IMAGE --- */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

.popup-overlay.active {
    display: flex;
}

.popup-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    animation: slideIn 0.4s ease;
}

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

.popup-close {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 40px;
    height: 40px;
    background-color: #ff6b6b;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* --- FORMULAIRE DE CONTACT --- */
.contact-form-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 80px 0;
}

.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.form-header p {
    color: #7f8c8d;
    font-size: 1.1rem;
}

.contact-form {
    display: grid;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    background-color: #f8f9fa;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #3498db;
    background-color: white;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.submit-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 16px 40px;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

.submit-btn:active {
    transform: translateY(0);
}

.form-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 2px solid #e0e0e0;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.info-item i {
    font-size: 1.5rem;
    color: #667eea;
}

.info-item div h4 {
    margin: 0 0 5px 0;
    color: #2c3e50;
    font-size: 1rem;
}

.info-item div p {
    margin: 0;
    color: #7f8c8d;
    font-size: 0.95rem;
}

/* --- RESPONSIVE POUR POPUP ET FORMULAIRE --- */
@media (max-width: 768px) {
    .contact-form-container {
        padding: 30px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-header h2 {
        font-size: 2rem;
    }

    .popup-content {
        max-width: 95%;
    }

    .popup-close {
        top: -10px;
        right: -10px;
        width: 35px;
        height: 35px;
        font-size: 20px;
    }
}