/* ---------------------- */
/* RESET + BASE           */
/* ---------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #f7f3ee;
    --bg-alt: #fffaf4;
    --card-bg: #ffffff;
    --accent: #c79a63;
    --accent-soft: #f1e1cf;
    --text-main: #3f3328;
    --text-muted: #7a6b5b;
    --border-soft: #e4d7c8;
    --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.06);
    --radius-lg: 18px;
    --radius-full: 999px;
    --transition-fast: 0.25s ease;
    --header-height: 76px;
}

html, body {
    font-family: "Helvetica Neue", Arial, sans-serif;
    scroll-behavior: smooth;
    background-color: var(--bg);
    color: var(--text-main);
}

/* ---------------------- */
/* HEADER                 */
/* ---------------------- */
header {
    width: 100%;
    position: fixed;
    inset-inline: 0;
    top: 0;
    background: rgba(255, 252, 247, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 7%;
    z-index: 1000;
    border-bottom: 1px solid var(--border-soft);
}

.logo img {
    height: 80px;
    border-radius: 8px;
    object-fit: cover;
}

.menu {
    display: flex;
    align-items: center;
    gap: 20px;
}

.menu a {
    position: relative;
    font-size: 0.95rem;
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    padding-bottom: 4px;
    transition: color var(--transition-fast);
}

.menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    background: var(--accent);
    transition: width var(--transition-fast);
    border-radius: 999px;
}

.menu a:hover {
    color: var(--accent);
}

.menu a:hover::after {
    width: 100%;
}

/* ---------------------- */
/* HERO / VIDEO           */
/* ---------------------- */
.hero {
    position: relative;
    height: calc(100vh - var(--header-height));
    margin-top: var(--header-height);
    overflow: hidden;
    background: #000;
}

.hero-video {
    position: absolute;
    inset: 0;
}

.hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-overlay {
    position: relative;
    inset: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        rgba(0, 0, 0, 0.55),
        rgba(0, 0, 0, 0.15)
    );
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 7%;
}

.hero-content {
    max-width: 520px;
    color: #fff;
    animation: fadeInUp 0.8s ease-out;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    margin-bottom: 14px;
}

.hero-tag::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
}

.hero-content h1 {
    font-size: clamp(2.1rem, 4vw, 3.2rem);
    line-height: 1.15;
    margin-bottom: 14px;
}

.hero-content p {
    font-size: 0.98rem;
    line-height: 1.7;
    max-width: 440px;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.9);
}

/* ---------------------- */
/* BUTTONS                */
/* ---------------------- */
.btn-primary,
.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 26px;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    border: 1px solid transparent;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
}

.btn-primary {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
    background: #b27e43;
}

.btn-outline {
    background: transparent;
    border-color: var(--accent);
    color: var(--accent);
    box-shadow: none;
}

.btn-outline:hover {
    background: #D8B68A;
    color: var(--text-main);
}

/* ---------------------- */
/* GENERIC SECTIONS       */
/* ---------------------- */
main {
    background: linear-gradient(to bottom, var(--bg) 0%, var(--bg-alt) 45%, var(--bg) 100%);
}

.section {
    padding: 80px 7%;
    background: #edc5aef0;
}

.section-alt {
    background:#edc5aef0;
}

.section + .section {
    border-top: 1px solid rgba(228, 215, 200, 0.6);
}

.section-inner {
    max-width: 1080px;
    margin: 0 auto;
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
}

.section-inner::before {
    content: "";
    position: absolute;
    inset-inline: 24px;
    top: 0;
    height: 4px;
    border-radius: 0 0 999px 999px;
    background: linear-gradient(90deg, var(--accent), #e1c19b);
    opacity: 0.3;
}

.section-title {
    font-size: clamp(1.8rem, 2.4vw, 2.2rem);
    margin-bottom: 10px;
    position: relative;
}

.section-title::after {
    content: "";
    display: block;
    width: 54px;
    height: 2px;
    border-radius: 999px;
    margin-top: 8px;
    background: linear-gradient(90deg, var(--accent), transparent);
}

.section-intro {
    font-size: 0.98rem;
    color: var(--text-muted);
    max-width: 600px;
    margin-top: 14px;
    margin-bottom: 28px;
    line-height: 1.6;
}

.section p {
    font-size: 0.97rem;
    line-height: 1.7;
}

.section-center {
    text-align: center;
}

.section-center .section-title::after {
    margin-inline: auto;
}

/* ---------------------- */
/* A PROPOS               */
/* ---------------------- */
.about-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
    gap: 32px;
    align-items: center;
}

.section-text p + p {
    margin-top: 10px;
}

.section-image img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
    max-height: 800px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

/* ---------------------- */
/* SERVICES               */
/* ---------------------- */
.services-grid {
    display: flexbox;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.service-card {
    background: linear-gradient(145deg, #fffdf8, #f4eadc);
    border-radius: 18px;
    padding: 26px 22px 24px;
    text-align: left;
    border: 1px solid rgba(228, 215, 200, 0.8);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.06);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
    position: relative;
    overflow: hidden;
    margin-top: 2%;
}

.service-card::after {
    content: "";
    position: absolute;
    right: -40px;
    top: -40px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.9), transparent 70%);
    opacity: 0;
    transition: opacity var(--transition-fast), transform var(--transition-fast);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 40px rgba(0, 0, 0, 0.12);
    background: linear-gradient(145deg, #fffaf2, #f8e7d4);
}

.service-card:hover::after {
    opacity: 1;
    transform: translate(-12px, 12px);
}

.service-image-wrapper {
    width: 100px;
    height: 100px;
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 18px;
    border: 2px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.16);
}

.service-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}
.service-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    max-height: 80px; 
    overflow: hidden;
    transition: max-height 0.4s ease;
}
#servicep{
    margin-left: 0;
}
.bouttonreserver{
    margin-top: 10%;
    background: rgba(249, 241, 230, 0.314);
    font-size: 14px;
    
}
.service-card p.expanded {
    max-height: 600px;
}
.toggle-btn {
    cursor: pointer;
    font-size: 14px;
    color: #000000;
    display: inline-block;
    margin-top: 8px;
}

/* ---------------------- */
/* Atelier                */
/* ---------------------- */




/* ---------------------- */
/* CONTACT                */
/* ---------------------- */
.contact-box {
    display: inline-flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    justify-content: center;
    padding: 24px 28px 20px;
    border-radius: 18px;
    border: 1px dashed var(--accent);
    background: rgba(249, 241, 230, 0.8);
    margin-top: 10px;
    
}

.contact-box p {
    font-size: 0.96rem;
    
}

.contact-box a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 500;

}

.contact-box a:hover {
    text-decoration: underline;
}
.section-intro{
    margin: auto;
}
/* ---------------------- */
/* RESEAUX SOCIAUX        */
/* ---------------------- */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 26px;
    margin-top: 10px;
}

.social-circle {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--border-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}

.social-circle img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    transition: transform var(--transition-fast);
}

.social-circle:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.14);
    background: var(--accent-soft);
}

.social-circle:hover img {
    transform: scale(1.08);
}

/* ---------------------- */
/* FOOTER                 */
/* ---------------------- */
footer {
    background: #1f1913;
    color: rgba(255, 255, 255, 0.82);
    padding: 20px 7% 22px;
}

.footer-inner {
    max-width: 1080px;
    margin: 0 auto;
    font-size: 0.9rem;
    text-align: center;
}

/* ---------------------- */
/* RESPONSIVE DESIGN      */
/* ---------------------- */
@media (max-width: 1024px) {
    .section {
        padding: 70px 6%;
    }

    .section-inner {
        padding: 32px 26px;
    }

    .about-grid {
        grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    }
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 10px 5%;
    }

    .menu {
        width: 100%;
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 14px;
    }

    .hero {
        height: 75vh;
    }

    .hero-overlay {
        align-items: flex-end;
        padding-bottom: 40px;
    }

    .hero-content {
        max-width: 100%;
    }

    .section {
        padding: 70px 5%;
    }

    .section-inner {
        padding: 26px 20px 24px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .section-center {
        text-align: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .contact-box {
        width: 100%;
    }

    .social-icons {
        gap: 20px;
    }

    .social-circle {
        width: 50px;
        height: 50px;
    }

    .social-circle img {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.9rem;
    }

    .hero-content p {
        font-size: 0.9rem;
    }

    .menu {
        font-size: 0.8rem;
    }
}

/* ---------------------- */
/* ANIMATIONS             */
/* ---------------------- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
