:root {
    --color-primary: #DFA896;
    /* Terracotta/Peach from screenshot */
    --color-secondary: #000000;
    /* Black for contrast */
    --color-text: #1A1A1A;
    --color-bg-light: #F9F5F2;
    /* Warm off-white */
    --color-accent: #C8A278;
    /* Goldish/Sand */
    --color-white: #FFFFFF;

    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
    --font-script: 'Great Vibes', cursive;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--color-bg-light);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--color-secondary);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

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

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--color-text);
    color: var(--color-primary);
    border: 2px solid var(--color-text);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--color-text);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
    background-color: var(--color-primary);
    color: var(--color-white);
    border: 2px solid var(--color-primary);
    /* Add border for layout consistency */
}

.btn-secondary:hover {
    background-color: #cd8b76;
    border-color: #cd8b76;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(205, 139, 118, 0.3);
}

/* Header */
#header {
    width: 100%;
    padding: 5px 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background-color: rgba(249, 245, 242, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: padding 0.3s ease;
}

#header.scrolled {
    padding: 5px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-script);
    font-size: 2.5rem;
    color: var(--color-secondary);
    display: flex;
    align-items: center;
    /* Align text and logo */
    gap: 10px;
}

.logo-icon {
    height: 40px;
    width: auto;
    /* Inline styles in HTML handle size/margin, but good to have class hook */
}

.desktop-nav ul {
    display: flex;
    gap: 30px;
    align-items: center;
}

.desktop-nav a {
    font-size: 1rem;
    font-weight: 500;
    position: relative;
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -5px;
    left: 0;
    background-color: var(--color-accent);
    transition: width 0.3s ease;
}

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

.btn-nav {
    border: 1px solid var(--color-secondary);
    padding: 8px 20px;
    border-radius: 20px;
}

.btn-nav:hover {
    background-color: var(--color-secondary);
    color: var(--color-white) !important;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--color-secondary);
    transition: all 0.3s;
}

.mobile-nav {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: var(--color-bg-light);
    padding: 20px;
    transform: translateY(-150%);
    transition: transform 0.4s ease;
    z-index: 999;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-nav.active {
    transform: translateY(0);
}

.mobile-nav li {
    margin: 20px 0;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    /* V1 Background Style */
    background: linear-gradient(rgba(255, 255, 255, 0.65), rgba(255, 255, 255, 0.65)), url('../images/hero-bg.png') center/cover no-repeat;
}

/* .hero-bg was empty and removed */

.hero-content {
    z-index: 2;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Title Image Style */
.hero-title-container {
    margin-bottom: 10px;
}

.hero-title-img {
    max-width: 100%;
    width: 500px;
    height: auto;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.1));
}

.hero-content h1 {
    font-family: var(--font-script);
    font-size: 5rem;
    margin-bottom: 10px;
    color: var(--color-secondary);
}

.hero-content h2 {
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 5px;
    color: var(--color-secondary);
}

.hero-content h3 {
    font-size: 1.2rem;
    font-weight: 300;
    text-transform: uppercase;
    margin-bottom: 30px;
    color: var(--color-secondary);
}

.hero-content p {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 30px;
    /* Ensure dark color */
    color: var(--color-text);
}

.subtitle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
    font-size: 1.5rem;
    color: var(--color-secondary);
}

.decorative-line {
    height: 1px;
    width: 50px;
    background-color: var(--color-secondary);
}

/* Animations */
.fade-in {
    opacity: 0;
    animation: fadeIn 1s forwards;
}

.fade-in-delay-1 {
    opacity: 0;
    animation: fadeIn 1s 0.2s forwards;
}

.fade-in-delay-2 {
    opacity: 0;
    animation: fadeIn 1s 0.4s forwards;
}

.fade-in-delay-3 {
    opacity: 0;
    animation: fadeIn 1s 0.6s forwards;
}

.fade-in-delay-4 {
    opacity: 0;
    animation: fadeIn 1s 0.8s forwards;
}

.fade-in-delay-5 {
    opacity: 0;
    animation: fadeIn 1s 1s forwards;
}

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

    from {
        opacity: 0;
        transform: translateY(20px);
    }
}

/* About Section */
.about-section {
    padding: 100px 0;
    background-color: var(--color-white);
}

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

.about-image {
    position: relative;
}

.image-frame {
    width: 80%;
    max-width: 400px;
    /* Limit width */
    aspect-ratio: 3/4;
    margin: 0 auto;
    border: 1px solid var(--color-accent);
    padding: 15px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    /* Add shadow for depth */
}

/* ... existing ::before code ... */

.about-text h2 {
    font-family: var(--font-script);
    font-size: 3rem;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.about-text h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--color-secondary);
    /* Ensure title is visible */
}

.about-text .highlight {
    font-weight: 600;
    color: var(--color-accent);
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--color-text);
    /* Dark text for readability */
    text-align: justify;
}

.about-text .tagline {
    font-style: italic;
    color: var(--color-accent);
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.tarif-info {
    font-size: 1rem;
    color: var(--color-text);
    margin-top: 10px;
}

.tarif-info strong {
    color: var(--color-primary);
    font-size: 1.2rem;
}

.calin-tagline {
    margin-top: 20px;
    font-size: 1.2rem;
    color: var(--color-accent);
}

/* Services */
.services-section {
    padding: 100px 0;
    background-color: var(--color-bg-light);
}

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

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.section-header p {
    font-family: var(--font-script);
    font-size: 2rem;
    color: var(--color-primary);
    font-weight: 500;
    /* Add weight */
}

/* New Service Layout */
.services-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.service-block {
    background: var(--color-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-left: 5px solid var(--color-primary);
    position: relative;
    top: 0;
}

.service-block:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-header-row {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.service-header-row .service-icon {
    font-size: 2.5rem;
    margin-bottom: 0;
    /* Override previous grid style */
    color: var(--color-primary);
    width: 60px;
    text-align: center;
}

.service-header-row h3 {
    font-size: 1.8rem;
    margin-bottom: 0;
    color: var(--color-secondary);
}

.service-content p {
    color: #666;
    font-size: 1rem;
    margin-bottom: 15px;
}

.service-note {
    font-weight: 500;
    color: var(--color-accent) !important;
    background-color: #fff9f5;
    padding: 10px;
    border-radius: 5px;
    display: inline-block;
}

.service-card.large-card {
    text-align: left;
}

.service-card.large-card .service-icon {
    text-align: center;
}

.service-card.large-card h3 {
    text-align: center;
}

.service-list {
    margin: 20px 0;
    padding-left: 0;
}

.service-list li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
    text-align: left;
    font-size: 0.95rem;
    color: #666;
}

.service-list li::before {
    content: "•";
    color: var(--color-primary);
    position: absolute;
    left: 0;
    top: 0;
}

.disclaimer {
    font-size: 0.85rem !important;
    font-style: italic;
    margin-top: 20px;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.price-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    vertical-align: middle;
}

/* Câlin Section */
.calin-section {
    padding: 100px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('../images/calin-bg.png') center/cover no-repeat;
    background-color: #DFA896;
    /* Fallback */
    display: flex;
    align-items: center;
    justify-content: center;
}

.calin-card {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 60px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 20px;
    color: var(--color-white);
    max-width: 800px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.calin-card h2 {
    color: var(--color-white);
    font-family: var(--font-script);
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.calin-card blockquote {
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.8;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    /* Improve readability */
}

.moth-icon-decoration {
    font-size: 2rem;
    margin: 20px 0;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background-color: var(--color-white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    font-size: 1.1rem;
    padding: 10px 15px;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.contact-item:hover {
    background-color: #fff0eb;
    /* Very soft pink/peach */
}

.contact-item .icon {
    color: var(--color-primary);
    font-size: 1.4rem;
    min-width: 40px;
    height: 40px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-white);
    border-radius: 50%;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    color: var(--color-white);
    font-size: 1.5rem;
    background: #d6249f;
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
}

.contact-form-container {
    background-color: var(--color-bg-light);
    padding: 40px;
    border-radius: 10px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: var(--font-body);
    font-size: 1rem;
    background-color: var(--color-white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);

    .calin-card h2 {
        font-size: 2.5rem;
    }

    .calin-card blockquote {
        font-size: 1.2rem;
    }
}

/* Reviews Section */
.reviews-section {
    padding: 100px 0;
    background-color: var(--color-bg-light);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* Force 2 columns */
    gap: 30px;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

.reviews-summary {
    margin-top: 15px;
    font-size: 1.2rem;
    color: var(--color-text);
}

.rating-large {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--color-primary);
}

.rating-stars {
    display: inline-block;
    color: #FFD700;
    margin: 0 10px;
}

.rating-count {
    color: #666;
    font-size: 1rem;
}

.review-card {
    background: var(--color-white);
    padding: 30px;
    border-radius: 12px;
    /* Consistent radius */
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    /* Ensure equal height influence in grid */
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.review-author {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--color-primary);
}

.review-stars {
    color: #FFD700;
    font-size: 0.9rem;
}

.review-text {
    font-style: italic;
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
}

.reviews-more {
    text-align: center;
    margin-top: 20px;
}

/* Footer */
footer {
    background-color: var(--color-secondary);
    color: var(--color-white);
    padding: 50px 0;
    text-align: center;
}

.footer-logo {
    font-family: var(--font-script);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.legal-links {
    margin-top: 20px;
}

.legal-links a {
    color: #888;
    font-size: 0.9rem;
}

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

/* Responsive */
@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero-content h1 {
        font-size: 3.5rem;
    }

    .hero-content h2 {
        font-size: 1.5rem;
    }

    .about-grid,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .image-frame {
        width: 100%;
    }

    .calin-card {
        padding: 30px;
    }

    .calin-card h2 {
        font-size: 2.5rem;
    }

    .calin-card blockquote {
        font-size: 1.2rem;
    }
}