/* Modern Design System for Tadelakt Marrakech - Elegant Dark Theme */
/* Fonts loaded via <link> in base.blade.php */

:root {
    /* Colors */
    --color-primary: #792c1f;
    /* Terracotta */
    --color-secondary: #D4A373;
    /* Sand/Gold */
    --color-accent: #1A1A1A;
    /* Darker accent */
    --color-text: #B8B0A8;
    /* Off-white text */
    --color-text-light: #7A7570;
    --color-bg: #0F0F0F;
    /* Elegant Black */
    --color-surface: #1E1E1E;
    /* Slightly lighter for cards */
    --color-white: #D6CFC8;

    /* Typography */
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Jost', 'Helvetica Neue', sans-serif;

    /* Spacing */
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 2rem;
    --spacing-xl: 4rem;

    /* Layout */
    --container-width: 1200px;
    --header-height: 95px;
    --hero-overlay: linear-gradient(120deg, rgba(5, 5, 5, 0.78) 0%, rgba(20, 12, 8, 0.62) 45%, rgba(121, 44, 31, 0.45) 100%);
    --cta-gradient: linear-gradient(135deg, #9d3f2f 0%, #792c1f 55%, #5a1e15 100%);
    --cta-shadow: 0 14px 30px rgba(121, 44, 31, 0.38);
}

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

body {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.75;
    /* Background Image with Overlay */
    background-image: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)), url('../images/tadelakt-marocchino.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
}

p {
    font-family: var(--font-body);
    font-weight: 400;
    font-style: normal;
    font-size: 1rem;
    text-align: justify;
}

p strong,
p b,
p em,
p i,
div strong,
div b,
div em,
div i {
    font-weight: 400;
    font-style: normal;
}

h1,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    color: var(--color-primary);
    margin-bottom: var(--spacing-md);
}

h3 {
    font-family: var(--font-heading);
    font-weight: 400;
    color: #D4A373;
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    margin-bottom: var(--spacing-md);
}

h2 {
    font-family: var(--font-heading);
    font-weight: 400;
    color: #D4A373;
    margin-bottom: var(--spacing-md);
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Container */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Header */
.site-header {
    background-color: rgba(15, 15, 15, 0.95);
    /* Semi-transparent black */
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--header-height);
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

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

.logo img {
    height: 64px;
}

/* Navigation */
.logo,
.main-nav {
    display: flex;
    align-items: center;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: clamp(1rem, 1.8vw, 1.6rem);
}

.main-nav a {
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    line-height: 1.35;
    color: var(--color-text);
}

.main-nav a:hover {
    color: #BF871A;
}

.main-nav li.current a {
    color: #BF871A;
    border-bottom: 2px solid #BF871A;
    padding-bottom: 5px;
}

.language-dropdown {
    position: relative;
}

.nav-language {
    display: flex;
    align-items: center;
}

.language-trigger {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    min-width: 84px;
    padding: 0.38rem 0.58rem;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--color-text);
    background: rgba(13, 13, 13, 0.92);
    border: 1px solid rgba(212, 163, 115, 0.55);
    border-radius: 10px;
    cursor: pointer;
}

.language-trigger:hover {
    border-color: #BF871A;
}

.language-trigger:focus-visible {
    outline: 2px solid #d4a373;
    outline-offset: 2px;
}

.language-caret {
    font-size: 0.7rem;
    opacity: 0.85;
}

.language-flag-icon {
    width: 18px;
    height: 12px;
    object-fit: cover;
    border-radius: 2px;
}

.language-menu {
    position: absolute;
    top: calc(100% + 0.4rem);
    right: 0;
    min-width: 164px;
    padding: 0.3rem;
    margin: 0;
    list-style: none;
    background: rgba(15, 15, 15, 0.96);
    border: 1px solid rgba(212, 163, 115, 0.45);
    border-radius: 8px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.45);
    display: none !important;
    flex-direction: column;
    gap: 0.2rem;
    z-index: 1200;
}

.language-dropdown.open .language-menu {
    display: flex !important;
}

.main-nav .language-menu li {
    border-bottom: none;
    padding-bottom: 0;
    width: 100%;
}

.language-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.42rem 0.5rem;
    border-radius: 6px;
    color: var(--color-text);
    text-transform: none;
    font-size: 0.85rem;
    letter-spacing: 0.02em;
}

.language-item:hover,
.language-item.active {
    background: rgba(121, 44, 31, 0.42);
}

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

/* Hero Section */
.hero {
    position: relative;
    height: 60vh;
    min-height: 460px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-white);
    overflow: hidden;
    isolation: isolate;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--hero-overlay);
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(1100px 520px at 12% 8%, rgba(212, 163, 115, 0.14), transparent 65%),
        radial-gradient(900px 460px at 88% 14%, rgba(121, 44, 31, 0.22), transparent 70%);
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(1080px, calc(100% - 1.5rem));
    padding: 1.7rem 2.4rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 24px;
    background: linear-gradient(120deg, rgba(14, 14, 14, 0.58), rgba(14, 14, 14, 0.16));
    backdrop-filter: blur(5px);
    box-shadow: 0 24px 65px rgba(0, 0, 0, 0.48);
}

.hero h1 {
    font-size: clamp(1.9rem, 3.8vw, 3.3rem);
    font-weight: 300;
    color: var(--color-white);
    margin-bottom: var(--spacing-md);
    line-height: 1.06;
    letter-spacing: 0.05em;
    text-shadow: 0 3px 24px rgba(0, 0, 0, 0.72);
    animation: heroRise 0.9s ease-out both;
}

.hero p {
    font-size: clamp(1.05rem, 1.85vw, 1.3rem);
    margin-bottom: 2rem;
    text-align: center;
    color: #f3ece6;
    animation: heroRise 1.1s ease-out both;
    animation-delay: 0.08s;
}

.btn {
    display: inline-block;
    padding: 0.9rem 1.7rem;
    background: var(--cta-gradient);
    color: var(--color-white);
    border-radius: 999px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--cta-shadow);
    position: relative;
    overflow: hidden;
    transition: transform 0.28s ease, box-shadow 0.28s ease, filter 0.28s ease;
}

.hero .btn {
    animation: heroRise 1.25s ease-out both;
    animation-delay: 0.16s;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0));
    transform: translateX(-115%);
    transition: transform 0.45s ease;
}

.btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.07);
    box-shadow: 0 18px 38px rgba(121, 44, 31, 0.48);
}

.btn:hover::before {
    transform: translateX(0);
}

.btn:active {
    transform: translateY(0);
    box-shadow: 0 8px 18px rgba(121, 44, 31, 0.35);
}

.btn:focus-visible {
    outline: 2px solid #d4a373;
    outline-offset: 3px;
}

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

/* Sections */
.section {
    padding: var(--spacing-xl) 0;
}

.section-title {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.section-title h2 {
    font-size: 2.5rem;
    color: #D4A373;
}

.section-header-title {
    font-size: clamp(2.2rem, 3.8vw, 3rem);
    color: #D4A373;
}

.section-subheader-title {
    font-size: clamp(1.45rem, 2.35vw, 1.95rem);
    color: #D4A373;
}

/* Grid Layouts */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

/* Cards */
.card {
    background: rgba(30, 30, 30, 0.8);
    /* Semi-transparent surface */
    backdrop-filter: blur(5px);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.card:hover {
    transform: translateY(-5px);
    border-color: var(--color-primary);
}

.card-image {
    height: 250px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card:hover .card-image img {
    transform: scale(1.1);
}

.card-content {
    padding: var(--spacing-md);
    text-align: center;
}

.card-title {
    font-size: 1.2rem;
    font-weight: bold;
    padding: var(--spacing-xl) 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Feature Cards (Zig-Zag Layout) */
.feature-card {
    background-color: rgba(0, 0, 0, 0.55);
    /* Dark background 55% */
    color: var(--color-text);
    /* Light text for readability */
    padding: var(--spacing-xl);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.feature-card.reverse {
    flex-direction: row-reverse;
}

.feature-card h3 {
    color: #D4A373;
    /* Gold */
    margin-top: 0;
    margin-bottom: var(--spacing-md);
}

.feature-card p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: justify;
}

.feature-text {
    flex: 1;
}

.feature-image {
    flex: 1;
    height: auto;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.feature-image img {
    width: 100%;
}

/* Masonry Gallery */
.masonry-gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(1rem, 2vw, 1.5rem);
    margin-top: 2.25rem;
}

.masonry-item {
    position: relative;
    overflow: hidden;
    min-height: 260px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(0, 0, 0, 0.48);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
    isolation: isolate;
}

.masonry-item img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 260px;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.masonry-item:hover img {
    transform: scale(1.04);
}

.masonry-item > div:last-child {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 1rem 1rem 0.95rem;
    background: linear-gradient(180deg, rgba(5, 5, 5, 0) 0%, rgba(5, 5, 5, 0.82) 55%, rgba(5, 5, 5, 0.94) 100%);
    color: #fff;
    text-align: center;
}

.masonry-item h4 {
    margin: 0;
    color: #fff;
    font-size: 1.02rem;
    line-height: 1.35;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.footer-links a {
    color: var(--color-secondary);
    margin: 0 var(--spacing-sm);
}

.social-icons {
    margin-top: var(--spacing-md);
}

.social-icons img {
    width: 30px;
    display: inline-block;
    margin: 0 var(--spacing-sm);
}

/* Responsive */
@media (max-width: 768px) {
    .main-nav {
        display: none;
        position: absolute;
        top: var(--header-height);
        left: 0;
        width: 100%;
        background: var(--color-surface);
        padding: var(--spacing-md);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    }

    .main-nav.active {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        gap: var(--spacing-md);
        text-align: center;
    }

    .main-nav li {
        border-bottom: 1px solid rgba(121, 44, 31, 0.3);
        padding-bottom: 10px;
        width: 100%;
    }

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

    .nav-language {
        width: 100%;
    }

    .language-trigger {
        width: 100%;
        justify-content: center;
    }

    .language-menu {
        width: 100%;
        right: auto;
        left: 0;
        position: static;
        margin-top: 0.35rem;
        display: none !important;
    }

    .language-dropdown.open .language-menu {
        display: flex !important;
    }

    .language-item {
        justify-content: center;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: clamp(1.65rem, 6.5vw, 2.15rem);
    }

    .section-header-title {
        font-size: 1.75rem;
    }

    .section-subheader-title {
        font-size: 1.3rem;
    }

    .hero {
        min-height: 500px;
        height: auto;
        padding: 1rem 0;
    }

    .hero-content {
        width: calc(100% - 1rem);
        margin: 0 auto;
        padding: 1.3rem 1.2rem 1.5rem;
        border-radius: 18px;
    }

    .hero .btn,
    .btn {
        width: 100%;
        max-width: 320px;
    }

    .feature-card,
    .feature-card.reverse {
        flex-direction: column;
        padding: var(--spacing-md);
    }

    .feature-image {
        height: auto;
        width: 100%;
    }

    .masonry-gallery {
        grid-template-columns: 1fr;
    }

    .masonry-item,
    .masonry-item img {
        min-height: 220px;
    }
}

/* Modern Contact Page Styles */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--spacing-xl);
    background: rgba(30, 30, 30, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-info-panel {
    background: linear-gradient(135deg, var(--color-primary), #5a1e15);
    padding: var(--spacing-xl);
    color: var(--color-white);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-info-panel h3,
.contact-info-panel h4 {
    color: var(--color-white);
    margin-bottom: var(--spacing-lg);
}

.contact-info-panel h3 {
    font-size: 2rem;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: var(--spacing-md);
    font-size: 1.1rem;
}

.info-item i {
    margin-right: var(--spacing-md);
    font-size: 1.5rem;
    opacity: 0.8;
}

.contact-form-panel {
    padding: var(--spacing-xl);
}

.form-group {
    position: relative;
    margin-bottom: var(--spacing-lg);
}

.form-control {
    width: 100%;
    padding: 1rem 0;
    font-size: 1rem;
    color: var(--color-text);
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    outline: none;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: var(--color-primary);
}

.form-label {
    position: absolute;
    top: 1rem;
    left: 0;
    font-size: 1rem;
    color: var(--color-text-light);
    pointer-events: none;
    transition: all 0.3s ease;
}

.form-control:focus~.form-label,
.form-control:valid~.form-label {
    top: -0.5rem;
    font-size: 0.8rem;
    color: var(--color-primary);
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: var(--cta-gradient);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    letter-spacing: 0.08em;
    box-shadow: var(--cta-shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    filter: brightness(1.06);
    box-shadow: 0 16px 32px rgba(121, 44, 31, 0.42);
}

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

    .contact-info-panel,
    .contact-form-panel {
        padding: var(--spacing-md);
    }
}

/* Footer Styles */
.site-footer {
    background-color: #000;
    padding: 2rem 0 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #c9b896;
    font-family: var(--font-body);
    backdrop-filter: blur(10px);
}

.cookie-banner {
    position: fixed;
    left: 50%;
    bottom: 1rem;
    transform: translateX(-50%);
    width: min(1000px, calc(100% - 1.2rem));
    z-index: 2100;
    padding: 0.7rem 0.9rem;
    border-radius: 12px;
    border: 1px solid rgba(212, 163, 115, 0.45);
    background: linear-gradient(145deg, rgba(8, 8, 8, 0.97), rgba(20, 14, 11, 0.94));
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.48);
    text-align: center;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.cookie-banner.is-hiding {
    opacity: 0;
    transform: translateX(-50%) translateY(8px);
}

.cookie-banner-text {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--color-text);
    text-align: center;
}

.cookie-banner-actions {
    margin-top: 0.45rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    flex-wrap: wrap;
}

.cookie-banner-link {
    color: var(--color-secondary);
    font-weight: 700;
    text-decoration: underline;
}

.cookie-banner-link:hover {
    color: #edd0b1;
}

.cookie-banner-btn {
    border: 1px solid rgba(212, 163, 115, 0.45);
    border-radius: 999px;
    background: var(--cta-gradient);
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    padding: 0.42rem 1rem;
    cursor: pointer;
    transition: transform 0.2s ease, filter 0.2s ease;
}

.cookie-banner-btn:hover {
    transform: translateY(-1px);
    filter: brightness(1.06);
}

.cookie-banner-btn:focus-visible,
.cookie-banner-link:focus-visible {
    outline: 2px solid var(--color-secondary);
    outline-offset: 2px;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-bottom p {
    text-align: left;
    color: #c9b896;
    margin: 0;
}

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

.footer-col h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    color: var(--color-secondary);
    font-weight: 500;
    text-align: left;
}

.footer-col p {
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #ccc;
    text-align: left;
}

.footer-col a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--color-secondary);
}

/* Instagram Section */
.instagram-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.instagram-header span {
    font-weight: 700;
    font-size: 1rem;
    color: var(--color-text);
}

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

.instagram-grid img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 4px;
    transition: transform 0.3s ease;
}

.instagram-grid img:hover {
    transform: scale(1.05);
}

/* Edit Icon Button - Premium & Subtle */
.btn-edit-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 90;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background-color: var(--color-secondary);
    color: var(--color-bg);
    border: 2px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.btn-edit-icon:hover {
    transform: translateY(-2px);
    background-color: #fff;
    color: var(--color-secondary);
    border-color: var(--color-secondary);
    box-shadow: 0 6px 15px rgba(0,0,0,0.5);
}

.btn-edit-icon svg {
    width: 16px;
    height: 16px;
    min-width: 16px;
    min-height: 16px;
    flex-shrink: 0;
}

.feature-card p {
    color: rgb(225 214 214 / 98%);
    font-size: 1em;
    line-height: 2;
    text-align: justify;
    font-weight: 300;
    /* Rend le texte nettement plus fin */
    font-style: italic;
    /* Garde l'effet penché */
    font-family: 'Lora', Georgia, serif;
    /* Exemple de police élégante */
    letter-spacing: normal;
    /* Pas d'espacement des lettres supplémentaire. */
}

.main-nav ul li a {
    color: rgb(225 214 214 / 98%);
    font-size: 1em;
    font-weight: 300;
    /* Rend le texte nettement plus fin */
    font-style: italic;
    /* Garde l'effet penché */
    font-family: 'Lora', Georgia, serif;
    /* Exemple de police élégante */
    letter-spacing: normal;
    /* Pas d'espacement des lettres supplémentaire. */
}

.main-nav ul li a {
    text-transform: none !important;
}

.main-nav a,
.main-nav ul li a {
    font-style: normal !important;
}

.language-trigger,
.language-item {
    font-style: normal !important;
    font-weight: 400 !important;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-col {
        text-align: center;
        border-bottom: 1px solid rgba(121, 44, 31, 0.3);
        padding-bottom: 2rem;
    }

    .footer-col:last-child {
        border-bottom: none;
    }

    .footer-col h3,
    .footer-col p,
    .footer-links-list {
        text-align: center !important;
    }

    .instagram-header {
        justify-content: center;
    }

    /* Footer Mobile Adjustments */
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding-bottom: 2rem;
    }

    .footer-bottom p {
        text-align: center !important;
        margin-bottom: 0.5rem;
    }

    .footer-bottom-links {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }

    .footer-bottom-links a {
        margin-left: 0 !important;
    }

    .cookie-banner {
        width: calc(100% - 1rem);
        bottom: 0.6rem;
        border-radius: 10px;
        padding: 0.7rem;
    }

    .cookie-banner-text {
        font-size: 0.88rem;
    }

    .cookie-banner-actions {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    width: 55px;
    height: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    z-index: 9999;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 2px 2px 15px rgba(0,0,0,0.5);
    color: #fff;
}
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
        width: 50px;
        height: 50px;
        font-size: 26px;
    }
}