/* ===========================================================
   LUMIÈRE PHOTOGRAPHY
   STYLE.CSS (COMPLETO Y MEJORADO)
   =========================================================== */

/* ========= RESET ========= */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font: inherit;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #faf7f4;
    color: #353535;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    line-height: 1.8;
    overflow-x: hidden;
}

/* ========= VARIABLES ========= */
:root {
    --bg: #faf7f4;
    --white: #ffffff;
    --primary: #8a6a59;
    --primary-dark: #9e8371;
    --secondary: #f8f5f3;
    --accent: #7c5e4f;
    --text: #353535;
    --text-light: #6c6c6c;
    --border: #ece6e2;
    --shadow: 0 15px 45px rgba(0, 0, 0, .08);
    --radius: 18px;
    --transition: .35s ease;
    --container: 1280px;
}

/* ========= TYPOGRAPHY ========= */
h1, h2, h3, h4 {
    font-family: "Cormorant Garamond", serif;
    font-weight: 600;
    color: #222;
    line-height: 1.1;
}

h1 { font-size: clamp(48px, 10vw, 72px); }
h2 { font-size: clamp(36px, 6vw, 54px); }
h3 { font-size: clamp(26px, 4vw, 32px); }

p {
    color: var(--text-light);
}

/* ========= LAYOUT ========= */
.container {
    width: min(92%, var(--container));
    margin: auto;
}

section {
    padding: 75px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title span {
    display: block;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    font-size: 13px;
    margin-bottom: 14px;
}

.section-title h2 {
    margin-bottom: 20px;
}

/* ========= BUTTONS ========= */
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    border-radius: 100px;
    background: var(--primary);
    color: white;
    transition: var(--transition);
    font-weight: 500;
    border: 1px solid transparent;
}

.button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(200, 170, 152, 0.3);
}

.button-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, .45);
    background: white;
    color: var(--text-light);
    backdrop-filter: blur(8px);
    transition: .3s;
}

.button-secondary:hover {
    background: white;
    color: #333;
}

/* ========= HEADER ========= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: .4s;
    padding: 20px 0;
    /* Fondo siempre visible y legible */
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.06);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ===== ESTADO SCROLLED (opcional, pero lo dejamos por si acaso) ===== */
.header.scrolled {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.08);
    padding: 14px 0;
}

/* El resto del header se mantiene igual */
.logo {
    font-family: "Cormorant Garamond", serif;
    font-size: 34px;
    font-weight: 700;
    line-height: 1.1;
    color: #222;
}

.logo span {
    display: block;
    font-size: 14px;
    font-family: Inter, sans-serif;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent);
}

.menu {
    display: flex;
    gap: 38px;
    align-items: center;
}

.menu a {
    position: relative;
    color: #444;
    transition: .3s;
    font-size: 15px;
    font-weight: 500;
}

.menu a::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: .35s;
}

.menu a:hover::after {
    width: 100%;
}

.menu a:hover {
    color: #222;
}

/* Ajuste del botón "Book a Session" en el header */
/* .header .button {
    padding: 12px 28px;
    font-size: 14px;
    background: var(--primary);
    color: white;
    border-radius: 100px;
    transition: var(--transition);
}

.header .button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(200, 170, 152, 0.3);
} */

.header .book-session {
  position: relative;
  padding: 12px 28px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background-color: var(--primary);
  color: white;
  font-size: 14px;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  border-radius: 100px;
}

.header .book-session:hover {
  background-color: var(--accent);

}

/* La luz que recorre el borde */
.header .book-session::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  scale: 3.5;

  background: conic-gradient(
    from 0deg,
    transparent 90deg,
    #dacdc6 270deg,
    transparent 350deg,
    transparent 360deg
  );

  animation: borderLight 9s linear infinite;
}

/* Cubre el centro para que solo se vea la luz en el borde */
.header .book-session::after {
  content: "";
  position: absolute;
  inset: 1.1px;
  z-index: -1;
  background-color: var(--primary);
  border-radius: 100px;
  filter: blur(1.7px);

}

@keyframes borderLight {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}
/* ========= DROPDOWN MENU ========= */
.menu-item-has-children {
    position: relative;
}

.menu-item-has-children > a::after {
    content: "▾";
    font-size: 10px;
    margin-left: 6px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.menu-item-has-children:hover > a::after {
    transform: rotate(180deg);
}

.sub-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    min-width: 200px;
    padding: 12px 0;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
    border: 1px solid var(--border);
}

.sub-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid rgba(255, 255, 255, 0.98);
}

.menu-item-has-children:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.sub-menu li {
    display: block;
}

.sub-menu a {
    display: block;
    padding: 10px 24px;
    font-size: 14px;
    color: #444;
    transition: var(--transition);
    white-space: nowrap;
}

.sub-menu a:hover {
    background: var(--secondary);
    color: #222;
}

.sub-menu a::after {
    display: none !important;
}

.sub-menu a.active {
    color: var(--accent);
    background: var(--secondary);
}

/* ===== DROPDOWN EN MOBILE ===== */
@media (max-width: 768px) {
    .menu-item-has-children {
        position: static;
    }

    .menu-item-has-children > a::after {
        content: "▾";
        font-size: 12px;
        margin-left: 8px;
    }

    .sub-menu {
        position: static;
        transform: none;
        background: transparent;
        backdrop-filter: none;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        padding: 0;
        margin: 0;
        border: none;
        border-radius: 0;
        display: none;
        transition: none;
    }

    .sub-menu::before {
        display: none;
    }

    .sub-menu.open {
        display: block;
    }

    .sub-menu a {
        padding: 8px 20px 8px 30px;
        font-size: 16px;
        color: #555;
        white-space: normal;
    }

    .sub-menu a:hover {
        background: transparent;
        color: var(--accent);
    }

    .sub-menu a.active {
        background: transparent;
        color: var(--accent);
    }

    .menu-item-has-children.active .sub-menu {
        display: block;
    }

    /* Indicador visual para el dropdown en mobile */
    .menu-item-has-children > a {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
    }
}
/* ===== RESPONSIVE para el header ===== */
@media (max-width: 1024px) {
    .menu {
        gap: 24px;
    }
    
    .menu a {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 14px 0;
    }
    
    .header .container {
        flex-wrap: wrap;
        gap: 12px;
        justify-content: space-between;
        padding-left: 12px;
        padding-right: 12px;
    }
    
    .hamburger {
        margin-left: auto;
        margin-right: 0;
        padding-right: 0;
    }

    .menu {
        gap: 16px;
        flex-wrap: wrap;
        justify-content: center;
        order: 3;
        width: 100%;
    }
    
    .menu a {
        font-size: 13px;
    }
    
    .logo {
        font-size: 28px;
    }
    
    .logo span {
        font-size: 12px;
    }
    
    .header .button {
        padding: 10px 20px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .menu {
        gap: 12px;
    }
    
    .menu a {
        font-size: 12px;
    }
    
    .header .button {
        padding: 8px 16px;
        font-size: 12px;
    }
}

.logo {
    font-family: "Cormorant Garamond", serif;
    font-size: 34px;
    font-weight: 700;
    line-height: 1.1;
}

.logo span {
    display: block;
    font-size: 14px;
    font-family: Inter, sans-serif;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent);
}

.menu {
    display: flex;
    gap: 38px;
}

.menu a {
    position: relative;
    color: #444;
    transition: .3s;
    font-size: 15px;
}

.menu a::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 1px;
    background: #222;
    transition: .35s;
}

.menu a:hover::after {
    width: 100%;
}

/* ========= HERO ========= */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: #f4efeb;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(250, 247, 244, .95) 0%,
        rgba(250, 247, 244, .70) 40%,
        rgba(250, 247, 244, 0) 75%
    );
    z-index: 2;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
    position: relative;
    z-index: 3;
}

.hero-text {
    max-width: 560px;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--accent);
    margin-bottom: 20px;
    font-size: 13px;
}

.hero h1 {
    margin-bottom: 28px;
}

.hero-description {
    font-size: 20px;
    margin-bottom: 42px;
    color: #666;
}

.hero-buttons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
    width: 100%;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: var(--shadow);
}

/* ===== RESPONSIVE HERO ===== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        max-width: 600px;
        margin: 0 auto;
        aspect-ratio: 2 / 3; /* Relación de aspecto fija en tablet */
    }

    .hero-image img {
        height: 100% !important;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 130px 0 60px;
    }

    /* ===== CONTENEDOR DEL HERO EN MOBILE ===== */
    .hero-content {
        display: flex;
        flex-direction: column;
        gap: 30px;
        padding: 0 0 20px 0;
    }

    /* ===== TEXTO ===== */
    .hero-text {
        order: 1; /* Texto primero */
        text-align: center;
        padding: 0 15px;
        max-width: 100%;
    }

    .hero h1 {
        font-size: clamp(32px, 10vw, 42px);
        margin-bottom: 20px;
    }

    .hero-description {
        font-size: 17px;
        margin-bottom: 30px;
        padding: 0 10px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        width: 100%;
    }

    .hero-buttons .button,
    .hero-buttons .button-secondary {
        width: 100%;
        max-width: 280px;
        text-align: center;
        justify-content: center;
    }

    /* ===== IMAGEN (tu código mejorado) ===== */
    .hero-image {
        order: 2; /* Imagen después del texto */
        max-width: 100%;
        width: 100%;
        aspect-ratio: 2 / 3; /* Relación 2:3 (vertical) */
        padding: 0 15px;
        margin: 0 auto;
    }

    .hero-image img {
        width: 100%;
        height: 100% !important;
        object-fit: cover;
        border-radius: 18px;
        box-shadow: var(--shadow);
        display: block;
    }

    /* ===== OVERLAY ===== */
    .hero-overlay {
        background: linear-gradient(
            180deg,
            rgba(250, 247, 244, .95) 0%,
            rgba(250, 247, 244, .70) 30%,
            rgba(250, 247, 244, 0) 60%
        );
    }
}

@media (max-width: 480px) {
    .hero-image {
        aspect-ratio: 3 / 4; /* Relación ligeramente más vertical para móviles pequeños */
        padding: 0 5px;
    }

    .hero-image img {
        border-radius: 14px;
    }

    .hero {
        padding: 110px 0 40px;
    }
}
/* ========= FEATURED GALLERIES ========= */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.gallery-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 1 / 1;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.gallery-card:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.gallery-card.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-card.wide {
    grid-column: span 2;
    aspect-ratio: 2 / 1;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-card:hover img {
    transform: scale(1.05);
}

.gallery-card .card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 30px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.55));
    color: white;
}

.gallery-card .card-content h3 {
    color: white;
    font-size: clamp(22px, 3vw, 28px);
}

.gallery-card .card-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
}

/* ========= ABOUT ========= */

.about{
        background: #f1eee7;
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-photo img {
    width: 100%;
    max-height: 600px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.about-text .section-label {
    display: block;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    font-size: 13px;
    margin-bottom: 14px;
}

.about-text h2 {
    margin-bottom: 25px;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 17px;
}

/* ========= EXPERIENCE ========= */
.experience {
    background: var(--secondary);
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    text-align: center;
    margin-top: 20px;
}

.experience-grid article {
    padding: 20px;
}

.icon-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--white);
    margin: 0 auto 25px;
    font-family: "Cormorant Garamond", serif;
    font-size: 28px;
    font-weight: 600;
    color: var(--accent);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
}

.experience-grid h3 {
    margin-bottom: 10px;
}

/* ========= TESTIMONIAL ========= */
.testimonial {
    background: var(--white);
    text-align: center;
}

.testimonial blockquote {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 500;
    color: #222;
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.3;
}

.testimonial p {
    font-size: 18px;
    color: var(--accent);
    letter-spacing: 1px;
}

/* ========= INSTAGRAM ========= */
.instagram-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
}

.instagram-item {
    aspect-ratio: 1 / 1;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: var(--transition);
    cursor: pointer;
    box-shadow: var(--shadow);
}

.instagram-item:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* ========= CTA ========= */
.cta {
    background: var(--bg);
    text-align: center;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.cta h2 {
    margin-bottom: 15px;
}

.cta p {
    font-size: 18px;
    margin-bottom: 35px;
}

/* ========= FOOTER ========= */
footer {
    background: #111111;
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

footer h3 {
    color: white;
    font-size: 28px;
    margin-bottom: 10px;
}

footer h4 {
    color: white;
    font-size: 18px;
    margin-bottom: 20px;
}

footer ul li {
    margin-bottom: 10px;
}

footer ul a:hover {
    color: white;
}

.copyright {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 25px;
    font-size: 14px;
}

/* ========= HAMBURGER MENU ========= */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 8px;
    cursor: pointer;
    z-index: 1001;
    background: none;
    border: none;
    margin-left: auto; /* Empuja la hamburguesa a la derecha */
}

.hamburger-line {
    display: block;
    width: 28px;
    height: 2px;
    background: #222;
    transition: var(--transition);
    transform-origin: center;
}

/* Animación para convertir la hamburguesa en "X" */
.hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Menú desplegable para mobile */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 38px;
}

.menu {
    display: flex;
    gap: 38px;
    align-items: center;
}

.mobile-cta {
    display: none;
}

.desktop-cta {
    display: inline-flex;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .hamburger {
        display: flex;
        margin-left: auto; /* Asegura que esté a la derecha */
        margin-right: 0; /* Elimina cualquier margen extra */
    }

    .header .container {
        display: flex;
        justify-content: space-between; /* Separa logo y hamburguesa */
        align-items: center;
        width: 100%;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 380px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        padding: 40px 30px;
        transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.08);
        z-index: 1000;
        overflow-y: auto;
    }

    .nav-menu.active {
        right: 0;
    }

    /* Overlay oscuro detrás del menú */
    .nav-menu::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #f4eeeb;
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
        z-index: -1;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.4s ease, visibility 0.4s ease;
    }

    .nav-menu.active::before {
        opacity: 1;
        visibility: visible;
    }

    .menu {
        flex-direction: column;
        gap: 24px;
        width: 100%;
        text-align: center;
    }

    .menu a {
        font-size: 22px;
        font-weight: 500;
        color: #222;
        display: block;
        padding: 10px 0;
        transition: var(--transition);
    }

    .menu a:hover {
        color: var(--accent);
    }

    .menu a::after {
        display: none;
    }

    .mobile-cta {
        display: inline-flex;
        margin-top: 15px;
        width: 100%;
        justify-content: center;
    }

    .desktop-cta {
        display: none;
    }

    /* Scroll lock cuando el menú está abierto */
    body.menu-open {
        overflow: hidden;
    }
}

@media (max-width: 480px) {
    .nav-menu {
        width: 85%;
        padding: 30px 20px;
    }

    .menu a {
        font-size: 20px;
    }
}

/* ========= RESPONSIVE ========= */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image img {
        height: 500px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

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

    .gallery-card.large,
    .gallery-card.wide {
        grid-column: span 1;
        grid-row: span 1;
        aspect-ratio: 1 / 1;
    }

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

@media (max-width: 768px) {
    .header .container {
        flex-wrap: wrap;
        gap: 15px;
    }

    .menu {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .menu a {
        font-size: 14px;
    }

    .hero {
        min-height: auto;
        padding: 140px 0 80px;
    }

    .hero-image img {
        height: 350px;
    }

    section {
        padding: 70px 0;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

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

    .button {
        padding: 14px 28px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

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

    .hero-image img {
        height: 250px;
    }

    .section-title {
        margin-bottom: 40px;
    }
}