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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #2C2C2C;
    background-color: #FFF8DC;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography avec Inter - Clean & Modern */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    letter-spacing: -0.025em;
    line-height: 1.2;
}

.section__title {
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.hero__title {
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.1;
}

.btn {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 500;
    letter-spacing: -0.01em;
}

/* Amélioration de la lisibilité */
p, li, span {
    font-weight: 400;
    letter-spacing: -0.01em;
}

/* Navigation plus clean */
.nav__link {
    font-weight: 500;
    letter-spacing: -0.01em;
}

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

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

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }

p {
    margin-bottom: 1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 1px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn--primary {
    background-color: #40E0D0;
    color: white;
    box-shadow: 0 4px 12px rgba(64, 224, 208, 0.3);
}

.btn--primary:hover {
    background-color: #20B2AA;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(64, 224, 208, 0.4);
}

.btn--secondary {
    background-color: transparent;
    color: #40E0D0;
    border: 2px solid #40E0D0;
}

.btn--secondary:hover {
    background-color: #40E0D0;
    color: white;
}

.btn--cta {
    background: linear-gradient(135deg, #FF69B4 0%, #FF8C69 100%);
    color: white;
    font-size: 1.1rem;
    padding: 16px 32px;
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(255, 105, 180, 0.4);
    border-radius: 6px;
}

.btn--cta:hover {
    background: linear-gradient(135deg, #FF8C69 0%, #FF69B4 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.5);
}

/* Header */
.header {
    background: linear-gradient(135deg, #FFF8DC 0%, #FFB6C1 100%);
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.2);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.nav__brand h1 {
    color: #40E0D0;
    font-size: 1.8rem;
    margin: 0;
    text-shadow: 0 2px 4px rgba(64, 224, 208, 0.3);
}

.nav__logo {
    height: 180px;
    width: auto;
    transition: all 0.3s ease;
}

.nav__logo:hover {
    transform: scale(1.05);
}



.nav__menu {
    display: flex;
    list-style: none;
    gap: 1rem;
}

.nav__link {
    text-decoration: none;
    color: #2C2C2C;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    overflow: hidden;
}

.nav__link:hover {
    color: #40E0D0;
    background: rgba(64, 224, 208, 0.1);
    transform: translateY(-1px);
}

.nav__link--active {
    color: #40E0D0;
    background: rgba(64, 224, 208, 0.15);
    font-weight: 700;
}

.nav__link:focus {
    outline: 2px solid #FF69B4;
    outline-offset: 2px;
    background: rgba(255, 105, 180, 0.1);
}

.nav__contact {
    display: flex;
    align-items: center;
}

/* Hamburger Menu */
.nav__hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
}

.nav__hamburger span {
    width: 25px;
    height: 3px;
    background-color: #40E0D0;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 1px;
}

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

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

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #40E0D0 0%, #20B2AA 30%, #FFB6C1 70%, #FFE4B5 100%);
    color: white;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(255, 105, 180, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(255, 140, 105, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.hero__content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero__title {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: 800;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.hero__subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero__image {
    text-align: center;
}

.hero__image .placeholder-image {
    width: 100%;
    max-width: 800px;
    height: 400px;
    background: linear-gradient(135deg, #FFB6C1, #FFE4B5);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #40E0D0;
    font-size: 1.2rem;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(64, 224, 208, 0.3);
    box-shadow: 0 8px 24px rgba(255, 105, 180, 0.2);
    transition: all 0.3s ease;
}

.hero__image .placeholder-image:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 32px rgba(255, 105, 180, 0.3);
}

/* Services Section */
.services {
    padding: 4rem 0;
    background: linear-gradient(135deg, #FFE4B5 0%, #FFF8DC 100%);
}

.section__title {
    text-align: center;
    margin-bottom: 3rem;
    color: #1A8B8B;
    font-size: 2.5rem;
    font-weight: 800;
    text-shadow: 0 3px 6px rgba(26, 139, 139, 0.3);
}

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

.service-card {
    background: linear-gradient(135deg, #FFB6C1 0%, #FFF8DC 100%);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.2);
    transition: all 0.3s ease;
    border: 3px solid rgba(64, 224, 208, 0.4);
    position: relative;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(255, 105, 180, 0.3);
    border-color: #40E0D0;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(64, 224, 208, 0.1) 0%, rgba(32, 178, 170, 0.1) 100%);
    transition: left 0.3s ease;
    z-index: 1;
    pointer-events: none;
}

.service-card:hover::before {
    left: 0;
}

.service-card__image {
    height: 200px;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card__content {
    padding: 2rem;
}

.service-card__title {
    color: #1A8B8B;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(26, 139, 139, 0.2);
}

.service-card__description {
    margin-bottom: 1.5rem;
    color: #2C2C2C;
    font-weight: 500;
}

.service-card__features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-card__features li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.service-card__features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #40E0D0;
    font-weight: bold;
    font-size: 1.1rem;
}

/* About Section */
.about {
    padding: 4rem 0;
    background: linear-gradient(135deg, #FFF8DC 0%, #FFE4B5 100%);
}

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

.about__image {
    text-align: center;
}

/* Signature Cocktails */
.signature-cocktails {
    padding: 4rem 0;
    background: linear-gradient(135deg, #FFB6C1 0%, #FFE4B5 50%, #FFF8DC 100%);
}

.section__subtitle {
    text-align: center;
    margin-bottom: 3rem;
    color: #2C2C2C;
    font-size: 1.1rem;
    font-weight: 500;
}

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

.cocktail-card {
    background: linear-gradient(135deg, #FFF8DC 0%, #FFB6C1 100%);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(255, 105, 180, 0.2);
    text-align: center;
    transition: all 0.3s ease;
    border: 3px solid rgba(64, 224, 208, 0.5);
    position: relative;
}

.cocktail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 105, 180, 0.3);
}

.cocktail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(64, 224, 208, 0.1) 0%, rgba(32, 178, 170, 0.1) 100%);
    transition: left 0.3s ease;
    z-index: 1;
    pointer-events: none;
}

.cocktail-card:hover::before {
    left: 0;
}

.cocktail-card__image {
    height: 150px;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cocktail-card__name {
    color: #1A8B8B;
    margin: 1rem 0 0.5rem 0;
    font-size: 1.2rem;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(26, 139, 139, 0.2);
}

.cocktail-card__description {
    color: #2C2C2C;
    padding: 0 1rem 1rem 1rem;
    font-weight: 500;
}

.signature-cocktails__cta {
    text-align: center;
}

/* Contact CTA */
.contact-cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, #40E0D0 0%, #20B2AA 30%, #FF69B4 70%, #FF8C69 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.contact-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255, 228, 181, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255, 182, 193, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.contact-cta__content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact-cta__title {
    color: white;
    margin-bottom: 1rem;
    font-weight: 800;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
}

.contact-cta__subtitle {
    margin-bottom: 2rem;
    opacity: 0.95;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.contact-cta__info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-info__icon {
    font-size: 1.2rem;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #20B2AA 0%, #40E0D0 30%, #FFB6C1 70%, #FFE4B5 100%);
    color: #2C2C2C;
    padding: 3rem 0 1rem;
}

.footer__content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
    align-items: start;
}

.footer__brand {
    text-align: left;
}

.footer__tagline {
    font-size: 1.1rem;
    color: #2C2C2C;
    margin: 0;
    font-weight: 600;
}

.footer__sections {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer__title {
    color: #2C2C2C;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 700;
}

.footer__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer__list li {
    margin: 0.5rem 0;
}

.footer__link {
    color: #2C2C2C;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    font-weight: 500;
}

.footer__link:hover {
    color: #FF69B4;
    transform: translateX(4px);
}

.footer__contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer__contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
}

.footer__icon {
    font-size: 1.1rem;
}

.footer__social-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer__social-link {
    color: #2C2C2C;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    font-size: 0.95rem;
    font-weight: 500;
}

.footer__social-link:hover {
    color: #FF69B4;
    transform: translateX(4px);
}

.footer__logo {
    height: 150px;
    width: auto;
    margin-bottom: 0.5rem;
    filter: brightness(1.1);
    transition: all 0.3s ease;
}

.footer__logo:hover {
    transform: scale(1.05);
    filter: brightness(1.2);
}

.footer h4 {
    color: #FFE4B5;
    margin-bottom: 1rem;
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 0.5rem;
}

.footer ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer ul li a {
    position: relative;
    overflow: hidden;
}

.footer ul li a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 228, 181, 0.2) 0%, rgba(255, 182, 193, 0.2) 100%);
    transition: left 0.3s ease;
    z-index: -1;
}

.footer ul li a:hover::before {
    left: 0;
}

.footer ul li a:hover {
    color: #FFE4B5;
    transform: translateX(8px);
    text-shadow: 0 2px 4px rgba(255, 228, 181, 0.3);
}

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

.social-link {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-link {
    position: relative;
    overflow: hidden;
    padding: 0.5rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 228, 181, 0.3) 0%, rgba(255, 182, 193, 0.3) 100%);
    transition: left 0.3s ease;
    z-index: -1;
}

.social-link:hover::before {
    left: 0;
}

.social-link:hover {
    color: #FFE4B5;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(255, 228, 181, 0.3);
}

.footer__bottom {
    border-top: 1px solid rgba(44, 44, 44, 0.2);
    padding-top: 1.5rem;
}

.footer__bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer__copyright {
    margin: 0;
    font-size: 0.9rem;
    color: #2C2C2C;
    font-weight: 500;
}

.footer__legal {
    display: flex;
    gap: 1rem;
}

.footer__legal-link {
    color: #2C2C2C;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer__legal-link:hover {
    color: #FF69B4;
}

/* Page Hero */
.page-hero {
    padding: 3rem 0;
    background: linear-gradient(135deg, #40E0D0 0%, #20B2AA 30%, #FFB6C1 70%, #FFE4B5 100%);
    color: white;
    text-align: center;
}

.page-hero__title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
}

.page-hero__subtitle {
    font-size: 1.2rem;
    opacity: 0.95;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Description Section */
.description {
    padding: 4rem 0;
    background: linear-gradient(135deg, #FFF8DC 0%, #FFE4B5 100%);
}

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

.description__text h2 {
    color: #1A8B8B;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    font-weight: 700;
}

.description__text p {
    color: #2C2C2C;
    font-size: 1.1rem;
    line-height: 1.7;
    font-weight: 500;
}

/* Process Section */
.process {
    padding: 4rem 0;
    background: linear-gradient(135deg, #FFE4B5 0%, #FFF8DC 100%);
}

.process__steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    background: linear-gradient(135deg, #FFB6C1 0%, #FFF8DC 100%);
    padding: 2rem;
    border-radius: 4px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.2);
    border: 3px solid rgba(64, 224, 208, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(255, 105, 180, 0.3);
}

.step__number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #40E0D0 0%, #20B2AA 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 1.5rem auto;
    box-shadow: 0 4px 15px rgba(64, 224, 208, 0.3);
}

.step__title {
    color: #1A8B8B;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.step__description {
    color: #2C2C2C;
    line-height: 1.6;
    font-weight: 500;
}

/* Included Section */
.included {
    padding: 4rem 0;
    background: linear-gradient(135deg, #FFB6C1 0%, #FFE4B5 50%, #FFF8DC 100%);
}

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

.included__item {
    background: linear-gradient(135deg, #FFF8DC 0%, #FFB6C1 100%);
    padding: 2rem;
    border-radius: 4px;
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.2);
    border: 3px solid rgba(64, 224, 208, 0.3);
    transition: all 0.3s ease;
}

.included__item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(255, 105, 180, 0.3);
}

.included__item h3 {
    color: #1A8B8B;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    font-weight: 700;
    text-align: center;
}

.included__item ul {
    list-style: none;
    padding: 0;
}

.included__item li {
    padding: 0.8rem 0;
    color: #2C2C2C;
    font-weight: 500;
    position: relative;
    padding-left: 2rem;
    border-bottom: 1px solid rgba(64, 224, 208, 0.2);
}

.included__item li:last-child {
    border-bottom: none;
}

.included__item li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #40E0D0;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Pricing Section */
.pricing {
    padding: 4rem 0;
    background: linear-gradient(135deg, #FFF8DC 0%, #FFE4B5 100%);
}

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

.pricing-card {
    background: linear-gradient(135deg, #FFB6C1 0%, #FFF8DC 100%);
    padding: 2.5rem;
    border-radius: 4px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.2);
    border: 3px solid rgba(64, 224, 208, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(255, 105, 180, 0.3);
}

.pricing-card--featured {
    border-color: #40E0D0;
    box-shadow: 0 12px 35px rgba(64, 224, 208, 0.3);
}

.pricing-card__title {
    color: #1A8B8B;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.pricing-card__duration,
.pricing-card__participants,
.pricing-card__cocktails {
    color: #2C2C2C;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.pricing-card__price {
    color: #40E0D0;
    font-size: 2rem;
    font-weight: 800;
    margin: 1.5rem 0;
    text-shadow: 0 2px 4px rgba(64, 224, 208, 0.2);
}

.pricing-card__features {
    list-style: none;
    padding: 0;
    text-align: left;
}

.pricing-card__features li {
    padding: 0.8rem 0;
    color: #2C2C2C;
    font-weight: 500;
    position: relative;
    padding-left: 2rem;
    border-bottom: 1px solid rgba(64, 224, 208, 0.2);
}

.pricing-card__features li:last-child {
    border-bottom: none;
}

.pricing-card__features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #40E0D0;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Testimonials Section */
.testimonials {
    padding: 4rem 0;
    background: linear-gradient(135deg, #FFE4B5 0%, #FFF8DC 100%);
}

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial {
    background: linear-gradient(135deg, #FFB6C1 0%, #FFF8DC 100%);
    padding: 2rem;
    border-radius: 4px;
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.2);
    border: 3px solid rgba(64, 224, 208, 0.3);
    transition: all 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(255, 105, 180, 0.3);
}

.testimonial__text {
    color: #2C2C2C;
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.testimonial__author {
    color: #1A8B8B;
    font-weight: 600;
    text-align: right;
}

/* CTA Section */
.cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, #40E0D0 0%, #20B2AA 30%, #FF69B4 70%, #FF8C69 100%);
    color: white;
    text-align: center;
}

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

.cta__title {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 800;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
}

.cta__subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Events Section */
.events {
    padding: 4rem 0;
    background: linear-gradient(135deg, #FFE4B5 0%, #FFF8DC 100%);
}

.events__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.event-card {
    background: linear-gradient(135deg, #FFB6C1 0%, #FFF8DC 100%);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.2);
    border: 3px solid rgba(64, 224, 208, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.event-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(255, 105, 180, 0.3);
}

.event-card__image {
    height: 200px;
    overflow: hidden;
}

.event-card__content {
    padding: 2rem;
}

.event-card__title {
    color: #1A8B8B;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.event-card__description {
    color: #2C2C2C;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-weight: 500;
}

.event-card__features {
    list-style: none;
    padding: 0;
}

.event-card__features li {
    padding: 0.5rem 0;
    color: #2C2C2C;
    font-weight: 500;
    position: relative;
    padding-left: 1.5rem;
    border-bottom: 1px solid rgba(64, 224, 208, 0.2);
}

.event-card__features li:last-child {
    border-bottom: none;
}

.event-card__features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #40E0D0;
    font-weight: bold;
    font-size: 1.1rem;
}

/* Gallery Section */
.gallery-categories {
    padding: 2rem 0;
    background: linear-gradient(135deg, #FFF8DC 0%, #FFE4B5 100%);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: linear-gradient(135deg, #FFB6C1 0%, #FFF8DC 100%);
    border: 3px solid rgba(64, 224, 208, 0.3);
    color: #2C2C2C;
    padding: 0.8rem 1.5rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #40E0D0 0%, #20B2AA 100%);
    transition: left 0.3s ease;
    z-index: -1;
}

.filter-btn:hover::before,
.filter-btn--active::before {
    left: 0;
}

.filter-btn:hover,
.filter-btn--active {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(64, 224, 208, 0.3);
}

.gallery {
    padding: 4rem 0;
    background: linear-gradient(135deg, #FFE4B5 0%, #FFF8DC 100%);
}

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

.gallery-item {
    background: linear-gradient(135deg, #FFB6C1 0%, #FFF8DC 100%);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.2);
    border: 3px solid rgba(64, 224, 208, 0.3);
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(255, 105, 180, 0.3);
}

.gallery-item__image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.gallery-item__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-item__overlay {
    transform: translateY(0);
}

.gallery-item__title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.gallery-item__description {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 500;
}

/* Placeholder Images */
.placeholder-image {
    background: linear-gradient(135deg, #FFB6C1 0%, #FFE4B5 100%);
    border: 3px dashed #40E0D0;
    color: #1A8B8B;
    display: flex;
    align-items: center;
    justify-content: center;
    font-style: italic;
    min-height: 200px;
    border-radius: 6px;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(26, 139, 139, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .nav__hamburger {
        display: flex;
    }
    
    .nav__menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: linear-gradient(135deg, #FFF8DC 0%, #FFB6C1 100%);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        z-index: 1000;
    }
    
    .nav__menu.active {
        left: 0;
    }
    
    .nav__menu li {
        margin: 1rem 0;
    }
    
    .nav__menu .nav__link {
        display: block;
        padding: 1.25rem 2rem;
        border-radius: 6px;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
        font-size: 1.2rem;
        font-weight: 600;
    }
    
    .nav__menu .nav__link:hover {
        color: #40E0D0;
        background: rgba(64, 224, 208, 0.1);
        transform: translateX(8px);
    }
    
    .nav__menu .nav__link--active {
        color: #40E0D0;
        background: rgba(64, 224, 208, 0.15);
        font-weight: 700;
    }
    
    .nav__contact {
        display: none;
    }
    
    .hero__content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero__title {
        font-size: 2rem;
    }
    
    .about__content {
        grid-template-columns: 1fr;
    }
    
    .services__grid {
        grid-template-columns: 1fr;
    }
    
    .contact-cta__info {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer__content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer__sections {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer__brand {
        text-align: center;
    }
    
    .footer__bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    /* Page Ateliers Responsive */
    .description__content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .process__steps {
        grid-template-columns: 1fr;
    }
    
    .included__grid {
        grid-template-columns: 1fr;
    }
    
    .pricing__grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials__grid {
        grid-template-columns: 1fr;
    }
    
    .page-hero__title {
        font-size: 2rem;
    }
    
    .step {
        margin-bottom: 1rem;
    }
    
    .pricing-card {
        margin-bottom: 1rem;
    }
    
    /* Events and Gallery Responsive */
    .events__grid {
        grid-template-columns: 1fr;
    }
    
    .gallery__grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .gallery-filters {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-btn {
        width: 200px;
        text-align: center;
    }
    
    /* Logo Responsive */
    .nav__logo {
        height: 140px;
    }
    
    .hero__image .placeholder-image {
        max-width: 667px;
        height: 350px;
    }
    
    .footer__logo {
        height: 130px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    /* Logo pour très petits écrans */
    .nav__logo {
        height: 120px;
    }
    
    .hero__image .placeholder-image {
        max-width: 533px;
        height: 250px;
    }
    
    .footer__logo {
        height: 110px;
    }
    
    .nav {
        padding: 1rem;
    }
    
    .hero {
        padding: 2rem 0;
    }
    
    .hero__title {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}
