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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #F5F1E8;
}

.script-font {
    font-family: 'Dancing Script', cursive;
}

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

/* Colors */
:root {
    --blush: #F8BBD9;
    --sage: #A8D5E2;
    --cream: #F5F1E8;
    --beige: #E8DCC0;
    --white: #ffffff;
    --black: #333333;
    --gray: #666666;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

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

.logo {
    height: 56px;
    width: auto;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--sage);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--blush);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--sage);
    margin: 3px 0;
    transition: 0.3s;
}

.nav-menu-mobile {
    display: none;
    background: white;
    border-top: 1px solid #eee;
    padding: 1rem 0;
}

.nav-link-mobile {
    display: block;
    padding: 0.5rem 2rem;
    color: var(--sage);
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-link-mobile:hover {
    color: var(--blush);
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, rgba(248, 187, 217, 0.2), rgba(168, 213, 226, 0.2));
    text-align: center;
}

.hero-content {
    max-width: 1000px;
    margin: 0 auto;
}

.hero-logo {
    margin-bottom: 2rem;
}

.hero-logo-img {
    height: 256px;
    width: auto;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    color: var(--sage);
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 2rem;
    color: rgba(168, 213, 226, 0.8);
    margin-bottom: 1rem;
}

.hero-title-2 {
    font-size: 3.5rem;
    color: var(--blush) !important;
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 1.25rem;
    color: rgba(168, 213, 226, 0.7);
    margin-bottom: 2rem;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--blush);
    color: white;
    box-shadow: 0 4px 15px rgba(248, 187, 217, 0.4);
}

.btn-primary:hover {
    background-color: rgba(248, 187, 217, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(248, 187, 217, 0.6);
}

.btn-secondary {
    border: 2px solid var(--sage);
    color: var(--sage);
    background: transparent;
}

.btn-secondary:hover {
    background-color: var(--sage);
    color: white;
    transform: translateY(-2px);
}

.btn-forfait {
    background-color: var(--sage);
    color: white;
    width: 100%;
    margin-top: auto;
}

.btn-forfait:hover {
    background-color: rgba(168, 213, 226, 0.9);
    transform: translateY(-2px);
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--sage);
    margin-bottom: 1rem;
    text-align: center;
}

.section-description {
    font-size: 1.125rem;
    color: rgba(168, 213, 226, 0.7);
    text-align: center;
    margin-bottom: 3rem;
}

.section-header {
    margin-bottom: 3rem;
}

/* About Section */
.about {
    padding: 80px 0;
    background: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-content {
    font-size: 1.125rem;
    color: var(--gray);
    line-height: 1.8;
}

.about-content p {
    margin-bottom: 1.5rem;
}

.highlight {
    color: var(--blush) !important;
    font-weight: 500;
}

.about-image {
    position: relative;
}

.about-img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-badge {
    position: absolute;
    bottom: -16px;
    right: -16px;
    background-color: var(--blush);
    color: white;
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(248, 187, 217, 0.4);
}

/* Forfaits Section */
.forfaits {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--cream), rgba(168, 213, 226, 0.1));
}

.forfaits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.forfait-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

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

.forfait-card.popular {
    border: 4px solid rgba(248, 187, 217, 0.3);
    transform: scale(1.05);
}

.popular-badge {
    background-color: var(--blush);
    color: white;
    text-align: center;
    padding: 0.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.forfait-header {
    padding: 2rem;
}

.forfait-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--sage);
    margin-bottom: 0.5rem;
}

.forfait-price {
    font-size: 1.875rem;
    font-weight: bold;
    color: var(--blush);
    margin-bottom: 1rem;
}

.forfait-description {
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.forfait-includes {
    list-style: none;
    padding: 0 2rem;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.forfait-includes li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.75rem;
    color: var(--gray);
}

.forfait-includes li::before {
    content: "⭐";
    margin-right: 0.75rem;
    color: var(--blush);
    flex-shrink: 0;
}

.forfait-card .btn {
    margin: 0 2rem 2rem;
}

.forfaits-note {
    text-align: center;
    color: var(--gray);
    font-size: 0.875rem;
    margin-top: 2rem;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
}

.service-card {
    background: linear-gradient(135deg, var(--cream), white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

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

.service-icon {
    color: var(--blush);
    margin-bottom: 1rem;
}

.service-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--sage);
    margin-bottom: 0.75rem;
}

.service-description {
    color: var(--gray);
}

/* Jeux Gonflables Section */
.jeux-gonflables {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(248, 187, 217, 0.1), rgba(168, 213, 226, 0.1));
}

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

.jeu-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

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

.jeu-icon {
    background: rgba(248, 187, 217, 0.2);
    border-radius: 50%;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--blush);
}

.jeu-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--sage);
    margin-bottom: 0.5rem;
}

.jeu-description {
    color: var(--gray);
    margin-bottom: 0.5rem;
}

.jeu-age {
    color: var(--blush);
    font-weight: 500;
}

/* Locations Section */
.locations {
    padding: 80px 0;
    background: white;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.location-category {
    background: linear-gradient(135deg, var(--cream), white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.category-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--blush);
    margin-bottom: 1rem;
}

.category-items {
    list-style: none;
    padding: 0;
}

.category-items li {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    color: var(--gray);
}

.category-items li::before {
    content: "";
    width: 8px;
    height: 8px;
    background-color: var(--sage);
    border-radius: 50%;
    margin-right: 0.75rem;
    flex-shrink: 0;
}

/* Gallery Section */
.gallery {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--cream), rgba(168, 213, 226, 0.1));
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

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

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

/* Contact Section */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(248, 187, 217, 0.1), rgba(168, 213, 226, 0.1));
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--sage);
    margin-bottom: 1.5rem;
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: var(--gray);
}

.contact-item svg {
    color: var(--blush);
    margin-right: 1rem;
    flex-shrink: 0;
}

.social-media {
    margin-bottom: 2rem;
}

.social-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--sage);
    margin-bottom: 1rem;
}

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

.social-link {
    background-color: var(--blush);
    color: white;
    padding: 0.75rem;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: rgba(248, 187, 217, 0.9);
    transform: scale(1.1);
}

.social-link.facebook {
    background-color: var(--sage);
}

.social-link.facebook:hover {
    background-color: rgba(168, 213, 226, 0.9);
}

.special-offer {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.offer-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--sage);
    margin-bottom: 0.5rem;
}

.offer-text {
    color: var(--gray);
    font-size: 0.875rem;
}

/* Contact Form */
.contact-form-container {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 2rem;
}

.form-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--sage);
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 500;
    color: var(--gray);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--blush);
    box-shadow: 0 0 0 3px rgba(248, 187, 217, 0.1);
}

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

/* Footer */
.footer {
    background-color: var(--sage);
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.footer-content {
    max-width: 600px;
    margin: 0 auto;
}

.footer-logo {
    height: 64px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu-mobile.active {
        display: block;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .forfaits-grid {
        grid-template-columns: 1fr;
    }
    
    .forfait-card.popular {
        transform: none;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .nav-container {
        padding: 1rem;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .about,
    .forfaits,
    .services,
    .jeux-gonflables,
    .locations,
    .gallery,
    .contact {
        padding: 60px 0;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Hover effects */
.hover-lift {
    transition: transform 0.3s ease;
}

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