/* ============================================
   VARIABLES ET RESET CSS
   ============================================ */

:root {
    --primary-color: #d4af37;
    --primary-dark: #b8860b;
    --secondary-color: #2a2a2a;
    --text-color: #333;
    --light-bg: #f8f8f8;
    --white: #ffffff;
    --gray-light: #e0e0e0;
    --gray-medium: #999;
    --spacing-unit: 1rem;
    --transition: all 0.3s ease;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 15px 40px rgba(0, 0, 0, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    position: relative;
}

/* ============================================
   CONTENEUR ET GRILLE
   ============================================ */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    backdrop-filter: none;
    z-index: 1000;
    transition: var(--transition);
    box-shadow: none;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
}

.header__container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

/* Logo */
.header__logo {
    flex-shrink: 0;
    position: absolute;
    left: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--white);
    font-weight: 700;
    font-size: 1.3rem;
    transition: var(--transition);
}

.header.scrolled .logo {
    color: var(--text-color);
}

.logo__icon {
    width: 40px;
    height: 40px;
    display: inline-block;
    object-fit: contain;
    opacity: 1 !important;
    animation: none !important;
}

.logo__text {
    line-height: 1.2;
}

.logo__text small {
    font-size: 0.65rem;
    opacity: 0.7;
    display: block;
    font-weight: 400;
}

/* Navigation */
.header__nav {
    flex: 1;
    display: flex;
    justify-content: center;
    margin: 0 2rem;
}

/* CTA Téléphone */
.header__cta-phone {
    position: absolute;
    right: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
    text-decoration: none;
    color: var(--white);
    transition: var(--transition);
    gap: 0.5rem;
}

.header__cta-phone-text {
    font-size: 0.9rem;
    white-space: nowrap;
    font-weight: 600;
}

.header.scrolled .header__cta-phone {
    color: var(--text-color);
}

.header__cta-phone:hover {
    transform: scale(1.1);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.header.scrolled .nav-link {
    color: var(--text-color);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Toggle mobile */
.header__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    position: absolute;
    right: 2rem;
    color: var(--text-color);
}

.header__toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    transition: var(--transition);
    border-radius: 2px;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    margin-top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    padding: 0;
    top: 0;
    background: url('../img/hero-bckg.jpg') center/cover fixed no-repeat;
    filter: blur(2);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(8px);
    z-index: 0;
}

.hero__container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    height: 100%;
    padding: 0 3rem;
    line-height: 1.6;
}

/* Colonnes du hero */
.hero__column {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.hero__column--left {
    justify-content: center;
    align-items: center;
}

.hero__column--right {
    text-align: center;
    justify-content: center;
}

.hero__logo {
    opacity: 1;
    animation: none;
}

.hero__logo img {
    width: 120px;
    height: auto;
    object-fit: contain;
}

.hero__content {
    opacity: 1 !important;
    z-index: 10001;
    position: relative;
    animation: none;
}

.hero__title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--white);
    line-height: 1.2;
    text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
    text-align: center;
}

.hero__subtitle {
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 0;
    font-weight: 300;
    text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.5);
    max-width: 600px;
    line-height: 1.6;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.hero__logo-mobile {
    display: none;
    opacity: 1;
    animation: none;
}

.hero__circle-wrapper {
    position: relative;
    width: min(600px, 40vmin);
    height: min(600px, 40vmin);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    z-index: 0;
}

.hero__icons-circle {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    animation: rotateCircle 60s linear infinite;
}

.hero__icons-circle:hover {
    animation-play-state: paused;
}

.hero__icons-center-logo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.8s ease 0.4s forwards;
    opacity: 0;
    z-index: 9999;
    pointer-events: none;
}

.hero__icons-center-logo img {
    width: 60%;
    height: 60%;
    object-fit: contain;
    position: relative;
    z-index: 10000;
    opacity: 1 !important;
}

.hero__buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    opacity: 1;
    z-index: 10001;
    position: relative;
}

.hero-icon {
    width: 95px;
    height: 95px;
    border: 0px solid var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    backdrop-filter: none;
    transition: var(--transition);
    animation: counterRotateCircle 60s linear infinite;
    opacity: 1 !important;
    z-index: 500;
    text-decoration: none;
    cursor: pointer;
    visibility: visible !important;
}

.hero__icons-circle:hover .hero-icon {
    animation-play-state: paused;
}

.hero-icon:hover {
    background: transparent;
    border-color: var(--white);
    transform: scale(1.5) !important;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}

.hero-icon__svg {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: brightness(1) invert(1);
    transition: var(--transition);
    opacity: 1 !important;
    visibility: visible !important;
}
    filter: brightness(1) invert(1);
    transition: var(--transition);
}

.hero-icon:hover .hero-icon__svg {
    transform: scale(1.1);
}

.hero__title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--white);
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
}

.hero__subtitle {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 2rem;
    font-weight: 300;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

.hero__image {
    display: none;
}

.hero__image img {
    display: none;
}

/* ============================================
   BOUTONS
   ============================================ */

.btn {
    display: inline-block;
    padding: 0.9rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    font-size: 1rem;
}

.btn--primary {
    background: var(--primary-color);
    color: var(--secondary-color);
    box-shadow: var(--shadow-md);
}

.btn--primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn--secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn--secondary:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
}

/* ============================================
   SECTION HEADER
   ============================================ */

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    animation: fadeIn 0.8s ease;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    position: relative;
}

.section-header h2::after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background: var(--primary-color);
    margin: 1rem auto 0;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--gray-medium);
    max-width: 600px;
    margin: 1rem auto 0;
}

/* ============================================
   SECTION AGENCE
   ============================================ */

.agency {
    padding: 5rem 0;
    background: var(--light-bg);
}

.agency__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.agency__text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.agency__text p {
    color: var(--gray-medium);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.agency__features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 2rem;
}

.agency__features li {
    font-weight: 600;
    color: var(--primary-color);
    padding-left: 1rem;
}

.agency__images {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.agency__images img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    object-fit: cover;
    height: 300px;
}

.agency__images img:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

/* ============================================
   PORTFOLIO
   ============================================ */

.portfolio {
    padding: 5rem 0;
    background: #ffffff;
}

.portfolio__gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.portfolio__item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    height: 350px;
    box-shadow: var(--shadow-md);
    animation: fadeInUp 0.6s ease backwards;
}

.portfolio__item:nth-child(1) { animation-delay: 0.1s; }
.portfolio__item:nth-child(2) { animation-delay: 0.2s; }
.portfolio__item:nth-child(3) { animation-delay: 0.3s; }
.portfolio__item:nth-child(4) { animation-delay: 0.4s; }
.portfolio__item:nth-child(5) { animation-delay: 0.5s; }
.portfolio__item:nth-child(6) { animation-delay: 0.6s; }

.portfolio__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.portfolio__item:hover img {
    transform: scale(1.1) rotate(1deg);
    filter: brightness(0.7);
}

.portfolio__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(212, 175, 55, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    border-radius: 8px;
}

.portfolio__overlay p {
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
    text-align: center;
}

.portfolio__item:hover .portfolio__overlay {
    opacity: 1;
}

/* ============================================
   LIGHTBOX
   ============================================ */

.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.lightbox.active {
    display: flex;
}

.lightbox__image {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 8px;
    animation: slideUp 0.3s ease;
}

.lightbox__close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: white;
    font-size: 40px;
    cursor: pointer;
    transition: var(--transition);
}

.lightbox__close:hover {
    transform: scale(1.2);
    color: var(--primary-color);
}

.lightbox__nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 2rem;
}

.lightbox__prev,
.lightbox__next {
    background: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    padding: 0.8rem 1.5rem;
    font-size: 1.2rem;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
}

.lightbox__prev:hover,
.lightbox__next:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
}

/* ============================================
   SECTION ÉVÉNEMENTS (13 ICÔNES)
   ============================================ */

.events {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(42, 42, 42, 0.05) 100%);
}

.events__icons-line {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    margin-bottom: 3rem;
    flex-wrap: nowrap;
    overflow-x: auto;
}

#events-icons-container {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: nowrap;
    width: 100%;
}

.scroll-hint {
    display: none;
}

.event-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    background: var(--light-bg);
    border: 2px solid var(--gray-light);
    width: 50px;
    height: 50px;
    min-width: 50px;
    min-height: 50px;
    flex-shrink: 0;
}

.event-icon:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: scale(1.1);
}

.event-icon.active {
    border: 3px solid var(--primary-color);
    background: var(--light-bg);
}

.event-icon__svg {
    width: 30px;
    height: 30px;
    object-fit: contain;
    transition: var(--transition);
    filter: brightness(0.8);
}

.event-icon:hover .event-icon__svg {
    filter: brightness(1) invert(1);
    transform: scale(1.15);
}

.event-icon.active .event-icon__svg {
    filter: brightness(0.8);
}

.events__details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    animation: fadeIn 0.5s ease;
}

.events__image-wrapper {
    overflow: hidden;
    border-radius: 8px;
}

.events__image-wrapper img {
    width: 100%;
    max-width: 100%;
    height: 500px;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    transition: var(--transition);
}

.events__image-wrapper img:hover {
    transform: scale(1.05);
}

.events__info {
    padding: 2rem;
}

.events__info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.events__info p {
    color: var(--gray-medium);
    line-height: 1.8;
    font-size: 1rem;
}

/* ============================================
   SECTION CONTACT
   ============================================ */

.contact {
    padding: 5rem 0;
    background: var(--light-bg);
}

.contact__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact__info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact__item {
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.contact__item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.contact__item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact__item p {
    color: var(--gray-medium);
    line-height: 1.8;
}

.contact__item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.contact__item a:hover {
    text-decoration: underline;
}

.contact__social {
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.contact__social h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--light-bg);
    border-radius: 50%;
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 700;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

/* Formulaire de contact */
.contact__form {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--secondary-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid var(--gray-light);
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

#contact-form .btn {
    width: 100%;
    margin-top: 1rem;
}

/* Message de statut du formulaire */
.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    display: none;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    display: block;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    display: block;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--secondary-color);
    color: var(--gray-light);
    padding: 3rem 0 1rem;
    margin-top: 5rem;
}

.footer__content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer__section h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer__section p,
.footer__section a {
    color: var(--gray-light);
    text-decoration: none;
    transition: var(--transition);
    line-height: 1.8;
}

.footer__section a:hover {
    color: var(--primary-color);
}

.footer__section ul {
    list-style: none;
}

.footer__section ul li {
    margin-bottom: 0.5rem;
}

.footer__social {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer__social a {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(212, 175, 55, 0.2);
    border-radius: 4px;
    transition: var(--transition);
}

.footer__social a:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
}

.footer__bottom {
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer__links {
    display: flex;
    gap: 2rem;
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes rotateCircle {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes counterRotateCircle {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(-360deg);
    }
}

.fade-in {
    animation: fadeInUp 0.6s ease;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Desktop - cacher les éléments mobiles */
.nav__cta-mobile {
    display: none;
}

.nav__close {
    display: none;
}

@media (max-width: 768px) {
    /* Header mobile - hauteur 0 pour pas d'espace */
    .header {
        position: fixed !important;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        background: transparent !important;
        height: auto;
        min-height: 0;
        z-index: 9999;
    }

    .header__container {
        padding: 2rem 0.5rem;
        min-height: 0;
        height: auto;
    }

    .header.scrolled {
        background: rgba(255, 255, 255, 0.7) !important;
        backdrop-filter: blur(10px);
    }

    .header.scrolled .header__toggle span {
        background: var(--text-color) !important;
    }

    .header__toggle {
        display: flex;
        right: 0.5rem;
    }

    .header__toggle span {
        background: var(--white) !important;
    }

    .header__logo img {
        width: 30px;
        height: 30px;
    }

    .logo__text {
        display: none;
    }

    .header__logo {
        left: 1rem;
    }

    .header__cta-phone {
        display: none;
    }

    .header__cta-phone-text {
        display: none;
    }

    .header__nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 0;
        margin: 0;
        z-index: 2000;
        overflow-y: auto;
        box-sizing: border-box;
    }

    .header__nav.active {
        display: flex;
    }

    .nav__close {
        display: flex;
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
        background: none;
        border: none;
        color: var(--white);
        font-size: 2rem;
        cursor: pointer;
        transition: var(--transition);
        width: 40px;
        height: 40px;
        align-items: center;
        justify-content: center;
    }

    .nav__close:hover {
        color: var(--primary-color);
        transform: rotate(90deg);
    }

    .nav-menu {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
        width: 100%;
        max-width: 100%;
        margin-bottom: 3rem;
        padding: 0 2rem;
        box-sizing: border-box;
    }

    .nav-link {
        color: var(--white) !important;
        font-size: 1.3rem;
    }

    .nav__cta-mobile {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        max-width: 300px;
        padding: 0 2rem;
        box-sizing: border-box;
    }

    .nav__cta {
        display: block;
        padding: 1rem;
        border-radius: 5px;
        text-decoration: none;
        text-align: center;
        font-weight: 600;
        transition: var(--transition);
    }

    .nav__cta-contact {
        background: var(--primary-color);
        color: var(--secondary-color);
    }

    .nav__cta-contact:hover {
        background: var(--primary-dark);
        transform: scale(1.05);
    }

    .nav__cta-phone {
        background: transparent;
        color: var(--white);
        border: 2px solid var(--primary-color);
    }

    .nav__cta-phone:hover {
        background: var(--primary-color);
        color: var(--secondary-color);
    }

    /* Hero section */
    .hero {
        height: 100vh;
        min-height: -webkit-fill-available;
        padding: 0 !important;
        margin: 0 !important;
        position: relative;
        top: 0;
        left: 0;
        right: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
        overflow: hidden;
    }

    .hero__container {
        flex-direction: column;
        gap: 1.5rem;
        padding: 0 0.5rem;
        align-items: center;
        justify-content: center;
        overflow-x: hidden;
    }

    .hero__column {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .hero__column--left {
        margin-top: 5rem;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .hero__column--right {
        gap: 1.5rem;
    }

    .hero__logo img {
        width: 80px;
    }

    .hero__logo-mobile {
        display: block;
        text-align: center;
        margin-bottom: -6rem;
        opacity: 1 !important;
        animation: none !important;
    }

    .hero__logo-mobile img {
        width: min(596px, 59.85vmin);
        height: auto;
        opacity: 1 !important;
    }

    .hero__circle-wrapper {
        position: relative;
        width: min(300px, 25vmin);
        height: min(300px, 25vmin);
        margin: 0 auto;
        display: none;
        place-items: center;
        flex-shrink: 0;
    }

    .hero__icons-circle {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .hero__icons-center-logo {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero__icons-center-logo img {
        width: 180px;
        height: 180px;
    }

    .hero-icon {
        width: 35px;
        height: 35px;
    }

    .hero-icon__svg {
        width: 20px;
        height: 20px;
    }

    .hero__title {
        font-size: 1.8rem;
        letter-spacing: 1px;
        margin-bottom: 0.3rem;
    }

    .hero__subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
    }

    .hero__buttons {
        flex-direction: column;
        gap: 0.8rem;
        width: 100%;
        max-width: 300px;
    }

    .hero__buttons .btn {
        width: 100%;
        padding: 0.9rem 1rem;
        font-size: 0.9rem;
    }

    /* Section header */
    .section-header h2 {
        font-size: 1.8rem;
    }

    /* Agency section */
    .agency__content {
        grid-template-columns: 1fr;
    }

    .agency__text h3 {
        font-size: 1.5rem;
    }

    /* Portfolio */
    .portfolio__gallery {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .portfolio__item {
        height: 250px;
    }

    /* Events section */
    .events__container {
        grid-template-columns: 1fr;
    }

    .events__icons-line {
        padding: 1rem;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    #events-icons-container {
        gap: 0.8rem;
        justify-content: flex-start;
    }

    .event-icon {
        width: 60px;
        height: 60px;
        min-width: 60px;
        min-height: 60px;
        flex-shrink: 0;
        scroll-snap-align: start;
    }

    .event-icon__svg {
        width: 35px;
        height: 35px;
    }

    .scroll-hint {
        display: none;
    }

    .events__details {
        grid-template-columns: 1fr;
        overflow: hidden;
    }

    .events__image-wrapper {
        max-width: 100%;
    }

    .events__image-wrapper img {
        height: 300px;
        max-width: 100%;
    }

    /* Contact section */
    .contact__content {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .footer__content {
        grid-template-columns: 1fr;
    }

    .footer__bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hero {
        padding: 2rem 1rem;
        margin-top: 60px;
        min-height: 80vh;
    }

    .hero__logo img {
        width: 60px;
    }

    .hero__title {
        font-size: 1.5rem;
        letter-spacing: 0.5px;
    }

    .hero__subtitle {
        font-size: 0.85rem;
    }

    .hero__icons-circle {
        width: 250px;
        height: 250px;
    }

    .hero-icon {
        width: 30px;
        height: 30px;
    }

    .hero-icon__svg {
        width: 18px;
        height: 18px;
    }

    .hero__buttons {
        gap: 0.8rem;
    }

    .hero__buttons .btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.85rem;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }

    .agency {
        padding: 3rem 0;
    }

    .portfolio {
        padding: 3rem 0;
    }

    .events {
        padding: 3rem 0;
    }

    .contact {
        padding: 3rem 0;
    }

    .contact__form {
        padding: 1.5rem;
    }

    .nav-link {
        font-size: 0.95rem;
    }

    .logo {
        font-size: 1rem;
    }

    .events__icons-line {
        padding: 0.8rem;
        gap: 0.6rem;
    }

    #events-icons-container {
        gap: 0.6rem;
        flex-wrap: wrap;
        justify-content: center;
        max-height: 220px;
        overflow-y: auto;
    }

    .event-icon {
        width: 45px;
        height: 45px;
        min-width: 45px;
        min-height: 45px;
    }

    .event-icon__svg {
        width: 25px;
        height: 25px;
    }

    .events__image-wrapper {
        max-width: 100%;
        width: 100%;
    }

    .events__image-wrapper img {
        height: 220px;
        max-width: 100%;
        width: 100%;
    }
}
