/* ===================================
   LES ONGLES DE JULIE - PREMIUM AESTHETIC
   Soft tones, minimalist luxury, clean & elegant
   =================================== */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500;600;700&family=Cormorant:ital,wght@0,400;0,500;0,600;1,400;1,500&display=swap');

:root {
    --nude-light: #F5EDE6;
    --nude-medium: #E8DED3;
    --nude-dark: #D4C4B5;
    --beige: #C9B8A8;
    --taupe: #A89584;
    --brown-light: #8B7E6F;
    --brown-dark: #5C5347;

    --cream-white: #FDFBF8;
    --soft-white: #FAF7F4;
    --warm-gray: #6B6560;
    --charcoal: #3D3832;
    --black: #1A1715;
    --white: #FFFFFF;

    --accent-rose: #C9A59A;
    --accent-mauve: #B5A0A0;

    --font-sans: 'DM Sans', -apple-system, sans-serif;
    --font-serif: 'Cormorant', Georgia, serif;

    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-soft: 0 4px 20px rgba(92, 83, 71, 0.08);
    --shadow-medium: 0 10px 40px rgba(92, 83, 71, 0.12);
    --shadow-strong: 0 20px 60px rgba(92, 83, 71, 0.15);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    line-height: 1.7;
    color: var(--charcoal);
    background: var(--cream-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ===================================
   TYPOGRAPHY - REFINED ELEGANCE
   =================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 500;
    color: var(--black);
    line-height: 1.2;
    letter-spacing: -0.01em;
}

h1 {
    font-size: clamp(2.75rem, 6vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 2.5vw, 1.875rem);
}

p {
    font-weight: 400;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* ===================================
   NAVIGATION - MINIMAL REFINED
   =================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(253, 251, 248, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid rgba(201, 184, 168, 0.2);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 36px;
    height: 36px;
    stroke: var(--brown-light);
    fill: none;
    stroke-width: 1.5;
}

.logo span {
    font-family: var(--font-serif);
    font-size: 1.375rem;
    font-weight: 500;
    color: var(--black);
    letter-spacing: 0.02em;
}

.nav-menu {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--warm-gray);
    letter-spacing: 0.03em;
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--brown-light);
    transition: width 0.3s ease;
}

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

.nav-link:hover::after {
    width: 100%;
}

.btn-nav {
    background: var(--charcoal);
    color: var(--white);
    padding: 12px 28px;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.btn-nav::after {
    display: none;
}

.btn-nav:hover {
    background: var(--black);
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--charcoal);
    transition: var(--transition);
}

/* ===================================
   BUTTONS - SOFT LUXURY
   =================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: var(--charcoal);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--black);
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.btn-secondary {
    background: transparent;
    color: var(--charcoal);
    border: 1px solid var(--beige);
}

.btn-secondary:hover {
    background: var(--nude-light);
    border-color: var(--brown-light);
}

/* ===================================
   HERO - ELEGANT MINIMAL
   =================================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    background: linear-gradient(135deg, var(--cream-white) 0%, var(--nude-light) 100%);
    position: relative;
    overflow: hidden;
}

/* Subtle decorative circle */
.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -20%;
    width: 60%;
    height: 100%;
    background: radial-gradient(ellipse, var(--nude-medium) 0%, transparent 70%);
    opacity: 0.4;
    transform: translateY(-50%);
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 23, 21, 0.5) 0%, rgba(92, 83, 71, 0.4) 100%);
    z-index: 1;
}

.hero-decoration {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 0;
}

.hero-title {
    font-style: italic;
    margin-bottom: 16px;
    color: var(--white);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
}

.hero-subtitle {
    font-family: var(--font-sans);
    font-size: 1.125rem;
    font-weight: 400;
    color: var(--white);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 24px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
}

.hero-description {
    font-size: 1.125rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.8;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
}

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

.hero-buttons .btn-secondary {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.6);
}

.hero-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--white);
}

/* ===================================
   SECTION STYLES - CLEAN
   =================================== */

section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-style: italic;
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background: var(--beige);
}

.section-subtitle {
    font-size: 1rem;
    color: var(--warm-gray);
    margin-top: 24px;
    font-weight: 400;
}

/* ===================================
   PRESTATIONS - MINIMAL CARDS
   =================================== */

.prestations {
    background: var(--soft-white);
}

.prestations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.prestation-card {
    background: var(--white);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid transparent;
    position: relative;
}

.prestation-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
    border-color: var(--nude-medium);
}

.prestation-card.featured {
    border-color: var(--beige);
}

.featured-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--charcoal);
    color: var(--white);
    padding: 6px 14px;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.prestation-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prestation-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--brown-light);
    stroke-width: 1;
}

.prestation-title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 12px;
    color: var(--black);
}

.prestation-description {
    font-size: 0.9375rem;
    color: var(--warm-gray);
    margin-bottom: 20px;
    line-height: 1.7;
}

.prestation-list {
    text-align: left;
}

.prestation-list li {
    font-size: 0.875rem;
    color: var(--warm-gray);
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    border-bottom: 1px solid var(--nude-light);
}

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

.prestation-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 6px;
    height: 1px;
    background: var(--beige);
}

/* ===================================
   TARIFS - CLEAN PRICING
   =================================== */

.tarifs {
    background: var(--cream-white);
}

.tarifs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.tarif-category {
    background: var(--white);
    padding: 40px;
    border: 1px solid var(--nude-medium);
    transition: var(--transition);
}

.tarif-category:hover {
    border-color: var(--beige);
    box-shadow: var(--shadow-soft);
}

.tarif-category-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-style: italic;
    margin-bottom: 30px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--nude-light);
    color: var(--black);
}

.tarif-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.tarif-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px dotted var(--nude-medium);
}

.tarif-item:last-child {
    border-bottom: none;
}

.tarif-name {
    font-size: 0.9375rem;
    color: var(--charcoal);
    font-weight: 400;
}

.tarif-dots {
    flex: 1;
    margin: 0 16px;
    border-bottom: 1px dotted var(--nude-dark);
}

.tarif-price {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--brown-dark);
}

.tarifs-note {
    margin-top: 50px;
    padding: 30px;
    background: var(--nude-light);
    text-align: center;
}

.tarifs-note p {
    font-size: 0.9375rem;
    color: var(--warm-gray);
    margin: 0;
    font-style: italic;
}

/* ===================================
   GALERIE - GRID LAYOUT
   =================================== */

.galerie {
    background: var(--soft-white);
}

.galerie-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.galerie-item {
    overflow: hidden;
    aspect-ratio: 1;
    background: var(--nude-light);
    transition: var(--transition);
    cursor: pointer;
}

.galerie-item:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-medium);
}

.galerie-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.galerie-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
    background: linear-gradient(135deg, var(--nude-light), var(--nude-medium));
}

.galerie-placeholder svg {
    width: 40px;
    height: 40px;
    stroke: var(--brown-light);
    stroke-width: 1;
    margin-bottom: 12px;
    opacity: 0.6;
}

.galerie-placeholder p {
    font-size: 0.8125rem;
    color: var(--brown-light);
    font-weight: 500;
}

/* ===================================
   AVIS - TESTIMONIALS
   =================================== */

.avis {
    background: var(--cream-white);
}

.avis-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.avis-card {
    background: var(--white);
    padding: 40px;
    border: 1px solid var(--nude-medium);
    transition: var(--transition);
}

.avis-card:hover {
    border-color: var(--beige);
    box-shadow: var(--shadow-soft);
}

.avis-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.avis-stars svg {
    width: 16px;
    height: 16px;
    fill: var(--beige);
}

.avis-text {
    font-family: var(--font-serif);
    font-size: 1.0625rem;
    font-style: italic;
    color: var(--charcoal);
    line-height: 1.8;
    margin-bottom: 24px;
}

.avis-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid var(--nude-light);
}

.avis-avatar {
    width: 48px;
    height: 48px;
    background: var(--nude-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.avis-avatar svg {
    width: 24px;
    height: 24px;
    stroke: var(--brown-light);
}

.avis-name {
    font-weight: 600;
    color: var(--black);
    margin-bottom: 2px;
}

.avis-date {
    font-size: 0.8125rem;
    color: var(--warm-gray);
}

.avis-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 40px;
    background: var(--charcoal);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.8125rem;
    color: var(--nude-dark);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* ===================================
   RESERVATION - CONTACT FORM
   =================================== */

.reservation {
    background: var(--soft-white);
}

.reservation-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
}

.reservation-info h2 {
    margin-bottom: 16px;
}

.reservation-description {
    font-size: 1rem;
    color: var(--warm-gray);
    margin-bottom: 40px;
    line-height: 1.8;
}

.info-block {
    margin-bottom: 30px;
    padding: 30px;
    background: var(--white);
    border: 1px solid var(--nude-medium);
}

.info-block h3 {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-style: italic;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--nude-light);
}

.horaires-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.horaire-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.9375rem;
}

.horaire-item span:first-child {
    color: var(--charcoal);
    font-weight: 500;
}

.horaire-item span:last-child {
    color: var(--warm-gray);
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.9375rem;
    color: var(--charcoal);
}

.contact-item svg {
    width: 18px;
    height: 18px;
    stroke: var(--brown-light);
    flex-shrink: 0;
}

.reservation-form-wrapper {
    background: var(--white);
    padding: 50px;
    border: 1px solid var(--nude-medium);
}

.reservation-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.form-group label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--charcoal);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    border: 1px solid var(--nude-medium);
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--charcoal);
    background: var(--cream-white);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--brown-light);
    background: var(--white);
}

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

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

.btn-submit {
    margin-top: 10px;
}

.btn-submit svg {
    width: 18px;
    height: 18px;
}

.form-note {
    font-size: 0.8125rem;
    color: var(--warm-gray);
    text-align: center;
    margin-top: 16px;
}

/* ===================================
   FOOTER - MINIMAL ELEGANT
   =================================== */

.footer {
    background: var(--charcoal);
    color: var(--white);
    padding: 70px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-family: var(--font-serif);
    font-size: 1.375rem;
    font-style: italic;
    margin-bottom: 16px;
    color: var(--white);
}

.footer-description {
    font-size: 0.9375rem;
    color: var(--nude-dark);
    line-height: 1.7;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--white);
}

.social-link svg {
    width: 18px;
    height: 18px;
    fill: var(--white);
    transition: var(--transition);
}

.social-link:hover svg {
    fill: var(--charcoal);
}

.footer-subtitle {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--nude-dark);
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.9375rem;
    color: var(--nude-dark);
}

.footer-links a:hover {
    color: var(--white);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 0.9375rem;
    color: var(--nude-dark);
}

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

.footer-bottom p {
    font-size: 0.875rem;
    color: var(--nude-dark);
    margin-bottom: 12px;
}

.footer-legal {
    display: flex;
    justify-content: center;
    gap: 24px;
}

.footer-legal a {
    font-size: 0.8125rem;
    color: var(--nude-dark);
}

.footer-legal a:hover {
    color: var(--white);
}

.footer-legal span {
    color: rgba(255, 255, 255, 0.3);
}

/* ===================================
   ANIMATIONS
   =================================== */

.fade-in {
    animation: fadeIn 0.8s ease-out;
}

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

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

@media (max-width: 1024px) {
    .prestations-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .galerie-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .avis-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .reservation-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--cream-white);
        flex-direction: column;
        align-items: flex-start;
        padding: 40px;
        gap: 24px;
        transition: left 0.3s ease;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .btn {
        width: 100%;
    }

    .prestations-grid,
    .tarifs-grid,
    .avis-grid,
    .galerie-grid {
        grid-template-columns: 1fr;
    }

    .avis-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

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

    .footer-legal {
        flex-direction: column;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    section {
        padding: 70px 0;
    }

    h1 {
        font-size: 2.25rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .prestation-card,
    .tarif-category,
    .avis-card,
    .info-block,
    .reservation-form-wrapper {
        padding: 30px 24px;
    }

    .stat-number {
        font-size: 2rem;
    }
}

/* Images fixes */
.spa-img, .service-card img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 20px;
}

.hero-visual img, .about-visual img {
    width: 100%;
    max-width: 550px;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: 25px;
}
