:root {
    --beige: #faf4ec;
    --blue: #385bff;
    --orange: #f36700;
    --orange-rgb: 243, 103, 0;
    --grey: #706969;
    --dark: #000000;
    --white: #ffffff;
    --soft-shadow: rgba(56, 91, 255, 0.08);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 130px;
}

iconify-icon {
    display: inline-block;
    width: 1em;
    height: 1em;
}
body {
    font-family: 'Cooper Hewitt', sans-serif;
    color: var(--dark);
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
}

/* Wave background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/Vague_blanche.jpeg');
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
    /* opacity: 0.3; */
    z-index: -1;
    pointer-events: none;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(250, 244, 236, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(56, 91, 255, 0.1);
    border-bottom: 2px solid rgba(56, 91, 255, 0.1);
}

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

.nav-logo {
    height: 60px;
    width: auto;
    cursor: pointer;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    list-style: none;
}
.nav-menu li.link {
    padding-top: 0.4rem;
}
.nav-menu li.link > a {
    color: var(--grey);
    text-decoration: none;
    font-weight: 707;
    transition: color 0.3s ease;
    font-size: 1rem;
    transition: 0.4s;
    position: relative;
}

.nav-menu li.link > a:hover {
    color: var(--blue);
}

.nav-menu li.link > a::before {
    content: "";
    position: absolute;
    width: 0;
    height: 4px;
    background-color: var(--blue);
    bottom: -5px;
    left: 0;
    transition: width 0.4s;
}

.nav-menu li.link > a:hover::before {
    width: 100%;
}

.nav-cta {
    text-decoration: none;
    font-weight: 707;
    padding: 0.8rem 1.8rem;
    padding-top: 1rem;
    background: var(--blue);
    color: var(--white) !important;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.nav-cta iconify-icon {
    font-size: 1.4rem;
    padding-top: 0.3rem;
    margin-right: 0.4rem;
    margin-left: -0.4rem;
}

.nav-cta:hover {
    background: #2a47cc;
    transform: translateY(-2px);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--grey);
    cursor: pointer;
}

/* Header */
header {
    max-width: 1150px;
    margin: auto;
    position: relative;
    padding: 0 2rem;
    text-align: center;
    background-color: rgba(var(--orange-rgb), 0.1);
    animation: slideDown 0.8s ease-out;
    margin-top: 80px;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo {
    display: flex;
    align-items: start;
    justify-content: center;
    font-family: 'Glacial Indifference', serif;
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: 2px;
    padding-top: 1rem;
}
.logo img {
    max-height: 4rem;
}

.subtitle {
    font-family: 'Glacial Indifference', serif;
    font-size: 1.5rem;
    color: var(--blue);
    margin-top: -20px;
    font-weight: 400;
}

.tagline {
    font-family: 'Glacial Indifference', serif;
    font-size: 1rem;
    color: var(--blue);
}

.soma-badge {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
    color: var(--grey);
    font-weight: 705;
}

/* Main Container */
.container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
    z-index: 1;
}

/* Sections */
section {
    margin-top: 0;
    margin-bottom: 5rem;
    animation: fadeInUp 0.8s ease-out;
    animation-fill-mode: both;
}

section:nth-child(2) { animation-delay: 0.2s; }
section:nth-child(3) { animation-delay: 0.4s; }
section:nth-child(4) { animation-delay: 0.6s; }

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

h2 {
    font-family: 'Glacial Indifference', serif;
    font-size: 2.5rem;
    color: var(--blue);
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60%;
    height: 3px;
    background: var(--blue);
    border-radius: 3px;
}

h3 {
    font-family: 'Glacial Indifference', serif;
    font-size: 1.8rem;
    color: var(--blue);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

h4, h5, h6 {
    font-family: 'Glacial Indifference', serif;
}

p {
    margin-bottom: 1.5rem;
    font-size: 1.15rem;
    font-weight: 703;
    line-height: 1.8;
}

strong {
    font-weight: 707;
}

.portrait-photo {
    position: relative;
    max-width: 500px;
    margin: auto;
    box-shadow: 0 10px 40px var(--soft-shadow);
    margin-bottom: -3rem;
    z-index: 200;
}

.portrait-photo img {
    width: 100%;
    height: auto;
    display: block;
}

.presentation-content {
    background: var(--white);
    padding: 3rem;
    padding-top: 6rem;
    box-shadow: 0 10px 40px var(--soft-shadow);
    position: relative;
    overflow: hidden;
}

/* Consultation Section */

.consultation-note {
    /* background-color: rgba(var(--orange-rgb), 0.1); */
    padding: 1rem;
    margin-top: 2rem;
    font-size: 1.2rem;
    font-weight: 706;
    text-align: right;
    color: var(--grey);
}

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

.consultation-card {
    background: var(--white);
    padding: 2.5rem;
    box-shadow: 0 5px 20px var(--soft-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.consultation-objectives {
    margin-top: 2rem;
}

.consultation-img{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 250px;
    margin-bottom: 1rem;
}

.consultation-img img {
    width: 100%;
    max-width: 400px;
    height: auto;
    max-height: 260px;
}

.consultation-card h3 {
    font-family: 'Glacial Indifference', serif;
    font-size: 1.5rem;
    color: var(--orange);
    margin-top: 0;
    margin-bottom: 0;
}

.specialties-list {
    gap: 0.8rem;
    padding: 0 2.5rem;
}

.specialty-tag {
    /* display: block; */
    color: var(--grey);
    font-size: 1.2rem;
    font-weight: 707;
    transition: all 0.3s ease;
}

/* Pricing Section */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.price-card {
    background-color: var(--white);
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 5px 20px var(--soft-shadow);
}

.price-type {
    font-family: 'Glacial Indifference', serif;
    font-size: 1.3rem;
    color: var(--orange);
    margin-bottom: 1rem;
    font-weight: 600;
}

.price-type iconify-icon {
    padding-top: 4px;
    margin-right: 2px;
    font-size: 1.4rem;
}

.price {
    font-size: 3rem;
    font-weight: 703;
    color: var(--grey);
    margin: 1rem 0;
}

.price-duration {
    font-size: 0.95rem;
    opacity: 0.8;
    margin-bottom: 1rem;
}

.payment-note {
    background-color: rgba(var(--orange-rgb), 0.1);
    padding: 1.5rem;
    margin-top: 2rem;
    font-size: 0.95rem;
}

/* Contact Section */
.contact-info {
    background: var(--white);
    padding: 3rem;
    box-shadow: 0 10px 40px var(--soft-shadow);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-top: 1rem;
}

.contact-details h3 {
    font-family: 'Glacial Indifference', serif;
    font-size: 1.2rem;
    color: var(--orange);
    margin-bottom: 0.5rem;
    margin-top: 0;
}

.contact-details h3 iconify-icon {
    padding-top: 4px;
    margin-right: 2px;
    font-size: 1.4rem;
}

.contact-details p {
    padding-left: 1.9rem;
    margin: 0;
    line-height: 1.6;
}

.contact-details a {
    color: var(--grey);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--blue);
}

.cabinet-pictures {
    margin-top: 1rem;
}

/* CTA Button */
.nav-cta {
    text-decoration: none;
    font-weight: 707;
    padding: 0.8rem 1.8rem;
    padding-top: 1rem;
    background: var(--blue);
    color: var(--white) !important;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: #2a47cc;
    transform: translateY(-2px);
}
.cta-button {
    display: inline-block;
    margin-top: 2rem;
    padding: 0.8rem 1.8rem;
    background: var(--blue);
    color: var(--white);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 707;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #2a47cc;
    transform: translateY(-2px);
}

.cta-button iconify-icon {
    font-size: 1.4rem;
    padding-top: 0.3rem;
    margin-right: 0.4rem;
    margin-left: -0.4rem;
}

/* Footer */
footer {
    /* background: linear-gradient(135deg, rgba(56, 91, 255, 0.05) 0%, rgba(250, 244, 236, 0.8) 100%); */
    padding: 1rem 0.4rem;
    text-align: center;
    border-top: 2px solid rgba(56, 91, 255, 0.2);
}
footer p {
    margin-top: 1rem;
    opacity: 0.7;
    font-size: 1rem;
}

.google-review-note {
    margin-top: 1.4rem;
    font-size: 1.05rem;
    font-weight: 705;
    color: var(--grey);
    margin-bottom: 1rem;
}

.google-review-note a {
    color: var(--blue);
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.google-review-note a:hover {
    opacity: 0.7;
}

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

.gallery-item {
    position: relative;
    height: 400px;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 40px var(--soft-shadow);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: var(--white);
    padding: 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s;
    font-weight: 707;
}

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

/* Responsive */
@media (max-width: 968px) {
    .portrait-photo {
        max-width: 400px;
    }
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(250, 244, 236, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        padding: 3rem 2rem;
        gap: 2rem;
        transition: left 0.3s ease;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .mobile-menu-toggle {
        display: block;
        font-size: 2rem;
        margin-top: 0.4rem;
    }
}

@media (max-width: 768px) {
    .portrait-photo {
        max-width: 300px;
    }
    .logo {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1.3rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    /* .presentation-content,
    .contact-info {
        padding: 2rem;
    } */
    
    .price {
        font-size: 2.5rem;
    }
    
    .nav-logo {
        height: 50px;
    }
}