@import url(https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Montserrat:wght@300;400;500;600;700&display=swap);
/*
 * Etincelles - Main Stylesheet
 * CSS sÃ©mantique avec noms de classes lisibles
 */

/* ===================================
   CSS Variables (Design Tokens)
   =================================== */
:root {
    /* Couleurs principales */
    --navy: #2D2066;
    --navy-dark: #1E1656;
    --navy-light: #3D3080;
    --peach: #F5C89A;
    --peach-dark: #F2B872;
    --peach-light: #F8D8B5;
    --rose-pink: #F7A5C8;
    --rose-pink-dark: #F472B6;
    --rose-pink-light: #FBC8DC;
    --magenta: #E91E8C;
    --magenta-dark: #C91878;
    --magenta-light: #F54DA5;
    --lavender: #C4B0DB;
    --lavender-dark: #A890C9;
    --lavender-light: #DDD0EB;
    --periwinkle: #8B9FD4;
    --periwinkle-dark: #7082BF;
    --periwinkle-light: #AAB9E2;
    --cream: #FFF9F5;
    --cream-dark: #F5EDE6;
    --cream-light: #FFFFFF;

    /* Fonts */
    --font-display: 'Playfair Display', serif;
    --font-sans: 'Montserrat', sans-serif;

    /* Breakpoints reference: md=768px, lg=1024px */
}

/* ===================================
   Base Styles
   =================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background-color: var(--navy-dark);
    color: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
}

main {
    flex-grow: 1;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--navy-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--lavender);
    border-radius: 9999px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--navy);
}

::-moz-selection {
    background: var(--magenta-light);
    color: var(--navy-dark);
    -webkit-text-fill-color: var(--navy-dark);
}

::selection {
    background: var(--magenta-light);
    color: var(--navy-dark);
    -webkit-text-fill-color: var(--navy-dark);
}

/* ===================================
   Layout
   =================================== */
.container {
    width: 100%;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 1024px) {
    .container {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

.text-center {
    text-align: center;
}

/* ===================================
   Navbar
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 40;
    background: rgba(45, 32, 102, 0.3);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 5rem;
}

@media (min-width: 1024px) {
    .navbar-inner {
        height: 6rem;
    }
}

.nav-left,
.nav-right {
    display: none;
    align-items: center;
    gap: 2rem;
    flex: 1;
}

.nav-right {
    justify-content: flex-end;
}

@media (min-width: 1024px) {

    .nav-left,
    .nav-right {
        display: flex;
    }
}

.nav-link {
    position: relative;
    color: rgba(255, 249, 245, 0.8);
    font-family: var(--font-sans);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: color 0.3s;
    display: flex;
    align-items: center;
}

.nav-link:hover {
    color: var(--magenta);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--magenta);
    transition: width 0.3s ease-out;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link .dropdown-arrow {
    margin-left: 0.25rem;
    width: 1rem;
    height: 1rem;
    transition: transform 0.3s;
}

.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 0.5rem;
    width: 14rem;
    border-radius: 0.75rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    /* glass effect */
    background: rgba(35, 20, 110, 0.95);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(196, 176, 219, 0.2);
}

.dropdown-menu--grouped {
    width: 18rem;
}

/* Invisible bridge to prevent hover loss between nav-link and dropdown-menu */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -0.5rem;
    left: 0;
    width: 100%;
    height: 0.5rem;
}

.dropdown-menu-inner {
    padding: 0.5rem 0;
}

.dropdown-group-label {
    display: block;
    padding: 0.75rem 1.25rem 0.25rem 1.25rem;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(196, 176, 219, 0.7);
}

.dropdown-group-label:not(:first-child) {
    border-top: 1px solid rgba(196, 176, 219, 0.2);
    margin-top: 0.5rem;
    padding-top: 0.75rem;
}

.dropdown-item {
    display: block;
    padding: 0.4rem 1.25rem;
    font-size: 0.875rem;
    color: rgba(255, 249, 245, 0.9);
    transition: all 0.2s;
}

.dropdown-item--sub {
    position: relative;
    padding-left: 2rem;
}

.dropdown-item--sub::before {
    content: '›';
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    line-height: 1;
    color: rgba(196, 176, 219, 0.5);
    transition: color 0.2s;
    margin-top: -1px;
}

.dropdown-item:hover {
    color: var(--magenta);
    background: rgba(61, 48, 128, 0.3);
}

.dropdown-item--sub:hover::before {
    color: var(--magenta);
}

/* Logo */
.logo-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin: 0 2rem;
    position: relative;
    z-index: 50;
}

.logo-circle {
    transition: transform 0.3s;
    margin-top: 0.5rem;
    margin-bottom: -4.5rem;
}

.logo-wrapper:hover .logo-circle {
    transform: scale(1.05);
}

.logo-img {
    width: 17rem;
    -o-object-fit: contain;
    object-fit: contain;
    filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.05));
}

/* Mobile menu button (Burger → X) */
.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 2.75rem;
    height: 2.75rem;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    position: relative;
    gap: 5px;
}

@media (min-width: 1024px) {
    .mobile-menu-btn {
        display: none;
    }
}

.mobile-menu-btn span {
    display: block;
    width: 1.5rem;
    height: 2px;
    background: var(--cream);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.mobile-menu-btn:hover span {
    background: var(--magenta);
}

/* Burger → X animation */
.mobile-menu-btn.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-btn.is-active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-menu-btn.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ===================================
   MOBILE MENU — Fullscreen Overlay
   =================================== */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: linear-gradient(160deg, rgba(30, 22, 86, 0.98) 0%, rgba(45, 32, 102, 0.99) 50%, rgba(30, 22, 86, 0.98) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 6rem 1.5rem 3rem 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    overflow-y: auto;
}

@media (min-width: 1024px) {
    .mobile-menu {
        display: none !important;
    }
}

.mobile-menu.is-open {
    opacity: 1;
    visibility: visible;
}

/* Close button (top-right X) */
.mobile-menu-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    width: 3rem;
    height: 3rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 1002;
}

.mobile-menu-close svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--cream);
    transition: transform 0.3s ease;
}

.mobile-menu-close:hover {
    background: rgba(233, 30, 140, 0.2);
    border-color: rgba(233, 30, 140, 0.4);
}

.mobile-menu-close:hover svg {
    transform: rotate(90deg);
    color: var(--magenta);
}

/* Logo inside mobile menu */
.mobile-menu-logo {
    margin-bottom: 2.5rem;
}

.mobile-menu-logo img {
    height: 80px;
    width: auto;
    opacity: 0.9;
}

/* Navigation links container */
.mobile-menu-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    width: 100%;
    max-width: 320px;
}

/* Main links */
.mobile-menu-link {
    display: block;
    width: 100%;
    text-align: center;
    padding: 1rem 0;
    color: #fff;
    font-family: var(--font-display);
    font-size: 1.25rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(196, 176, 219, 0.12);
    transition: all 0.3s ease;
    position: relative;
}

.mobile-menu-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--magenta), var(--rose-pink));
    transition: width 0.3s ease;
}

.mobile-menu-link:hover {
    color: var(--magenta);
}

.mobile-menu-link:hover::before {
    width: 60%;
}

/* Sub-menu links */
.mobile-group-label {
    display: block;
    width: 100%;
    text-align: center;
    padding: 1.5rem 0 0.5rem 0;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(196, 176, 219, 0.7);
    cursor: default;
    border-bottom: 1px solid rgba(196, 176, 219, 0.15);
    margin-bottom: 0.5rem;
}

.mobile-submenu-link {
    display: block;
    width: 100%;
    text-align: center;
    padding: 0.6rem 0;
    font-size: 0.9rem;
    color: rgba(255, 249, 245, 0.55);
    transition: color 0.3s ease;
    letter-spacing: 0.03em;
}

.mobile-submenu-link:hover {
    color: var(--rose-pink);
}

.mobile-submenu-link--deep {
    font-size: 0.8rem;
    color: rgba(255, 249, 245, 0.4);
    padding: 0.4rem 0;
}

.mobile-submenu-link--deep:hover {
    color: var(--rose-pink);
}

/* Social links at bottom */
.mobile-menu-socials {
    display: flex;
    gap: 1.25rem;
    margin-top: 2.5rem;
}

.mobile-menu-socials .social-link {
    width: 2.75rem;
    height: 2.75rem;
    border: 1px solid rgba(196, 176, 219, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

.mobile-menu-socials .social-link:hover {
    background: rgba(233, 30, 140, 0.15);
    border-color: var(--magenta);
}

/* Animations for menu items appearing */
.mobile-menu.is-open .mobile-menu-logo {
    animation: mobileMenuFadeIn 0.4s 0.1s ease both;
}

.mobile-menu.is-open .mobile-menu-link:nth-child(1) {
    animation: mobileMenuFadeIn 0.4s 0.15s ease both;
}

.mobile-menu.is-open .mobile-menu-link:nth-child(2) {
    animation: mobileMenuFadeIn 0.4s 0.2s ease both;
}

.mobile-menu.is-open .mobile-menu-link:nth-child(3) {
    animation: mobileMenuFadeIn 0.4s 0.25s ease both;
}

.mobile-menu.is-open .mobile-menu-link:nth-child(4) {
    animation: mobileMenuFadeIn 0.4s 0.3s ease both;
}

.mobile-menu.is-open .mobile-menu-link:nth-child(5) {
    animation: mobileMenuFadeIn 0.4s 0.35s ease both;
}

.mobile-menu.is-open .mobile-menu-link:nth-child(6) {
    animation: mobileMenuFadeIn 0.4s 0.4s ease both;
}

.mobile-menu.is-open .mobile-menu-link:nth-child(7) {
    animation: mobileMenuFadeIn 0.4s 0.45s ease both;
}

.mobile-menu.is-open .mobile-menu-socials {
    animation: mobileMenuFadeIn 0.4s 0.5s ease both;
}

@keyframes mobileMenuFadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Navbar spacer */
.navbar-spacer {
    height: 5rem;
}

@media (min-width: 1024px) {
    .navbar-spacer {
        height: 6rem;
    }
}

/* ===================================
   Buttons
   =================================== */
.btn-primary {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: linear-gradient(to right, var(--magenta), var(--magenta-light));
    color: #fff;
    font-family: var(--font-sans);
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 9999px;
    border: 1px solid rgba(233, 30, 140, 0.3);
    transition: all 0.3s ease-out;
    cursor: pointer;
    font-size: 0.875rem;
}

.btn-primary:hover {
    background: rgb(255, 237, 237);
    color: var(--navy-dark);
    box-shadow: 0 10px 25px -5px rgba(255, 237, 237, 0.4);
}

.btn-primary:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(233, 30, 140, 0.5);
}

.btn-outline {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: transparent;
    color: var(--cream);
    font-family: var(--font-sans);
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: 2px solid var(--cream);
    border-radius: 9999px;
    transition: all 0.3s ease-out;
    cursor: pointer;
    font-size: 0.875rem;
}

.btn-outline:hover {
    background: var(--cream);
    color: var(--navy);
}

.btn-outline:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(255, 249, 245, 0.5);
}

.btn-full-width {
    width: 100%;
    text-align: center;
}

@media (min-width: 768px) {
    .btn-responsive-width {
        width: auto;
    }
}

/* ===================================
   Section Title
   =================================== */
.section-title {
    font-family: var(--font-display);
    font-size: 2.25rem;
    color: #fff;
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 3.75rem;
    }
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 6rem;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--magenta), transparent);
}

/* ===================================
   Shared Components
   =================================== */
.section-label {
    color: var(--magenta);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.875rem;
    font-family: var(--font-sans);
    margin-bottom: 1rem;
    display: block;
}

.text-gradient {
    background: linear-gradient(to right, var(--magenta), var(--magenta-light), var(--rose-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glass {
    background: rgba(45, 32, 102, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(196, 176, 219, 0.2);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(233, 30, 140, 0.5), transparent);
}

/* Card spectacle */
.card-spectacle {
    position: relative;
    overflow: hidden;
    background: rgba(45, 32, 102, 0.8);
    border: 1px solid rgba(196, 176, 219, 0.2);
    border-radius: 1rem;
    transition: all 0.5s ease-out;
    display: flex;
    flex-direction: column;
}

.card-spectacle:hover {
    border-color: rgba(233, 30, 140, 0.5);
    box-shadow: 0 25px 50px -12px rgba(233, 30, 140, 0.2);
    transform: translateY(-0.5rem);
}

.card-spectacle::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(45, 32, 102, 0.8), transparent, transparent);
    opacity: 0;
    transition: opacity 0.5s;
}

.card-spectacle:hover::before {
    opacity: 1;
}

.card-image {
    position: relative;
    overflow: hidden;
    padding: 0;
    aspect-ratio: 3.5/5;
}

.card-image-center {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon {
    font-size: 3.75rem;
    opacity: 0.5;
    transition: transform 0.5s;
}

.card-spectacle:hover .card-icon {
    transform: scale(1.25);
}

.card-body {
    padding: 1.5rem;
    position: relative;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.card-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 0.75rem;
    transition: color 0.3s;
    min-height: 4rem;
    display: flex;
    align-items: normal;
}

.card-spectacle:hover .card-title {
    color: var(--magenta);
}

.card-text {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    line-height: 1.625;
    margin-bottom: 1.5rem;
    flex: 1;
}

.card-link {
    display: inline-flex;
    align-items: center;
    color: var(--magenta);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: transform 0.3s;
    margin-top: auto;
}

.card-spectacle:hover .card-link {
    transform: translateX(0.5rem);
}

.card-link svg {
    margin-left: 0.5rem;
    width: 1rem;
    height: 1rem;
}

/* ===================================
   Page Header (shared across pages)
   =================================== */
.page-header {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .page-header {
        padding: 7rem 0;
    }
}

.page-header-bg {
    position: absolute;
    inset: 0;
}

.page-header-orb {
    position: absolute;
    border-radius: 9999px;
    filter: blur(48px);
}

.page-header-content {
    text-align: center;
    max-width: 48rem;
    margin: 0 auto;
}

.page-header-desc {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.75;
    font-size: 1.1rem;
    max-width: 36rem;
    margin: 0 auto;
}

/* ===================================
   Lightbox
   =================================== */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 50;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.9);
    padding: 1rem;
}

.lightbox.is-open {
    display: flex;
}

.lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: #fff;
    font-size: 2.25rem;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.3s;
}

.lightbox-close:hover {
    color: var(--magenta);
}

.lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    -o-object-fit: contain;
    object-fit: contain;
}

.lightbox-caption {
    position: absolute;
    bottom: 1rem;
    left: 0;
    right: 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-family: var(--font-sans);
}

/* ===================================
   Animations
   =================================== */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse-gold {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(233, 30, 140, 0.4);
    }

    50% {
        box-shadow: 0 0 20px 10px rgba(233, 30, 140, 0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

.animate-fade-in {
    animation: fadeIn 1s ease-out;
}

.animate-bounce {
    animation: bounce 1s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(-25%);
        animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
    }

    50% {
        transform: translateY(0);
        animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
    }
}

.fade-in-section {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.shimmer {
    background: linear-gradient(90deg, rgba(233, 30, 140, 0) 0%, rgba(233, 30, 140, 0.3) 50%, rgba(233, 30, 140, 0) 100%);
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
}

/* Animation delay utilities */
.anim-delay-1 {
    animation-delay: 0.2s;
}

.anim-delay-2 {
    animation-delay: 0.4s;
}

.anim-delay-3 {
    animation-delay: 0.6s;
}

.anim-delay-4 {
    animation-delay: 0.8s;
}

/* Guestbook form padding */
.guestbook-form {
    padding: 2rem;
}


/* ===================================
   HERO SECTION (Home)
   =================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: -5rem;
}

@media (min-width: 1024px) {
    .hero {
        margin-top: -6rem;
    }
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(30, 22, 86, 0.7), rgba(45, 32, 102, 0.5), rgba(30, 22, 86, 0.8));
}

.hero-orbs {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-orb {
    position: absolute;
    border-radius: 9999px;
    filter: blur(48px);
}

.hero-orb--magenta {
    top: 25%;
    left: 25%;
    width: 24rem;
    height: 24rem;
    background: rgba(233, 30, 140, 0.1);
}

.hero-orb--lavender {
    bottom: 25%;
    right: 25%;
    width: 20rem;
    height: 20rem;
    background: rgba(196, 176, 219, 0.1);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 1rem;
    max-width: 56rem;
    margin: 0 auto;
}

.hero-decorator {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.hero-decorator-line {
    width: 3rem;
    height: 1px;
    background: rgba(233, 30, 140, 0.5);
}

.hero-decorator-star {
    margin: 0 1rem;
    color: var(--magenta);
    font-size: 1.5rem;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 3rem;
    color: #fff;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 6rem;
    }
}

.hero-subtitle {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-subtitle {
        font-size: 1.875rem;
    }
}

.hero-description {
    font-family: var(--font-sans);
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.5);
    max-width: 42rem;
    margin: 0 auto 3rem;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

@media (min-width: 640px) {
    .hero-cta {
        flex-direction: row;
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-indicator a {
    display: block;
    color: rgba(233, 30, 140, 0.6);
    transition: color 0.3s;
}

.scroll-indicator a:hover {
    color: var(--magenta);
}

.scroll-indicator svg {
    width: 2rem;
    height: 2rem;
}

/* ===================================
   ABOUT SECTION (Home)
   =================================== */
.about-section {
    padding: 6rem 0;
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .about-section {
        padding: 8rem 0;
    }
}

.about-grid {
    display: grid;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.about-image-wrapper {
    position: relative;
}

.about-image-placeholder {
    aspect-ratio: 4/5;
    background: linear-gradient(to bottom right, var(--lavender-light), var(--rose-pink-light));
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image-placeholder span {
    color: rgba(233, 30, 140, 0.3);
    font-size: 8rem;
}

.about-frame {
    position: absolute;
    top: -1rem;
    left: -1rem;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(233, 30, 140, 0.2);
    border-radius: 1rem;
    z-index: -1;
}

.about-badge {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    width: 8rem;
    height: 8rem;
    background: linear-gradient(to bottom right, var(--magenta), var(--magenta-light));
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.about-badge-number {
    font-family: var(--font-display);
    color: #fff;
    font-size: 2.25rem;
}

.about-badge-text {
    position: absolute;
    bottom: 0.5rem;
    color: #fff;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.about-content-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.625;
}

.about-heading {
    font-family: var(--font-display);
    font-size: 2.25rem;
    color: #fff;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .about-heading {
        font-size: 3rem;
    }
}

.about-cta {
    margin-top: 2.5rem;
}

.about-cta a {
    display: inline-flex;
    align-items: center;
}

.about-cta svg {
    margin-left: 0.5rem;
    width: 1.25rem;
    height: 1.25rem;
}

/* ===================================
   SPECTACLES & TEAM IMAGES HOVER
   =================================== */
.card-spectacle .spectacle-card-img {
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.card-spectacle:hover .spectacle-card-img {
    transform: scale(1.08);
}

/* ===================================
   TEAM SECTION (Home)
   =================================== */
.team-section {
    padding: 6rem 0;
    background: var(--navy-dark);
    position: relative;
    overflow: hidden;
}

.team-member .about-image-placeholder img {
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.team-member:hover .about-image-placeholder img {
    transform: scale(1.08);
}

/* ===================================
   TEAM SECTION GRID
   =================================== */
.team-grid {
    display: grid;
    gap: 4rem;
    align-items: center;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}







.team-heading {
    margin-bottom: 2rem;
}

.team-images-wrapper {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    position: relative;
}

.team-member {
    flex: 1;
    max-width: 250px;
}

.team-member--offset-top {
    margin-top: 3rem;
}

.team-member--offset-bottom {
    margin-bottom: 3rem;
}

.team-member-image {
    aspect-ratio: 3/4;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(233, 30, 140, 0.3);
}

.team-member-name-wrapper {
    text-align: center;
    margin-top: 1rem;
}

.team-member-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: #fff;
}

.team-decorative-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 25rem;
    height: 25rem;
    background: radial-gradient(circle, rgba(233, 30, 140, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
    border-radius: 50%;
    z-index: -1;
}

/* ===================================
   UTILITY CLASSES (extracted from inline)
   =================================== */

/* Cover image â€” fills parent */
.img-cover {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.img-cover-block {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    display: block;
}

/* Position relative with z-index for stacking above decorative elements */
.z-content {
    position: relative;
    z-index: 10;
}

/* Decorative orb container (shared across page headers) */
.orb-container {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 9999px;
    filter: blur(80px);
}

.orb--magenta-top {
    top: -10%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: rgba(233, 30, 140, 0.08);
}

.orb--navy-bottom {
    bottom: -20%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: rgba(45, 32, 102, 0.6);
}

.orb--lavender-right {
    top: 30%;
    right: 20%;
    width: 250px;
    height: 250px;
    background: rgba(196, 176, 219, 0.07);
}

.orb--navy-center {
    top: 50%;
    left: 33%;
    width: 400px;
    height: 400px;
    background: rgba(45, 32, 102, 0.1);
}

.orb--magenta-small {
    bottom: 0;
    right: 25%;
    width: 300px;
    height: 300px;
    background: rgba(233, 30, 140, 0.05);
}

.orb--rose-right {
    top: 50%;
    right: 25%;
    width: 500px;
    height: 500px;
    background: rgba(247, 165, 200, 0.05);
}

.orb--navy-left {
    top: 50%;
    left: 25%;
    width: 400px;
    height: 400px;
    background: rgba(45, 32, 102, 0.1);
}

/* Card image overlay gradient */
.card-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(30, 22, 86, 0.4), transparent);
    pointer-events: none;
}

/* Page section title with bottom margin */
.section-title--spaced {
    margin-bottom: 1.5rem;
}

/* Page fade bottom gradient */
.page-fade-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to top, var(--navy-dark), transparent);
    pointer-events: none;
}

/* Spectacles index page specific */
.spectacles-page-label {
    letter-spacing: 0.25em;
    margin-bottom: 1.5rem;
    display: block;
}

.spectacles-page-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 7vw, 5.5rem);
    color: #fff;
    margin: 0 0 1.5rem;
    line-height: 1;
    text-shadow: 0 2px 30px rgba(233, 30, 140, 0.3);
}

.spectacles-page-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, var(--magenta), var(--rose-pink));
    margin: 0 auto 1.5rem;
    border-radius: 2px;
}

/* Spectacle card header row (title + badge inline) */
.card-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.card-header-row .card-title {
    margin-bottom: 0;
    line-height: 1.2;
}

.badge--inline {
    position: static !important;
    flex-shrink: 0;
    white-space: nowrap;
    font-size: 0.65rem;
    padding: 0.2rem 0.5rem !important;
    line-height: 1;
    transform: translateY(4px);
    height: -moz-min-content;
    height: min-content;
}

/* Show page: sidebar image responsive */
.show-sidebar-image {
    position: sticky;
    top: 7rem;
    align-self: start;
}

.show-sidebar-img {
    width: 100%;
    border-radius: 12px;
    -o-object-fit: cover;
    object-fit: cover;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

/* Show page: video container */
.video-container {
    border-radius: 12px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.video-player {
    width: 100%;
    display: block;
    border-radius: 12px;
}

.video-embed-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    background: #000;
}

.video-embed-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

/* Show page: content heading */
.show-content-heading {
    font-family: var(--font-display);
    font-size: 1.875rem;
    color: #fff;
    margin-bottom: 1.5rem;
}

/* Guestbook section inside spectacle detail */
.spectacle-guestbook {
    background: linear-gradient(180deg, #2a1d7a 0%, #251869 50%, #221565 100%);
    padding: 4rem 0;
    border-top: 1px solid rgba(233, 30, 140, 0.15);
}

/* Guestbook filter bar */
.guestbook-filter-bar {
    margin-bottom: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.guestbook-filter-bar .guestbook-heading {
    margin-bottom: 0;
}

.guestbook-filter-form {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.guestbook-filter-label {
    font-size: 0.875rem;
    color: #666;
    white-space: nowrap;
}

.guestbook-filter-select {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
}

/* Contact form section divider */
.form-section-divider {
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin: 2rem 0;
}

.form-section-title {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

/* Footer social item row */
.footer-social-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-social-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

/* Footer spectacles link */
.footer-spectacles-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--magenta);
    font-weight: 600;
}

/* Footer phone region label */
.footer-phone-label {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    display: block;
}

/* Contact phone layout helpers */
.contact-phone-label {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    display: block;
    margin-bottom: 0.25rem;
}

.contact-phone-label--spaced {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    display: block;
    margin-top: 0.5rem;
    margin-bottom: 0.25rem;
}

.contact-phone-number {
    display: block;
}

.privacy-wrapper {
    margin-bottom: 1.5rem;
}

/* Pagination icon */
.pagination-icon {
    width: 1.25rem;
    height: 1.25rem;
}

/* Gallery section spacing variant */
.gallery-section--spaced {
    margin-top: 2rem;
}

/* Guestbook heading centered */
.guestbook-heading--centered {
    text-align: center;
    margin-bottom: 2rem;
}

/* No-results text */
.no-results-text {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

.no-results-text--dark {
    text-align: center;
    color: #666;
    margin: 2rem 0;
}

/* Spectacles list empty state */
.spectacles-empty {
    color: white;
    text-align: center;
    width: 100%;
}

/* ===================================
   SPECTACLES SECTION (Home + index)
   =================================== */
.spectacles-section {
    padding: 6rem 0;
    background: var(--navy-dark);
    position: relative;
}

@media (min-width: 1024px) {
    .spectacles-section {
        padding: 8rem 0;
    }
}

.spectacles-section-border {
    position: absolute;
    inset: 0;
}

.spectacles-section-border::before,
.spectacles-section-border::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(196, 176, 219, 0.3), transparent);
}

.spectacles-section-border::before {
    top: 0;
}

.spectacles-section-border::after {
    bottom: 0;
}

.spectacles-header {
    text-align: center;
    margin-bottom: 4rem;
}

.spectacles-header-desc {
    color: rgba(255, 255, 255, 0.5);
    max-width: 42rem;
    margin: 2rem auto 0;
}

.spectacles-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .spectacles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .spectacles-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.spectacles-cta {
    text-align: center;
    margin-top: 3rem;
}

/* ===================================
   QUOTE SECTION (Home)
   =================================== */
.quote-section {
    padding: 6rem 0;
    background: linear-gradient(to right, var(--navy-dark), var(--navy), var(--navy-dark));
    position: relative;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .quote-section {
        padding: 8rem 0;
    }
}

.quote-orbs {
    position: absolute;
    inset: 0;
}

.quote-orb {
    position: absolute;
    border-radius: 9999px;
    filter: blur(48px);
}

.quote-orb--top {
    top: 0;
    left: 25%;
    width: 16rem;
    height: 16rem;
    background: rgba(233, 30, 140, 0.1);
}

.quote-orb--bottom {
    bottom: 0;
    right: 25%;
    width: 20rem;
    height: 20rem;
    background: rgba(196, 176, 219, 0.1);
}

.quote-content {
    max-width: 56rem;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 10;
}

.quote-icon {
    color: var(--magenta);
    font-size: 2.25rem;
    margin-bottom: 2rem;
    display: block;
}

.quote-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: #fff;
    font-style: italic;
    line-height: 1.625;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .quote-text {
        font-size: 1.875rem;
    }
}

@media (min-width: 1024px) {
    .quote-text {
        font-size: 2.25rem;
    }
}

.quote-divider {
    margin: 2rem 0;
}

.quote-author {
    color: rgba(255, 255, 255, 0.8);
    font-family: var(--font-sans);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.875rem;
}

/* ===================================
   NEWS SECTION (Home + Actualites)
   =================================== */
.news-section {
    padding: 6rem 0;
    background: var(--navy);
}

@media (min-width: 1024px) {
    .news-section {
        padding: 8rem 0;
    }
}

.news-header {
    display: flex;
    flex-direction: column;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .news-header {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
    }
}

.news-header .btn-outline {
    margin-top: 1.5rem;
}

@media (min-width: 768px) {
    .news-header .btn-outline {
        margin-top: 0;
    }
}

.news-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .news-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Article card */
.article-card {
    position: relative;
}

.article-image {
    aspect-ratio: 16/9;
    border-radius: 1rem;
    overflow: hidden;
    margin-bottom: 1.5rem;
    position: relative;
}

.article-image-bg {
    background: linear-gradient(to bottom right, var(--navy-light), var(--navy-dark));
    position: absolute;
    inset: 0;
}

.article-image-center {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.article-image-center span {
    color: rgba(233, 30, 140, 0.2);
    font-size: 3rem;
}

.article-hover-overlay {
    position: absolute;
    inset: 0;
    background: transparent;
    transition: background 0.5s;
}

.article-card:hover .article-hover-overlay {
    background: rgba(233, 30, 140, 0.1);
}

.article-date {
    color: rgba(233, 30, 140, 0.7);
    font-size: 0.875rem;
    font-family: var(--font-sans);
}

.article-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: #fff;
    margin: 0.5rem 0 0.75rem;
    transition: color 0.3s;
}

.article-card:hover .article-title {
    color: var(--magenta);
}

.article-excerpt {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    line-height: 1.625;
    margin-bottom: 1rem;
}

.article-read-more {
    color: var(--magenta);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-flex;
    align-items: center;
    transition: transform 0.3s;
}

.article-read-more:hover {
    transform: translateX(0.25rem);
}

.article-read-more svg {
    margin-left: 0.5rem;
    width: 1rem;
    height: 1rem;
}

/* ===================================
   CTA SECTION (Home)
   =================================== */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(to bottom, var(--navy-dark), var(--navy));
    border-top: 1px solid rgba(196, 176, 219, 0.1);
}

@media (min-width: 1024px) {
    .cta-section {
        padding: 8rem 0;
    }
}

.cta-content {
    max-width: 72rem;
    margin: 0 auto;
    text-align: center;
}

.cta-heading {
    font-family: var(--font-display);
    font-size: 2rem;
    color: #fff;
    margin-bottom: 1.5rem;
    white-space: nowrap;
}

@media (min-width: 768px) {
    .cta-heading {
        font-size: 2.75rem;
    }
}

.cta-text {
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.625;
    margin-bottom: 2.5rem;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
}

.cta-btn svg {
    margin-right: 0.5rem;
    width: 1.25rem;
    height: 1.25rem;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: linear-gradient(to bottom, var(--navy), var(--navy-dark));
    border-top: 1px solid rgba(196, 176, 219, 0.2);
}

.footer-main {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.footer-grid {
    display: grid;
    gap: 3rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-brand-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-brand-col {
        align-items: flex-start;
        text-align: left;
    }
}

.footer-brand-logo {
    height: 4.5rem;
    width: auto;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.footer-brand-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    line-height: 1.625;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    border: 1px solid rgba(233, 30, 140, 0.3);
    color: var(--magenta);
    transition: all 0.3s;
}

.social-link:hover {
    background: var(--magenta);
    color: #fff;
}

.social-link svg {
    width: 1.25rem;
    height: 1.25rem;
}

.footer-heading {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 1.5rem;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    transition: color 0.3s;
}

.footer-link:hover {
    color: var(--magenta);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--magenta);
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.footer-contact-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.footer-contact-text a {
    transition: color 0.3s;
}

.footer-contact-text a:hover {
    color: var(--magenta);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
}

.footer-bottom-inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: nowrap;
    text-align: center;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.875rem;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal-link {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.875rem;
    transition: color 0.3s;
}

.footer-legal-link:hover {
    color: var(--magenta);
}

/* ===================================
   FORMS
   =================================== */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(255, 249, 245, 0.05);
    border: 1px solid rgba(45, 32, 102, 0.3);
    color: #fff;
    font-family: var(--font-sans);
    font-size: 0.875rem;
    transition: border-color 0.3s;
}

.form-input::-moz-placeholder,
.form-textarea::-moz-placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-input::-moz-placeholder, .form-textarea::-moz-placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--magenta);
    outline: none;
    box-shadow: 0 0 0 1px rgba(233, 30, 140, 0.5);
}

.form-textarea {
    resize: none;
}

.form-select option {
    background: var(--navy-dark);
    color: #fff;
}

.form-row {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.form-checkbox-wrapper {
    display: flex;
    align-items: flex-start;
}

.form-checkbox {
    margin-top: 0.25rem;
    margin-right: 0.75rem;
    accent-color: var(--magenta);
}

.form-checkbox-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.form-submit-content {
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-submit-content svg {
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.5rem;
}

.form-note {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
    padding: 15px 0;
}

/* ===================================
   CONTACT PAGE
   =================================== */
.contact-section {
    padding: 6rem 0;
    background: var(--navy-dark);
}

.contact-layout {
    display: grid;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .contact-layout {
        grid-template-columns: 2fr 3fr;
        gap: 4rem;
    }
}

.contact-info-heading {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 2rem;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon-box {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(45, 32, 102, 0.3);
    color: var(--magenta);
    flex-shrink: 0;
}

.contact-icon-box svg {
    width: 1.5rem;
    height: 1.5rem;
}

.contact-info-label {
    color: #fff;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.contact-info-value {
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s;
}

a.contact-info-value:hover {
    color: var(--magenta);
}

.contact-social-heading {
    color: #fff;
    font-weight: 500;
    margin-bottom: 1rem;
}

.contact-social-links {
    display: flex;
    gap: 1rem;
}

.contact-social-link {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(233, 30, 140, 0.3);
    color: var(--magenta);
    transition: all 0.3s;
}

.contact-social-link:hover {
    background: var(--magenta);
    color: var(--cream);
}

.contact-social-link svg {
    width: 1.25rem;
    height: 1.25rem;
}

.contact-form-wrapper {
    border-radius: 0;
}

.contact-form-wrapper .glass {
    padding: 2rem;
}

@media (min-width: 1024px) {
    .contact-form-wrapper .glass {
        padding: 3rem;
    }
}

.contact-form-heading {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 2rem;
}

/* Hidden honeypot */
.honeypot {
    display: none;
}

/* ===================================
   LIVRE D'OR PAGE
   =================================== */
.guestbook-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #2a1d7a 0%, #251869 50%, #221565 100%);
}

.guestbook-layout {
    display: grid;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .guestbook-layout {
        grid-template-columns: 2fr 1fr;
    }
}

.guestbook-heading {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 2rem;
}

.testimonial-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonial-card {
    padding: 1.5rem;
}

@media (min-width: 1024px) {
    .testimonial-card {
        padding: 2rem;
    }
}

.testimonial-quote-icon {
    color: rgba(233, 30, 140, 0.3);
    font-size: 2.25rem;
    line-height: 1;
    display: block;
    margin-bottom: 1rem;
}

.testimonial-message {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.625;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 9999px;
    background: linear-gradient(to bottom right, var(--navy), var(--rose-pink));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 500;
    margin-right: 1rem;
}

.author-name {
    color: #fff;
    font-weight: 500;
}

.author-event {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

.testimonial-date {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.875rem;
}

.guestbook-form-wrapper {
    position: sticky;
    top: 7rem;
}

.guestbook-form-heading {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 1.5rem;
}

.guestbook-form-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.guestbook-form .form-group {
    margin-bottom: 1rem;
}

.guestbook-form .form-input,
.guestbook-form .form-select,
.guestbook-form .form-textarea {
    font-size: 0.875rem;
}

.load-more-wrapper {
    text-align: center;
    margin-top: 3rem;
}

/* ===================================
   ACTUALITES PAGE
   =================================== */
.actualites-section {
    padding: 6rem 0;
    background: var(--cream);
}

/* Featured article */
.featured-article {
    display: grid;
    gap: 2rem;
    margin-bottom: 4rem;
}

@media (min-width: 1024px) {
    .featured-article {
        grid-template-columns: 1fr 1fr;
    }
}

.featured-image {
    aspect-ratio: 16/9;
    position: relative;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .featured-image {
        aspect-ratio: auto;
        height: 100%;
    }
}

.featured-image-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(45, 32, 102, 0.5), rgba(30, 22, 86, 0.5));
}

.featured-image-center {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.featured-image-icon {
    color: rgba(233, 30, 140, 0.2);
    font-size: 8rem;
    transition: transform 0.7s;
}

.featured-article:hover .featured-image-icon {
    transform: scale(1.1);
}

.featured-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.25rem 0.75rem;
    background: var(--magenta);
    color: var(--cream);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

.featured-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1rem;
}

@media (min-width: 1024px) {
    .featured-content {
        padding: 2rem;
    }
}

.featured-date {
    color: rgba(233, 30, 140, 0.7);
    font-size: 0.875rem;
    font-family: var(--font-sans);
    margin-bottom: 0.5rem;
}

.featured-title {
    font-family: var(--font-display);
    font-size: 1.875rem;
    color: #fff;
    margin-bottom: 1rem;
    transition: color 0.3s;
}

@media (min-width: 1024px) {
    .featured-title {
        font-size: 2.25rem;
    }
}

.featured-title:hover {
    color: var(--magenta);
}

.featured-excerpt {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.625;
    margin-bottom: 1.5rem;
}

.article-divider {
    margin-bottom: 4rem;
}

/* Article badge */
.article-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    padding: 0.25rem 0.5rem;
    background: rgba(255, 249, 245, 0.8);
    color: var(--magenta);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.article-text-clamp {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    margin-top: 4rem;
}

.pagination-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pagination-active {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--magenta);
    color: var(--cream);
    font-weight: 500;
}

.pagination-link {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s;
}

.pagination-link:hover {
    color: var(--magenta);
    border-color: var(--magenta);
}

.pagination-dots {
    color: rgba(255, 255, 255, 0.4);
    padding: 0 0.5rem;
}

/* ===================================
   SPECTACLE CATEGORIES FILTER
   =================================== */
.category-filter {
    padding: 2rem 0;
    background: var(--cream);
    border-top: 1px solid rgba(45, 32, 102, 0.2);
    border-bottom: 1px solid rgba(45, 32, 102, 0.2);
}

.category-filter-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.filter-btn {
    padding: 0.5rem 1.5rem;
    font-family: var(--font-sans);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s;
    color: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: none;
    cursor: pointer;
}

.filter-btn:hover {
    color: var(--magenta);
    border-color: var(--magenta);
}

.filter-btn--active {
    background: var(--magenta);
    color: var(--cream);
    border-color: var(--magenta);
}

/* Badge on cards */
.badge {
    position: absolute;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.badge--top-left {
    top: 1rem;
    left: 1rem;
}

.badge--top-right {
    top: 1rem;
    right: 1rem;
}

.badge--category {
    background: rgba(255, 249, 245, 0.8);
    backdrop-filter: blur(4px);
    color: var(--magenta);
}

.badge--duration {
    background: rgba(233, 30, 140, 0.9);
    color: var(--cream);
    font-weight: 500;
}

/* ===================================
   SPECTACLE DETAIL PAGE (show)
   =================================== */
.show-hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.show-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #2d1b8a 0%, #3a2299 40%, #1e1070 100%);
}

.show-hero-icon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.show-hero-icon span {
    color: rgba(233, 30, 140, 0.1);
    font-size: 300px;
}

.show-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 1rem;
}

.show-category-badge {
    display: inline-block;
    padding: 0.25rem 1rem;
    background: rgba(233, 30, 140, 0.2);
    color: var(--magenta);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.show-title {
    font-family: var(--font-display);
    font-size: 3rem;
    color: #fff;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .show-title {
        font-size: 3.75rem;
    }
}

@media (min-width: 1024px) {
    .show-title {
        font-size: 4.5rem;
    }
}

.show-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    color: rgba(255, 255, 255, 0.6);
}

.show-meta-item {
    display: flex;
    align-items: center;
}

.show-meta-item svg {
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.5rem;
    color: var(--magenta);
}

/* Breadcrumb */
.breadcrumb-bar {
    background: rgba(35, 20, 110, 0.85);
    border: 2px solid rgba(233, 30, 140, 0.4);
}

.breadcrumb {
    display: flex;
    align-items: center;
    padding: 1rem 0;
    font-size: 0.875rem;
    color: rgba(45, 32, 102, 0.6);
    /* navy with opacity */
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: var(--magenta);
}

.breadcrumb-separator {
    margin: 0 0.75rem;
    color: rgba(255, 255, 255, 0.25);
}

.breadcrumb-current {
    color: var(--magenta);
}

/* Show layout */
.show-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, #2a1d7a 0%, #251869 50%, #221565 100%);
}

@media (min-width: 1024px) {
    .show-section {
        padding: 6rem 0;
    }
}

.show-layout {
    display: grid;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .show-layout {
        grid-template-columns: 2fr 1fr;
    }
}

/* Rich content */
.show-content {
    max-width: none;
    color: rgba(255, 255, 255, 0.9);
}

.show-content p {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.75;
    margin-bottom: 1rem;
}

.show-content h3 {
    font-family: var(--font-display);
    color: #fff;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.show-content ul {
    padding-left: 0;
}

.show-content ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.75);
}

.show-content ul li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--magenta);
    font-size: 0.875rem;
}

.show-content strong {
    color: var(--magenta);
}

.show-content em {
    color: rgba(255, 255, 255, 0.6);
}

/* Gallery */
.gallery-section {
    margin-top: 4rem;
}

.gallery-heading {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 2rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gallery-item {
    aspect-ratio: 1;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(45, 32, 102, 0.4), rgba(30, 22, 86, 0.4));
}

.gallery-item-center {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item-center span {
    color: rgba(233, 30, 140, 0.3);
    font-size: 1.875rem;
    transition: transform 0.3s;
}

.gallery-item:hover .gallery-item-center span {
    transform: scale(1.1);
}

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: transparent;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item:hover .gallery-item-overlay {
    background: rgba(45, 32, 102, 0.4);
}

.gallery-item-overlay svg {
    width: 2rem;
    height: 2rem;
    color: #fff;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover .gallery-item-overlay svg {
    opacity: 1;
}

/* Sidebar */
.sidebar-card {
    padding: 2rem;
    position: sticky;
    top: 7rem;
}

.sidebar-heading {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 1.5rem;
}

.sidebar-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    line-height: 1.625;
}

.sidebar-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.sidebar-feature {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.7);
}

.sidebar-feature svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--magenta);
    margin-right: 0.75rem;
}

.sidebar-feature span {
    font-size: 0.875rem;
}

.sidebar-divider {
    margin: 2rem 0;
}

.sidebar-section-title {
    font-family: var(--font-display);
    font-size: 1.125rem;
    color: #fff;
    margin-bottom: 1rem;
}

.related-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.related-link {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    transition: color 0.3s;
}

.related-link:hover {
    color: var(--magenta);
}

.related-link-arrow {
    color: var(--magenta);
    margin-right: 0.5rem;
}

/* ===================================
   SPECTACLES CTA (bottom of index)
   =================================== */
.spectacles-cta-section {
    padding: 5rem 0;
    background: linear-gradient(to right, #251869, #2a1d7a, #251869);
    border-top: 1px solid rgba(233, 30, 140, 0.2);
    text-align: center;
}

.spectacles-cta-heading {
    font-family: var(--font-display);
    font-size: 1.875rem;
    color: #fff;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .spectacles-cta-heading {
        font-size: 2.25rem;
    }
}

.spectacles-cta-text {
    color: rgba(255, 255, 255, 0.7);
    max-width: 42rem;
    margin: 0 auto 2rem;
}

/* ===================================
   PAGE BACKGROUNDS (gradients)
   =================================== */
.bg-navy {
    background: var(--navy);
}

.bg-navy-dark {
    background: var(--navy-dark);
}

.bg-cream {
    background: var(--cream);
}

.page-header--contact {
    background: linear-gradient(180deg, #2d1b8a 0%, #3a2299 50%, #1e1070 100%);
    position: relative;
    overflow: hidden;
}

.page-header--guestbook {
    background: linear-gradient(180deg, #2d1b8a 0%, #3a2299 50%, #1e1070 100%);
    position: relative;
    overflow: hidden;
}

.page-header--actualites {
    background: linear-gradient(to bottom, var(--cream), rgba(45, 32, 102, 0.3), var(--cream));
}

.page-header--spectacles {
    background: linear-gradient(180deg, #2d1b8a 0%, #3a2299 40%, #1e1070 100%);
    padding: 10rem 0 7rem;
    overflow: hidden;
    position: relative;
}

/* ===================================
   SPARKLES ANIMATIONS
   =================================== */
@keyframes sparkle-float {

    0%,
    100% {
        transform: translateY(0) scale(1);
        opacity: 0.6;
    }

    33% {
        transform: translateY(-18px) scale(1.2);
        opacity: 1;
    }

    66% {
        transform: translateY(-8px) scale(0.9);
        opacity: 0.4;
    }
}

@keyframes sparkle-twinkle {

    0%,
    100% {
        opacity: 0.2;
        transform: scale(0.8);
    }

    50% {
        opacity: 0.9;
        transform: scale(1.3);
    }
}

.sparkles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.sparkle {
    position: absolute;
    color: rgba(196, 176, 219, 0.7);
    animation: sparkle-float 5s ease-in-out infinite, sparkle-twinkle 3s ease-in-out infinite;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    display: block;
}

.sparkle--rose {
    color: rgba(233, 30, 140, 0.8);
    animation: sparkle-float 4s ease-in-out infinite, sparkle-twinkle 2.5s ease-in-out infinite;
}

/* Card image gradients */
.gradient-peach-rose {
    background: linear-gradient(to bottom right, rgba(245, 200, 154, 0.4), rgba(247, 165, 200, 0.4));
}

.gradient-lavender-periwinkle {
    background: linear-gradient(to bottom right, rgba(196, 176, 219, 0.4), rgba(139, 159, 212, 0.4));
}

.gradient-rose-magenta {
    background: linear-gradient(to bottom right, rgba(247, 165, 200, 0.4), rgba(233, 30, 140, 0.3));
}

.gradient-navy {
    background: linear-gradient(to bottom right, var(--navy-light), var(--navy-dark));
}

.gradient-navy-dark {
    background: linear-gradient(to bottom right, rgba(45, 32, 102, 0.5), rgba(30, 22, 86, 0.5));
}

.gradient-spectacle {
    background: linear-gradient(to bottom right, rgba(45, 32, 102, 0.6), rgba(30, 22, 86, 0.6));
}

/* ===================================
   SPECTACLE PHOTO CAROUSEL (Diaporama)
   =================================== */
.spectacle-carousel-section {
    margin-top: 3rem;
}

.spectacle-carousel {
    position: relative;
    background: #000;
    border-radius: 15px;
    overflow: hidden;
    height: 560px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
}

@media (max-width: 1023px) {
    .spectacle-carousel {
        height: 420px;
    }
}

@media (max-width: 640px) {
    .spectacle-carousel {
        height: 280px;
        border-radius: 10px;
    }
}

/* Slides wrapper */
.sc-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Individual slide */
.sc-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sc-slide.active {
    opacity: 1;
}

.sc-slide img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    display: block;
}

/* Navigation arrows */
.sc-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.55);
    color: #c9a96e;
    border: 1.5px solid #c9a96e;
    border-radius: 6px;
    width: 46px;
    height: 56px;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s, color 0.25s, transform 0.25s;
    z-index: 10;
    padding: 0;
}

.sc-btn:hover {
    background: #c9a96e;
    color: #fff;
    transform: translateY(-50%) scale(1.08);
}

.sc-prev {
    left: 14px;
}

.sc-next {
    right: 14px;
}

/* Dots */
.sc-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 80%;
}

.sc-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: background 0.25s, transform 0.25s;
    display: inline-block;
}

.sc-dot.active {
    background: #c9a96e;
    transform: scale(1.35);
}

.sc-dot:hover:not(.active) {
    background: rgba(201, 169, 110, 0.6);
}

/* Control buttons (pause + fullscreen) */
.sc-controls {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    gap: 8px;
    z-index: 10;
}

.sc-control-btn {
    background: rgba(0, 0, 0, 0.6);
    color: #c9a96e;
    border: 1.5px solid #c9a96e;
    border-radius: 6px;
    width: 38px;
    height: 38px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s, color 0.25s;
    padding: 0;
}

.sc-control-btn:hover {
    background: #c9a96e;
    color: #fff;
}

/* ===================================
   RESPONSIVE â€” Mobile-first overrides
   =================================== */

/* ---------- Small phones (max-width: 480px) ---------- */
@media (max-width: 480px) {

    /* Prevent any horizontal overflow */
    html,
    body {
        overflow-x: hidden;
    }

    /* Logo â€” shrink on small screens */
    .logo-img {
        width: 10rem;
    }

    .logo-circle {
        margin-bottom: -2.5rem;
    }

    .logo-wrapper {
        margin: 0 0.5rem;
    }

    /* Navbar height */
    .navbar-inner {
        height: 4rem;
    }

    .navbar-spacer {
        height: 4rem;
    }

    /* Hero */
    .hero-title {
        font-size: 2.25rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .hero-cta {
        flex-direction: column;
        gap: 0.75rem;
    }

    .hero-cta .btn-primary,
    .hero-cta .btn-outline {
        width: 100%;
        text-align: center;
    }

    /* About section */
    .about-heading {
        font-size: 1.75rem;
    }

    .about-section {
        padding: 3rem 0;
    }

    .about-badge {
        width: 5rem;
        height: 5rem;
        bottom: -1rem;
        right: -0.5rem;
    }

    .about-badge-number {
        font-size: 1.5rem;
    }

    .about-badge-text {
        font-size: 0.6rem;
    }

    /* Section titles */
    .section-title {
        font-size: 1.75rem;
    }

    /* Spectacles section */
    .spectacles-section {
        padding: 3rem 0;
    }

    .spectacles-header {
        margin-bottom: 2rem;
    }

    .spectacles-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Card */
    .card-title {
        font-size: 1.2rem;
        min-height: auto;
    }



    /* Quote section */
    .quote-section {
        padding: 3rem 0;
    }

    .quote-text {
        font-size: 1.2rem;
    }

    /* CTA section */
    .cta-heading {
        font-size: 1.4rem;
        white-space: normal;
    }

    .cta-section {
        padding: 3rem 0;
    }

    /* Footer */
    .footer-main {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-nav {
        gap: 1.125rem;
    }

    .footer-contact-list {
        gap: 1.25rem;
    }

    .footer-bottom-inner {
        flex-wrap: wrap;
        flex-direction: column;
        gap: 0.5rem;
    }

    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
    }

    /* Contact section */
    .contact-section {
        padding: 3rem 0;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    /* Page headers */
    .page-header {
        padding: 3rem 0;
    }

    .page-header--spectacles {
        padding: 6rem 0 4rem;
    }

    .page-header-desc {
        font-size: 0.95rem;
    }

    /* Spectacle show page */
    .show-hero {
        height: 35vh;
        min-height: 280px;
    }

    .show-hero-icon span {
        font-size: 120px;
    }

    .show-title {
        font-size: 2rem;
    }

    .show-meta {
        flex-direction: column;
        gap: 0.5rem;
    }

    .show-section {
        padding: 2rem 0;
    }

    .show-layout {
        grid-template-columns: 1fr;
    }

    /* Breadcrumb */
    .breadcrumb {
        font-size: 0.75rem;
        flex-wrap: wrap;
    }

    .breadcrumb-separator {
        margin: 0 0.4rem;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    /* Guestbook */
    .guestbook-section {
        padding: 3rem 0;
    }

    .guestbook-layout {
        grid-template-columns: 1fr;
    }

    .guestbook-form-wrapper {
        position: static;
    }

    /* Spectacles CTA section */
    .spectacles-cta-section {
        padding: 3rem 0;
    }

    .spectacles-cta-heading {
        font-size: 1.5rem;
    }

    /* News section */
    .news-section {
        padding: 3rem 0;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    /* Actualites */
    .actualites-section {
        padding: 3rem 0;
    }

    .featured-article {
        grid-template-columns: 1fr;
    }

    .featured-title {
        font-size: 1.5rem;
    }
}

/* ---------- Medium phones / between 481pxâ€“767px ---------- */
@media (min-width: 481px) and (max-width: 767px) {

    html,
    body {
        overflow-x: hidden;
    }

    .logo-img {
        width: 12rem;
    }

    .logo-circle {
        margin-bottom: -3rem;
    }

    .logo-wrapper {
        margin: 0 1rem;
    }

    .hero-title {
        font-size: 2.75rem;
    }

    .cta-heading {
        white-space: normal;
    }

    .spectacles-grid {
        grid-template-columns: 1fr;
    }

    .card-title {
        min-height: auto;
    }



    .show-hero-icon span {
        font-size: 180px;
    }

    .show-layout {
        grid-template-columns: 1fr;
    }

    .footer-bottom-inner {
        flex-wrap: wrap;
    }

    .page-header--spectacles {
        padding: 7rem 0 5rem;
    }

    .guestbook-layout {
        grid-template-columns: 1fr;
    }

    .guestbook-form-wrapper {
        position: static;
    }
}

/* ---------- Tablets / between 768pxâ€“1023px ---------- */
@media (min-width: 768px) and (max-width: 1023px) {

    .logo-img {
        width: 14rem;
    }

    .logo-circle {
        margin-bottom: -3.5rem;
    }

    .cta-heading {
        white-space: normal;
    }

    .show-hero-icon span {
        font-size: 220px;
    }

    .card-title {
        min-height: auto;
        font-size: 1.3rem;
    }

    .spectacles-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .show-layout {
        grid-template-columns: 1fr;
    }

    .guestbook-layout {
        grid-template-columns: 1fr;
    }

    .guestbook-form-wrapper {
        position: static;
    }
}

/* ---------- Global mobile fix (max-width: 1023px) ---------- */
@media (max-width: 1023px) {

    /* Prevent horizontal scroll on all pages */
    html,
    body {
        overflow-x: hidden;
    }


    /* Show layout sidebar below content */
    .show-layout {
        grid-template-columns: 1fr;
    }

    /* Guestbook layout single column */
    .guestbook-layout {
        grid-template-columns: 1fr;
    }

    .guestbook-form-wrapper {
        position: static;
    }
}
