/*
Theme Name: Images 3D Custom
Description: Thème personnalisé pour Images 3D, développé en HTML/CSS/JS
Version: 1.0
Author: Gueye-Omar CAMARA
*/

body {
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    color: #333;
}

a {
    text-decoration: none;
}

:root {
    --color-black: #000000;
    --color-gold: #c8a000;
    --color-white: #ffffff;
    --color-text: #333333;
}

body {
    background-color: var(--color-white);
    color: var(--color-text);
}

.site-header {
    background-color: var(--color-black);
    color: var(--color-gold);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.site-header .logo {
    font-size: 28px;
    font-weight: bold;
    color: var(--color-gold);
}

.site-header nav > ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.site-header nav > ul > li {
    position: relative;
}

.site-header nav a {
    color: var(--color-white);
    text-transform: uppercase;
    font-weight: bold;
    font-size: 14px;
}

.site-header nav a:hover {
    color: var(--color-gold);
}

.btn-dvd {
    background-color: var(--color-gold);
    color: var(--color-white);
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: bold;
    text-transform: uppercase;
}

.btn-dvd:hover {
    background-color: #a07800;
}

.top-banner {
    background-color: var(--color-black);
    color: #ff8c00;
    text-align: center;
    padding: 25px 20px;
    font-size: 22px;
}

.top-banner strong {
    color: #ff8c00;
}

.welcome-title {
    text-align: center;
    color: var(--color-gold);
    font-size: 36px;
    font-weight: bold;
    text-transform: uppercase;
    padding: 40px 20px 20px;
}

.about-section {
    padding: 20px 60px 60px;
}

.about-section h2 {
    color: var(--color-gold);
    font-size: 28px;
}

.about-section p {
    font-size: 17px;
    line-height: 1.6;
    color: var(--color-text);
}

.header-extras {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
}

.search-icon,
.search-icon:visited {
    color: var(--color-white) !important;
    display: flex;
    align-items: center;
    transition: color 0.2s;
}

.search-icon:hover {
    color: var(--color-gold) !important;
}

.discover-btn-wrap {
    text-align: center;
    padding: 0 0 60px;
}

.btn-discover {
    display: inline-block;
    background-color: var(--color-gold);
    color: var(--color-white);
    padding: 14px 50px;
    font-weight: bold;
    border-radius: 4px;
    text-transform: none;
    font-size: 16px;
}

.btn-discover:hover {
    background-color: #a07800;
}

.services-section {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 40px 60px 80px;
    flex-wrap: wrap;
    background-color: #f7f7f7;
    position: relative;
}

.service-item {
    text-align: center;
    max-width: 300px;
}

.service-icon {
    color: var(--color-gold);
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
}

.service-item h3 {
    color: var(--color-black);
    font-size: 18px;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.service-item p {
    font-size: 15px;
    color: var(--color-text);
    line-height: 1.5;
    margin-bottom: 15px;
}

.btn-voir-plus {
    display: inline-block;
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
    padding: 8px 20px;
    font-weight: bold;
    border-radius: 4px;
    font-size: 13px;
    text-transform: uppercase;
}

.btn-voir-plus:hover {
    background-color: var(--color-gold);
    color: var(--color-white);
}

.avoir-section {
    padding: 60px;
    text-align: center;
}

.section-title {
    color: var(--color-gold);
    font-size: 32px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.avoir-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.avoir-item {
    max-width: 350px;
}

.avoir-item img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    display: block;
}

.avoir-item p {
    margin-top: 12px;
    font-weight: bold;
}

.avoir-item p a {
    color: var(--color-black);
    font-size: 16px;
}

.avoir-item p a:hover {
    color: var(--color-gold);
}

/* Dropdown menu */
.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--color-black);
    border-top: 2px solid var(--color-gold);
    min-width: 180px;
    z-index: 100;
    padding: 0;
    margin: 0;
    flex-direction: column;
    list-style: none;
}

.has-dropdown:hover .dropdown {
    display: flex;
}

.dropdown li {
    width: 100%;
}

.dropdown li a {
    display: block;
    padding: 10px 15px;
    color: var(--color-white) !important;
    font-size: 13px;
    font-weight: normal;
    text-transform: none;
    border-bottom: 1px solid #222;
    white-space: nowrap;
}

.dropdown li a:hover {
    background-color: var(--color-gold);
    color: var(--color-black) !important;
}

.site-header nav > ul > li:last-child .dropdown {
    right: 0;
    left: auto;
}

.page-content {
    padding: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-title {
    color: var(--color-gold);
    font-size: 36px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 40px;
    text-align: center;
}

.doc-categories {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.doc-cat {
    border: 2px solid var(--color-gold);
    color: var(--color-gold);
    padding: 10px 25px;
    font-weight: bold;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.2s;
}

.doc-cat:hover {
    background-color: var(--color-gold);
    color: var(--color-white);
}

.doc-cat.active {
    background-color: var(--color-gold);
    color: var(--color-white);
}

.videos-section {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.video-block h3 {
    color: var(--color-gold);
    font-size: 20px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.doc-article {
    max-width: 900px;
    margin: 0 auto 60px;
}

.doc-article img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 20px;
}

.doc-article h2 {
    color: var(--color-gold);
    font-size: 22px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.doc-article p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    margin-bottom: 15px;
}

.cinema-section {
    margin-bottom: 60px;
}

.cinema-section-title {
    color: var(--color-gold);
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid var(--color-gold);
    padding-bottom: 10px;
    margin-bottom: 30px;
}

.cinema-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 20px;
}

.cinema-item {
    text-align: center;
    cursor: pointer;
}

.cinema-item img {
    width: 100%;
    aspect-ratio: 2/3;
    object-fit: cover;
    border-radius: 4px;
    display: block;
    transition: transform 0.2s, opacity 0.2s;
}

.cinema-item:hover img {
    transform: scale(1.03);
    opacity: 0.85;
}

.cinema-item p {
    margin-top: 8px;
    font-size: 12px;
    font-weight: bold;
    color: var(--color-text);
}

.comm-section {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #eee;
}

.comm-section:last-child {
    border-bottom: none;
}

.comm-section h2 {
    color: var(--color-gold);
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.comm-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comm-list li {
    padding: 6px 0 6px 20px;
    position: relative;
    font-size: 15px;
    color: var(--color-text);
    line-height: 1.5;
}

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

.comm-img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 20px;
}

.comm-duo {
    display: flex;
    gap: 15px;
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 20px;
}

.comm-img-half {
    width: calc(50% - 8px);
    height: 250px;
    object-fit: cover;
    border-radius: 4px;
}

.equipe-grid {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    padding: 40px 0;
}

.equipe-item {
    text-align: center;
    max-width: 300px;
}

.equipe-item img {
    width: 280px;
    height: 280px;
    object-fit: cover;
    border-radius: 50%;
    display: block;
    margin: 0 auto;
    border: 3px solid var(--color-gold);
    transition: transform 0.2s;
}

.equipe-item img:hover {
    transform: scale(1.03);
}

.equipe-item p {
    margin-top: 15px;
    font-size: 18px;
    font-weight: bold;
    color: var(--color-gold);
    font-style: italic;
}

.galerie-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding: 20px 0;
}

.galerie-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    display: block;
    aspect-ratio: 1/1;
}

.galerie-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
    display: block;
}

.galerie-item:hover img {
    transform: scale(1.08);
}

.galerie-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.75));
    padding: 20px 15px 15px;
    opacity: 0;
    transition: opacity 0.3s;
}

.galerie-item:hover .galerie-overlay {
    opacity: 1;
}

.galerie-overlay span {
    color: var(--color-white);
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.galerie-nav {
    margin-bottom: 20px;
}

.galerie-nav-back {
    color: var(--color-gold);
    font-weight: bold;
    font-size: 14px;
}

.galerie-nav-back:hover {
    text-decoration: underline;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    width: 100%;
}

.photo-grid img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    cursor: pointer;
    border-radius: 4px;
    transition: opacity 0.2s, transform 0.2s;
    display: block;
}

.photo-grid img:hover {
    opacity: 0.85;
    transform: scale(1.02);
}

/* Lightbox */
#lightbox {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.92);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

#lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 4px;
}

.lightbox-close {
    position: fixed;
    top: 20px;
    right: 30px;
    color: var(--color-white);
    font-size: 40px;
    cursor: pointer;
    z-index: 10000;
    line-height: 1;
}

.lightbox-close:hover {
    color: var(--color-gold);
}

.tabs-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 30px;
}

.tabs-nav > * {
    display: inline-flex !important;
}

.tab-btn {
    background: none;
    border: 2px solid var(--color-gold);
    color: var(--color-gold);
    padding: 8px 16px;
    font-size: 13px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.2s;
    text-transform: uppercase;
}

.tab-btn:hover,
.tab-btn.active {
    background-color: var(--color-gold);
    color: var(--color-white);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* ===================================
   RESPONSIVE - Tablettes (< 1024px)
   =================================== */
@media (max-width: 1024px) {
    .site-header {
        flex-wrap: wrap;
        gap: 15px;
        padding: 15px;
    }

    .site-header nav > ul {
        flex-wrap: wrap;
        gap: 12px;
        justify-content: center;
    }

    .site-header nav a {
        font-size: 12px;
    }

    .services-section {
        gap: 30px;
        padding: 40px 30px;
    }
}

/* ===================================
   RESPONSIVE - Tablettes portrait (< 768px)
   =================================== */
@media (max-width: 768px) {
    .site-header {
        flex-direction: column;
        text-align: center;
    }

    .site-header .logo {
        margin-bottom: 10px;
    }

    .site-header nav > ul {
        gap: 10px;
        margin-bottom: 10px;
    }

    .header-extras {
        margin-bottom: 10px;
    }

    .welcome-title {
        font-size: 26px;
        padding: 30px 15px 15px;
    }

    .about-section {
        padding: 15px 25px 40px;
    }

    .about-section h2 {
        font-size: 22px;
    }

    .about-section p {
        font-size: 15px;
    }

    .services-section {
        flex-direction: column;
        align-items: center;
        padding: 30px 20px;
    }

    .service-item {
        max-width: 100%;
    }

    .avoir-section {
        padding: 40px 20px;
    }

    .section-title {
        font-size: 26px;
    }

    .avoir-grid {
        flex-direction: column;
        align-items: center;
    }

    .avoir-item {
        max-width: 100%;
    }

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

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

/* ===================================
   RESPONSIVE - Téléphones (< 480px)
   =================================== */
@media (max-width: 480px) {
    .site-header nav > ul {
        flex-direction: column;
        gap: 8px;
    }

    .btn-dvd {
        font-size: 12px;
        padding: 6px 12px;
    }

    .top-banner {
        font-size: 16px;
        padding: 18px 12px;
    }

    .welcome-title {
        font-size: 20px;
    }

    .btn-discover {
        width: 100%;
        padding: 14px 0;
    }

    .galerie-grid {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   RESPONSIVE - Grands écrans / TV (> 1600px)
   =================================== */
@media (min-width: 1600px) {
    .site-header,
    .about-section,
    .services-section,
    .avoir-section {
        max-width: 1600px;
        margin-left: auto;
        margin-right: auto;
    }
}

.site-footer {
    background-color: var(--color-black);
    color: var(--color-white);
    padding: 60px 60px 0;
    margin-top: 60px;
}

.footer-content {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-bottom: 40px;
    border-bottom: 1px solid #333;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-logo {
    font-size: 24px;
    font-weight: bold;
    color: var(--color-gold);
    margin-bottom: 15px;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    color: #aaa;
}

.footer-col h4 {
    color: var(--color-gold);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 8px;
    font-size: 14px;
    color: #aaa;
}

.footer-col ul li a {
    color: #aaa;
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: var(--color-gold);
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-social {
    color: #aaa;
    font-size: 14px;
}

.footer-social:hover {
    color: var(--color-gold);
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    font-size: 13px;
    color: #555;
}

@media (max-width: 768px) {
    .site-footer {
        padding: 40px 20px 0;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
}

.dvd-container {
    max-width: 500px;
    background: var(--color-white);
    padding: 30px;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

.dvd-container h2 {
    color: var(--color-black);
    text-align: center;
    margin-bottom: 20px;
}

.dvd-container h3 {
    color: var(--color-gold);
    font-size: 16px;
    margin: 20px 0 10px;
    text-transform: uppercase;
}

.dvd-product-info {
    background: #fff3cd;
    padding: 12px 15px;
    border-left: 5px solid var(--color-gold);
    margin-bottom: 20px;
    font-size: 15px;
    border-radius: 0 4px 4px 0;
}

.dvd-form-group {
    margin-bottom: 15px;
}

.dvd-form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    font-size: 14px;
    color: var(--color-text);
}

.dvd-form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 14px;
    transition: border-color 0.2s;
}

.dvd-form-group input:focus {
    border-color: var(--color-gold);
    outline: none;
}

.dvd-row {
    display: flex;
    gap: 10px;
}

.dvd-btn {
    width: 100%;
    background: var(--color-gold);
    color: var(--color-white);
    padding: 14px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 10px;
    transition: background 0.2s;
}

.dvd-btn:hover {
    background: #a07800;
}

.formule-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 30px;
}

.formule-item {
    flex: 1;
    min-width: 220px;
    max-width: 320px;
    border: 2px solid var(--color-gold);
    border-radius: 8px;
    padding: 25px 20px;
    text-align: center;
}

.formule-featured {
    background-color: var(--color-black);
    color: var(--color-white);
}

.formule-featured p {
    color: #ccc;
}

.formule-item h3 {
    color: var(--color-gold);
    font-size: 16px;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.formule-prix {
    font-size: 32px;
    font-weight: bold;
    color: var(--color-gold);
    margin: 10px 0;
}

.formule-duree {
    font-size: 13px;
    font-style: italic;
    margin-bottom: 15px;
    color: #888;
}

.formule-featured .formule-duree {
    color: #aaa;
}

.formule-item p {
    font-size: 14px;
    line-height: 1.5;
}

.search-bar {
    display: none;
    background-color: var(--color-black);
    padding: 15px 40px;
    border-top: 1px solid #333;
}

.search-bar.active {
    display: flex;
    align-items: center;
}

.search-bar form {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    gap: 10px;
}

.search-bar input[type="search"] {
    flex: 1;
    padding: 10px 15px;
    background: #222;
    border: 1px solid var(--color-gold);
    border-radius: 4px;
    color: var(--color-white);
    font-size: 15px;
    outline: none;
}

.search-bar input[type="search"]::placeholder {
    color: #888;
}

.search-bar button {
    background: var(--color-gold);
    border: none;
    padding: 10px 15px;
    border-radius: 4px;
    cursor: pointer;
    color: var(--color-white);
    display: flex;
    align-items: center;
}

.search-bar button:hover {
    background: #a07800;
}

.search-close {
    color: #888;
    cursor: pointer;
    font-size: 18px;
    padding: 5px;
}

.search-close:hover {
    color: var(--color-white);
}

.search-results {
    max-width: 800px;
    margin: 0 auto;
}

.search-result-item {
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.search-result-item h3 {
    margin-bottom: 8px;
}

.search-result-item h3 a {
    color: var(--color-gold);
    font-size: 20px;
}

.search-result-item h3 a:hover {
    text-decoration: underline;
}

.search-result-item p {
    color: var(--color-text);
    font-size: 15px;
    line-height: 1.5;
}

.luxfly-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
    justify-content: center;
}

.luxfly-block {
    flex: 1 1 300px;
    max-width: 340px;
    text-align: center;
}

.luxfly-block a {
    display: block;
    overflow: hidden;
    border-radius: 4px;
}

.luxfly-block img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 4px;
    transition: transform 0.35s ease;
    display: block;
}

.luxfly-block a:hover img {
    transform: scale(1.07);
}

.luxfly-block h3 {
    margin: 16px 0 10px;
    color: var(--color-gold);
    font-size: 18px;
    letter-spacing: 1px;
}

.luxfly-block p {
    color: var(--color-text);
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 12px;
}

.luxfly-link {
    display: inline-block;
    color: var(--color-gold);
    border: 1px solid var(--color-gold);
    padding: 8px 20px;
    font-size: 13px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.luxfly-link:hover {
    background: var(--color-gold);
    color: #fff;
}

.diffusion-section {
    max-width: 800px;
    margin: 0 auto 40px;
}

.diffusion-section h2 {
    color: var(--color-gold);
    font-size: 22px;
    margin-bottom: 14px;
}

.diffusion-section p {
    color: var(--color-text);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.diffusion-img-full {
    width: 100%;
    border-radius: 4px;
    margin: 20px 0;
}

.diffusion-img-half {
    width: 100%;
    max-width: 400px;
    display: block;
    margin: 20px auto;
    border-radius: 4px;
}

.team-member-page {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.team-member-photo {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--color-gold);
    margin-bottom: 20px;
}

.team-member-role {
    color: var(--color-gold);
    font-size: 16px;
    letter-spacing: 1px;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.team-member-bio {
    text-align: left;
}

.team-member-bio p {
    color: var(--color-text);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 18px;
}

.team-back-link {
    display: inline-block;
    margin-top: 30px;
    color: var(--color-gold);
    text-decoration: none;
    font-size: 14px;
}

.team-back-link:hover {
    text-decoration: underline;
}

.equipe-item a {
    text-decoration: none;
    color: inherit;
}

.equipe-item p a:hover {
    color: var(--color-gold);
}

.logo-img {
    height: 50px;
    width: auto;
    display: block;
}

.footer-logo-img {
    height: 45px;
    width: auto;
    display: block;
    margin-bottom: 15px;
}

.comm-row {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 80px;
}

.comm-row.reverse {
    flex-direction: row-reverse;
}

.comm-row-media {
    flex: 1 1 45%;
}

.comm-row-media img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    display: block;
    transition: transform 0.3s ease;
}

.comm-row-media img:hover {
    transform: scale(1.02);
}

.comm-row-media.duo {
    display: flex;
    gap: 12px;
}

.comm-row-media.duo img {
    width: 50%;
    height: 260px;
    object-fit: cover;
}

.comm-row-text {
    flex: 1 1 50%;
}

.comm-row-text h2 {
    color: var(--color-gold);
    font-size: 26px;
    margin-bottom: 16px;
    position: relative;
    padding-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.comm-row-text h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: var(--color-gold);
}

.comm-row-text p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-text);
    margin-bottom: 12px;
}

.comm-row-text ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comm-row-text ul li {
    padding: 6px 0 6px 20px;
    position: relative;
    font-size: 15px;
    color: var(--color-text);
    line-height: 1.5;
}

.comm-row-text ul li::before {
    content: "•";
    color: var(--color-gold);
    position: absolute;
    left: 0;
}

.comm-text-block {
    max-width: 800px;
    margin: 0 auto 70px;
    text-align: center;
    padding: 40px 30px;
    background: #faf8f3;
    border-radius: 12px;
    border: 1px solid #eee;
}

.comm-text-block h2 {
    color: var(--color-gold);
    font-size: 24px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.comm-text-block p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-text);
}

@media (max-width: 768px) {
    .comm-row,
    .comm-row.reverse {
        flex-direction: column;
        gap: 25px;
        margin-bottom: 50px;
    }
    .comm-row-media.duo {
        flex-direction: column;
    }
    .comm-row-media.duo img {
        width: 100%;
    }
}

#film-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(6px);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

#film-modal {
    background: var(--color-white);
    border-radius: 12px;
    padding: 40px 35px 35px;
    max-width: 550px;
    width: 90%;
    max-height: 75vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 25px 60px rgba(0,0,0,0.4);
}

#film-close {
    position: absolute;
    top: 15px;
    left: 20px;
    font-size: 22px;
    cursor: pointer;
    color: var(--color-gold);
    font-weight: bold;
    line-height: 1;
}

#film-close:hover {
    color: #a07800;
}

#film-title {
    color: var(--color-gold);
    font-size: 22px;
    margin-bottom: 20px;
    padding-left: 20px;
}

#film-desc {
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-text);
}

/* ===================================
   YOGA SLIDER
   =================================== */
.yoga-slider {
    position: relative;
    max-width: 700px;
    margin: 25px 0;
    border-radius: 8px;
    overflow: hidden;
}

.yoga-slider .slider-track {
    display: flex;
    transition: transform 0.4s ease;
}

.yoga-slider .slider-track img {
    min-width: 100%;
    max-height: 420px;
    object-fit: contain;
    flex-shrink: 0;
    display: block;
    background: #000;
}

.slider-btn {
    position: absolute;
    top: 0;
    height: 100%;
    width: 80px;
    background: rgba(0, 0, 0, 0.0);
    border: none;
    color: rgba(255, 255, 255, 0.0);
    font-size: 32px;
    cursor: pointer;
    transition: background 0.25s, color 0.25s;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn.prev { left: 0; }
.slider-btn.next { right: 0; }

.yoga-slider:hover .slider-btn {
    background: rgba(0, 0, 0, 0.25);
    color: rgba(255, 255, 255, 0.85);
}

.slider-btn:hover {
    background: rgba(0, 0, 0, 0.45) !important;
    color: white !important;
}

.home-separator {
    display: flex;
    align-items: center;
    max-width: 500px;
    margin: 0 auto 30px;
    padding: 0 40px;
}

.home-separator-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--color-gold));
}

.home-separator-line:last-child {
    background: linear-gradient(to left, transparent, var(--color-gold));
}

.home-separator-diamond {
    width: 8px;
    height: 8px;
    background: var(--color-gold);
    transform: rotate(45deg);
    margin: 0 14px;
    flex-shrink: 0;
}

.services-top-accent {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--color-gold);
}

.avoir-title-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 400px;
    margin: 0 auto 40px;
}

.avoir-title-line {
    flex: 1;
    height: 1px;
    background: var(--color-gold);
}

.avoir-title-wrapper .section-title {
    margin: 0;
    white-space: nowrap;
}

.coverflow-wrapper {
    width: 100%;
    overflow: hidden;
    padding: 60px 0 40px;
    position: relative;
}

.coverflow-wrapper::before,
.coverflow-wrapper::after {
    content: '';
    display: block;
    position: absolute;
    left: 0; right: 0;
    height: 3px;
    background: linear-gradient(to right, transparent, var(--color-gold) 30%, var(--color-gold) 70%, transparent);
}

.coverflow-wrapper::before { top: 0; }
.coverflow-wrapper::after { bottom: 0; }

.coverflow-track {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 380px;
    position: relative;
    cursor: grab;
    user-select: none;
}

.coverflow-track:active {
    cursor: grabbing;
}

.cf-item {
    position: absolute;
    width: 200px;
    flex-shrink: 0;
    transform-origin: center center;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.cf-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

.cf-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    background: none;
    border: 2px solid var(--color-gold);
    color: var(--color-gold);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cf-arrow:hover {
    background: var(--color-gold);
    color: #000;
}

.cf-arrow-left { left: 20px; }
.cf-arrow-right { right: 20px; }