/* 
    Patrick Padovani - Muay Thai
    Modern, Premium, High-End Design
    Color Palette: Black (#0a0a0a), White (#ffffff), Red (#cc0000)
*/

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@300;400;700&display=swap');

:root {
    --primary: #cc0000;
    --primary-hover: #ff0000;
    --bg-dark: #0a0a0a;
    --bg-card: #141414;
    --text-light: #ffffff;
    --text-dim: #a0a0a0;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.impact-text {
    font-family: 'Bebas Neue', cursive;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* --- Scroll Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ===========================
   NAVIGATION
   =========================== */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: var(--transition);
}

nav.scrolled {
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(12px);
    padding: 14px 50px;
    border-bottom: 1px solid rgba(204, 0, 0, 0.15);
}

.logo {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.8rem;
    letter-spacing: 3px;
    color: var(--text-light);
    text-decoration: none;
    flex-shrink: 0;
}

.logo span {
    color: var(--primary);
}

/* Desktop nav links */
.nav-links {
    display: flex;
    gap: 28px;
    align-items: center;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    white-space: nowrap;
}

.nav-links a:hover {
    color: var(--primary);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1100;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--text-light);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile overlay */
.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 900;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.mobile-overlay.show {
    opacity: 1;
    pointer-events: auto;
}

/* ===========================
   HERO SECTION
   =========================== */
.hero {
    height: 100vh;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(to bottom, rgba(10, 10, 10, 0.7) 0%, rgba(10, 10, 10, 0.85) 100%),
        url('https://images.unsplash.com/photo-1620123449946-30d6efd4b8ba?q=80&w=1920&auto=format&fit=crop') center/cover no-repeat;
}

#hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.hero h1 {
    font-size: clamp(3.5rem, 10vw, 8rem);
    margin-bottom: 10px;
    line-height: 0.9;
    text-shadow: 0 0 20px rgba(204, 0, 0, 0.4);
}

.hero p {
    font-size: clamp(0.9rem, 3vw, 1.5rem);
    color: var(--text-dim);
    margin-bottom: 30px;
    letter-spacing: 5px;
    text-transform: uppercase;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 40px;
    background: var(--primary);
    color: var(--text-light);
    text-decoration: none;
    font-family: 'Bebas Neue', cursive;
    font-size: 1.2rem;
    border-radius: 2px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(204, 0, 0, 0.3);
    letter-spacing: 2px;
}

.btn:hover {
    background: var(--primary-hover);
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(204, 0, 0, 0.6);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    background: transparent;
    color: var(--text-light);
    text-decoration: none;
    font-family: 'Bebas Neue', cursive;
    font-size: 1.1rem;
    border-radius: 2px;
    border: 2px solid var(--primary);
    transition: var(--transition);
    letter-spacing: 2px;
}

.btn-outline:hover {
    background: var(--primary);
    box-shadow: 0 0 20px rgba(204, 0, 0, 0.4);
    transform: translateY(-2px);
}

/* ===========================
   SECTIONS COMMON
   =========================== */
section {
    padding: 100px 10%;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 15px;
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-dim);
    font-size: 1rem;
    margin-top: 20px;
    margin-bottom: 10px;
}

/* ===========================
   ABOUT SECTION
   =========================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 20px;
}

.about-img {
    position: relative;
    width: 100%;
    max-width: 460px;
    margin: 0 auto;
}

.about-img img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    object-position: top center;
    border: 3px solid var(--primary);
    filter: grayscale(0.3);
    transition: var(--transition);
    display: block;
}

.about-img:hover img {
    filter: grayscale(0);
}

.about-img-badge {
    position: absolute;
    bottom: -18px;
    right: -18px;
    background: var(--primary);
    color: white;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Bebas Neue', cursive;
    letter-spacing: 2px;
    font-size: 1rem;
    box-shadow: 0 8px 25px rgba(204, 0, 0, 0.5);
}

.about-text h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 18px;
    color: var(--text-dim);
    font-size: 1rem;
    line-height: 1.8;
}

.about-stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-number {
    font-family: 'Bebas Neue', cursive;
    font-size: 2.5rem;
    color: var(--primary);
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

/* ===========================
   NOSSA EQUIPE
   =========================== */
.equipe {
    background: linear-gradient(to bottom, #0a0a0a, #100505, #0a0a0a);
}

.equipe-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.equipe-card {
    background: var(--bg-card);
    border: 1px solid #222;
    border-radius: 4px;
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
}

.equipe-card:hover {
    transform: translateY(-8px);
    border-color: rgba(204, 0, 0, 0.4);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.equipe-img {
    position: relative;
    overflow: hidden;
    height: 320px;
}

.equipe-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: var(--transition);
    filter: grayscale(0.2);
}

.equipe-card:hover .equipe-img img {
    transform: scale(1.05);
    filter: grayscale(0);
}

.equipe-badge {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(204, 0, 0, 0.9));
    padding: 40px 20px 14px;
    color: white;
    font-family: 'Bebas Neue', cursive;
    font-size: 1rem;
    letter-spacing: 2px;
    text-align: center;
    transform: translateY(100%);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.equipe-card:hover .equipe-badge {
    transform: translateY(0);
}

.equipe-info {
    padding: 22px;
}

.equipe-info h3 {
    font-size: 1.5rem;
    margin-bottom: 4px;
}

.equipe-role {
    display: block;
    font-size: 0.8rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
    margin-bottom: 12px;
}

.equipe-info p {
    font-size: 0.9rem;
    color: var(--text-dim);
    line-height: 1.6;
}

/* --- Modal --- */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow-y: auto;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: #111;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    max-width: 700px;
    width: 100%;
    overflow: hidden;
    position: relative;
    animation: modalIn 0.35s ease;
}

@keyframes modalIn {
    from {
        opacity: 0;
        transform: scale(0.92) translateY(20px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid #333;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.1rem;
    z-index: 10;
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.modal-img {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.modal-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.modal-body {
    padding: 30px;
}

.modal-body h2 {
    font-size: 2.2rem;
    margin-bottom: 4px;
}

.modal-role {
    display: block;
    font-size: 0.8rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 20px;
}

.modal-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 24px;
}

.modal-stat {
    background: #1a1a1a;
    border: 1px solid #222;
    border-radius: 4px;
    padding: 12px 16px;
    font-size: 0.85rem;
    color: var(--text-dim);
    line-height: 1.4;
}

.modal-stat strong {
    color: var(--primary);
    font-family: 'Bebas Neue', cursive;
    font-size: 1.3rem;
    display: block;
    margin-bottom: 2px;
    letter-spacing: 1px;
}

.modal-body p {
    color: var(--text-dim);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 14px;
}

.modal-socials {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid #222;
}

.modal-socials a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    padding: 10px 20px;
    border: 1px solid #333;
    border-radius: 30px;
    transition: var(--transition);
}

.modal-socials a i {
    color: var(--primary);
    font-size: 1.1rem;
}

.modal-socials a:hover {
    border-color: var(--primary);
    background: rgba(204, 0, 0, 0.1);
}

/* ===========================
   MODALITIES
   =========================== */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.card {
    background: var(--bg-card);
    padding: 40px 30px;
    text-align: center;
    border-radius: 4px;
    transition: var(--transition);
    border-bottom: 3px solid transparent;
}

.card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.5);
}

.card i {
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.card p {
    color: var(--text-dim);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ===========================
   GALERIA
   =========================== */
.galeria {
    background: #080808;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, 260px);
    gap: 12px;
    margin-top: 50px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

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

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

.gallery-featured {
    grid-column: span 5;
    grid-row: span 2;
}

.gallery-item:nth-child(2) {
    grid-column: span 4;
}

.gallery-item:nth-child(3) {
    grid-column: span 3;
}

.gallery-item:nth-child(4) {
    grid-column: span 3;
}

.gallery-item:nth-child(5) {
    grid-column: span 4;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 40%, rgba(204, 0, 0, 0.8));
    display: flex;
    align-items: flex-end;
    padding: 16px;
    opacity: 0;
    transition: opacity 0.3s;
}

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

.gallery-overlay span {
    font-family: 'Bebas Neue', cursive;
    font-size: 1rem;
    letter-spacing: 2px;
    color: white;
}

/* ===========================
   LIGHTBOX GALLERY
    =========================== */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 90vh;
    position: relative;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border: 2px solid var(--primary);
    border-radius: 4px;
    box-shadow: 0 0 40px rgba(204, 0, 0, 0.3);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    background: none;
    border: none;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 2001;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(204, 0, 0, 0.8);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    z-index: 2002;
}

.lightbox-nav:hover {
    background: var(--primary);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-nav:active {
    transform: translateY(-50%) scale(0.9);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-family: 'Bebas Neue', cursive;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.gallery-cta {
    text-align: center;
    margin-top: 40px;
}

/* ===========================
   DIFFERENTIALS
   =========================== */
.differentials {
    background: linear-gradient(to bottom, #0a0a0a, #1a0505, #0a0a0a);
    text-align: center;
}

.diff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 20px;
}

.diff-item i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.diff-item h4 {
    margin-bottom: 10px;
    font-size: 1.3rem;
    letter-spacing: 2px;
}

.diff-item p {
    color: var(--text-dim);
    font-size: 0.9rem;
}

/* ===========================
   CTA SECTION
   =========================== */
.cta {
    text-align: center;
    padding: 150px 10%;
    background: url('gallery1.png') center/cover no-repeat;
    background-attachment: fixed;
    position: relative;
    z-index: 1;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.88);
    z-index: -1;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta h2 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 20px;
}

.cta p {
    color: var(--text-dim);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

/* ===========================
   FOOTER
   =========================== */
footer {
    padding: 100px 10% 60px;
    background: #000;
    text-align: center;
    border-top: 1px solid #1a0505;
}

.footer-logo {
    margin-bottom: 50px;
    display: flex;
    justify-content: center;
}

.footer-logo .logo {
    font-size: 2.2rem;
    transition: var(--transition);
}

.footer-logo .logo:hover {
    transform: scale(1.05);
    text-shadow: 0 0 15px rgba(204, 0, 0, 0.4);
}

.footer-socials {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.footer-socials a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-dim);
    font-size: 0.95rem;
    text-decoration: none;
    transition: var(--transition);
    padding: 8px 16px;
    border: 1px solid #2a2a2a;
    border-radius: 30px;
}

.footer-socials a i {
    font-size: 1.2rem;
    color: var(--primary);
}

.footer-socials a:hover {
    color: var(--text-light);
    border-color: var(--primary);
    background: rgba(204, 0, 0, 0.08);
}

.footer-info p {
    color: #444;
    font-size: 0.85rem;
}

/* ===========================
   BACK TO TOP BUTTON
    =========================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--text-light);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(204, 0, 0, 0.4);
    z-index: 1999;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary-hover);
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(204, 0, 0, 0.6);
}

.back-to-top:active {
    transform: translateY(2px) scale(0.95);
}

/* ===========================
    GALLERY PAGE (gallery.html)
   =========================== */
.gallery-page-header {
    padding: 160px 10% 80px;
    text-align: center;
    background: radial-gradient(circle at center, #1a0505 0%, #0a0a0a 100%);
}

.gallery-page-grid {
    padding: 40px 10% 100px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 16px;
}

.gallery-page-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
}

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

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

.gallery-page-item .gallery-overlay {
    background: linear-gradient(transparent 50%, rgba(0, 0, 0, 0.7));
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
    nav {
        padding: 18px 30px;
    }

    nav.scrolled {
        padding: 14px 30px;
    }

    .nav-links {
        gap: 20px;
    }

    .nav-links a {
        font-size: 0.75rem;
    }

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

    .gallery-featured {
        grid-column: span 2;
        grid-row: span 1;
        height: 300px;
    }

    .gallery-item:nth-child(2),
    .gallery-item:nth-child(3),
    .gallery-item:nth-child(4),
    .gallery-item:nth-child(5) {
        grid-column: span 1;
        height: 220px;
    }
}

@media (max-width: 900px) {

    /* Show hamburger */
    .hamburger {
        display: flex;
    }

    .mobile-overlay {
        display: block;
    }

    /* Mobile nav */
    .nav-links {
        position: fixed;
        top: 0;
        right: -280px;
        width: 260px;
        height: 100vh;
        background: #0d0d0d;
        border-left: 1px solid #1a0505;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 8px;
        padding: 80px 30px 40px;
        z-index: 1000;
        transition: right 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links a {
        font-size: 1.2rem;
        padding: 10px 0;
        width: 100%;
        border-bottom: 1px solid #1a1a1a;
        letter-spacing: 2px;
    }

    .nav-links a:last-child {
        border-bottom: none;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-img {
        max-width: 320px;
    }

    .about-img-badge {
        bottom: -12px;
        right: -8px;
    }

    section {
        padding: 80px 6%;
    }
}

@media (max-width: 600px) {
    nav {
        padding: 16px 20px;
    }

    nav.scrolled {
        padding: 12px 20px;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero p {
        font-size: 0.85rem;
        letter-spacing: 3px;
    }

    section {
        padding: 70px 5%;
    }

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

    .gallery-featured {
        grid-column: auto;
        grid-row: auto;
        height: 250px;
    }

    .gallery-item:nth-child(n) {
        grid-column: auto;
        height: 200px;
    }

    .footer-socials {
        flex-direction: column;
        align-items: center;
    }

    .about-stats {
        gap: 20px;
    }

    .cta {
        padding: 100px 5%;
        background-attachment: scroll;
    }

    .equipe-img {
        height: 260px;
    }

    /* Lightbox mobile */
    .lightbox-nav {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-close {
        top: 15px;
        right: 20px;
        font-size: 2rem;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}