/* ============================================
   ZUIA CLUB DE GOLF — ESTILOS PRINCIPALES
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Open+Sans:wght@300;400;600;700&display=swap');

:root {
    --primary-blue: #1e5ba8;
    --dark-blue: #0f3d6b;
    --primary-green: #4a7c59;
    --dark-green: #2d5a3d;
    --light-green: #6b9e7a;
    --cream: #f8f6f0;
    --white: #ffffff;
    --dark-text: #2c2c2c;
    --light-text: #666666;
    --gold-accent: #c9a961;
}

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

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--dark-text);
    line-height: 1.6;
}

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
    background: var(--dark-blue);
    color: white;
    padding: 0.6rem 0;
    font-size: 0.9rem;
}
.top-bar-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-bar-left { display: flex; gap: 2rem; align-items: center; }
.top-bar-left a, .top-bar-right a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
}
.top-bar-left a:hover, .top-bar-right a:hover { opacity: 0.8; }
.top-bar-right { display: flex; gap: 1.5rem; align-items: center; }
.social-links { display: flex; gap: 1rem; }

/* ============================================
   MAIN NAVIGATION
   ============================================ */
.main-nav {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.nav-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo-section { padding: 1rem 0; }
.logo-section img { height: 80px; width: auto; }

.nav-menu { display: flex; list-style: none; }
.nav-item { position: relative; }
.nav-item > a {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    padding: 2rem 1.3rem;
    color: var(--dark-text);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    transition: all 0.3s;
    border-bottom: 3px solid transparent;
}
.nav-item > a:hover,
.nav-item.active > a {
    color: var(--primary-blue);
    border-bottom-color: var(--primary-blue);
}
.dropdown-icon { font-size: 0.7rem; transition: transform 0.3s; }
.nav-item:hover .dropdown-icon { transform: rotate(180deg); }

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 250px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    border-top: 3px solid var(--primary-blue);
    z-index: 100;
}
.nav-item:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a {
    display: block;
    padding: 0.9rem 1.5rem;
    color: var(--dark-text);
    text-decoration: none;
    transition: all 0.3s;
    border-left: 3px solid transparent;
    font-size: 0.9rem;
}
.dropdown a:hover {
    background: var(--cream);
    border-left-color: var(--primary-blue);
    color: var(--primary-blue);
    padding-left: 2rem;
}

.btn-reservar {
    background: var(--primary-green);
    color: white;
    padding: 0.9rem 1.8rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    white-space: nowrap;
}
.btn-reservar:hover {
    background: var(--dark-green);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74,124,89,0.3);
}

/* Mobile menu toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 0.5rem;
    background: none;
    border: none;
}
.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--dark-text);
    border-radius: 3px;
    transition: all 0.3s;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Open Sans', sans-serif;
}
.btn-primary {
    background: var(--primary-blue);
    color: white;
}
.btn-primary:hover {
    background: var(--dark-blue);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30,91,168,0.4);
}
.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}
.btn-secondary:hover {
    background: white;
    color: var(--primary-blue);
}
.btn-green {
    background: var(--primary-green);
    color: white;
}
.btn-green:hover {
    background: var(--dark-green);
    transform: translateY(-2px);
}

/* ============================================
   HERO SLIDER
   ============================================ */
.hero-slider {
    position: relative;
    height: 600px;
    overflow: hidden;
    background: var(--dark-blue);
}
.slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}
.slide.active { opacity: 1; }
.slide-image { width: 100%; height: 100%; object-fit: cover; }
.slide-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(15,61,107,0.8), rgba(74,124,89,0.6));
    display: flex;
    align-items: center;
    justify-content: center;
}
.slide-content {
    text-align: center;
    color: white;
    max-width: 900px;
    padding: 2rem;
}
.slide-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
}
.slide-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    font-weight: 300;
}
.slide-buttons { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; }

.slider-controls {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
}
.slider-dot {
    width: 12px; height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}
.slider-dot.active {
    background: white;
    width: 35px;
    border-radius: 6px;
}

/* ============================================
   QUICK ACCESS
   ============================================ */
.quick-access { background: var(--cream); padding: 3rem 0; }
.quick-access-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}
.quick-card {
    background: white;
    padding: 2rem;
    text-align: center;
    border-radius: 8px;
    transition: all 0.3s;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    text-decoration: none;
    color: inherit;
    display: block;
}
.quick-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
.quick-card-icon { font-size: 3rem; margin-bottom: 1rem; }
.quick-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--dark-text);
}
.quick-card p { color: var(--light-text); margin-bottom: 1.2rem; font-size: 0.95rem; }
.quick-card .card-link {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.95rem;
}

/* ============================================
   SECTION COMMON STYLES
   ============================================ */
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}
.section-header p { color: var(--light-text); font-size: 1.1rem; }

/* ============================================
   WELCOME SECTION
   ============================================ */
.welcome-section { padding: 5rem 0; background: white; }
.welcome-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.welcome-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}
.welcome-text p {
    color: var(--light-text);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}
.welcome-image {
    width: 100%;
    height: 450px;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

/* ============================================
   TOURNAMENT CALENDAR
   ============================================ */
.tournament-calendar { padding: 5rem 0; background: var(--cream); }
.calendar-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}
.calendar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}
.calendar-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
    text-decoration: none;
    color: inherit;
    display: block;
    border-top: 4px solid var(--primary-blue);
}
.calendar-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-top-color: var(--primary-green);
}
.calendar-card-date {
    background: var(--primary-blue);
    color: white;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}
.date-day { font-size: 2.5rem; font-weight: 700; line-height: 1; }
.date-month { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; opacity: 0.9; }
.calendar-card-body { padding: 1.5rem; }
.calendar-card-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--dark-text);
}
.calendar-card-body p { color: var(--light-text); font-size: 0.95rem; margin-bottom: 1rem; }
.calendar-card-footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}
.tag {
    background: var(--cream);
    color: var(--primary-green);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
}
.card-arrow { color: var(--primary-blue); font-weight: 700; }

/* ============================================
   NEWS SECTION
   ============================================ */
.news-section { padding: 5rem 0; background: white; }
.news-content { max-width: 1400px; margin: 0 auto; padding: 0 2rem; }
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
.news-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    transition: all 0.3s;
}
.news-card:hover { transform: translateY(-8px); box-shadow: 0 8px 30px rgba(0,0,0,0.2); }
.news-card-image { width: 100%; height: 220px; object-fit: cover; }
.news-card-content { padding: 1.8rem; }
.news-date { color: var(--primary-green); font-size: 0.9rem; font-weight: 600; margin-bottom: 0.8rem; display: block; }
.news-card h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; margin-bottom: 0.8rem; }
.news-card p { color: var(--light-text); margin-bottom: 1.2rem; line-height: 1.6; }
.news-card a { color: var(--primary-blue); text-decoration: none; font-weight: 600; }

/* ============================================
   TOURNAMENTS SECTION (Blue BG - homepage preview)
   ============================================ */
.tournaments-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    color: white;
}
.tournaments-content { max-width: 1400px; margin: 0 auto; padding: 0 2rem; }
.tournaments-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; }
.tournament-card {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    padding: 2rem;
    transition: all 0.3s;
}
.tournament-card:hover { background: rgba(255,255,255,0.15); transform: translateY(-5px); }
.tournament-date {
    background: var(--primary-green);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    display: inline-block;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}
.tournament-card h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; margin-bottom: 1rem; }
.tournament-card p { margin-bottom: 1.5rem; line-height: 1.6; opacity: 0.9; }
.btn-tournament {
    width: 100%;
    background: transparent;
    color: white;
    padding: 0.9rem;
    border: 2px solid white;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.9rem;
}
.btn-tournament:hover { background: white; color: var(--primary-blue); }

/* ============================================
   FOOTER
   ============================================ */
footer { background: var(--dark-text); color: white; padding: 4rem 0 2rem; }
.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}
.footer-section h4 { font-family: 'Playfair Display', serif; font-size: 1.5rem; margin-bottom: 1.5rem; }
.footer-section p { color: #ccc; line-height: 1.8; margin-bottom: 0.5rem; font-size: 0.95rem; }
.footer-section ul { list-style: none; }
.footer-section ul li { margin-bottom: 0.8rem; }
.footer-section ul li a { color: #ccc; text-decoration: none; transition: color 0.3s; font-size: 0.95rem; }
.footer-section ul li a:hover { color: var(--primary-blue); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 2rem 2rem 0;
    text-align: center;
    color: #999;
    max-width: 1400px;
    margin: 0 auto;
}

/* ============================================
   MODAL
   ============================================ */
.modal {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}
.modal.active { display: flex; }
.modal-content {
    background: white;
    padding: 3rem;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    position: relative;
    animation: slideUp 0.3s ease;
}
@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.modal-close {
    position: absolute;
    top: 1rem; right: 1rem;
    font-size: 2rem;
    cursor: pointer;
    border: none;
    background: none;
    color: #999;
    line-height: 1;
}
.modal-close:hover { color: #333; }
.modal h2 { font-family: 'Playfair Display', serif; color: var(--primary-blue); margin-bottom: 0.5rem; font-size: 2.2rem; }
.modal > .modal-content > p { color: var(--light-text); margin-bottom: 2rem; }

/* ============================================
   FORMS
   ============================================ */
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; margin-bottom: 0.5rem; color: var(--dark-text); font-weight: 600; font-size: 0.95rem; }
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s;
    font-family: 'Open Sans', sans-serif;
    color: var(--dark-text);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { outline: none; border-color: var(--primary-blue); }
.form-group textarea { min-height: 120px; resize: vertical; }
.btn-submit {
    width: 100%;
    background: var(--primary-blue);
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    font-family: 'Open Sans', sans-serif;
    letter-spacing: 0.5px;
}
.btn-submit:hover { background: var(--dark-blue); transform: translateY(-2px); }

/* ============================================
   PAGE HEADER (páginas internas)
   ============================================ */
.page-header {
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    color: white;
    padding: 5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-header::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: repeating-linear-gradient(
        45deg, transparent, transparent 10px,
        rgba(255,255,255,0.03) 10px, rgba(255,255,255,0.03) 20px
    );
    pointer-events: none;
}
.page-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}
.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

/* ============================================
   BREADCRUMB
   ============================================ */
.breadcrumb { background: white; padding: 1rem 0; border-bottom: 1px solid #e0e0e0; }
.breadcrumb-content { max-width: 1400px; margin: 0 auto; padding: 0 2rem; color: var(--light-text); font-size: 0.9rem; }
.breadcrumb a { color: var(--primary-blue); text-decoration: none; }

/* ============================================
   CONTENT SECTION (páginas internas)
   ============================================ */
.content-section { padding: 4rem 0; background: white; }
.content-container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.content-container h2 { font-family: 'Playfair Display', serif; font-size: 2.5rem; color: var(--primary-blue); margin: 2rem 0 1.5rem; }
.content-container h3 { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: var(--primary-green); margin: 2rem 0 1rem; }
.content-container p { color: var(--light-text); font-size: 1.1rem; line-height: 1.8; margin-bottom: 1.5rem; }
.content-container ul, .content-container ol { color: var(--light-text); font-size: 1.1rem; line-height: 1.8; margin-bottom: 1.5rem; margin-left: 2rem; }
.content-container blockquote {
    border-left: 4px solid var(--primary-blue);
    padding-left: 2rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--dark-text);
    font-size: 1.2rem;
}
.data-table { width: 100%; border-collapse: collapse; margin: 2rem 0; }
.data-table th { background: var(--primary-blue); color: white; padding: 1rem 1.5rem; text-align: left; }
.data-table td { padding: 1rem 1.5rem; border: 1px solid #e0e0e0; }
.data-table tr:nth-child(even) { background: var(--cream); }

/* ============================================
   GALLERY
   ============================================ */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin: 2rem 0; }
.gallery-item { border-radius: 8px; overflow: hidden; box-shadow: 0 4px 15px rgba(0,0,0,0.1); aspect-ratio: 4/3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.gallery-item:hover img { transform: scale(1.05); }

/* ============================================
   WEBCAM
   ============================================ */
.webcam-wrapper { background: white; border-radius: 8px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.1); }
.webcam-header {
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    color: white;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.webcam-title { font-family: 'Playfair Display', serif; font-size: 1.5rem; }
.live-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}
.live-dot { width: 10px; height: 10px; background: #ff4444; border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.webcam-player { position: relative; width: 100%; padding-bottom: 56.25%; background: #000; }
.webcam-player iframe,
.webcam-player img,
.webcam-player video {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    border: none;
}
.webcam-controls {
    padding: 1.2rem 2rem;
    background: var(--cream);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.btn-refresh {
    background: var(--primary-blue);
    color: white;
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.btn-refresh:hover { background: var(--dark-blue); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
    .footer-content { grid-template-columns: 1fr 1fr; }
    .calendar-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1024px) {
    .nav-menu { display: none; }
    .nav-menu.open { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: white; box-shadow: 0 10px 20px rgba(0,0,0,0.1); padding: 1rem 0; }
    .nav-item > a { padding: 1rem 2rem; border-bottom: none; border-left: 3px solid transparent; }
    .nav-item > a:hover { border-left-color: var(--primary-blue); border-bottom-color: transparent; }
    .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border-top: none; border-left: 3px solid var(--primary-blue); margin-left: 2rem; display: none; }
    .nav-item.open .dropdown { display: block; }
    .menu-toggle { display: flex; }
    .welcome-content { grid-template-columns: 1fr; }
    .news-grid, .tournaments-grid { grid-template-columns: repeat(2, 1fr); }
    .quick-access-content { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .slide-content h1 { font-size: 2rem; }
    .slide-content p { font-size: 1rem; }
    .hero-slider { height: 450px; }
    .news-grid, .tournaments-grid, .calendar-grid, .quick-access-content { grid-template-columns: 1fr; }
    .top-bar-content { flex-direction: column; gap: 0.5rem; text-align: center; }
    .section-header h2, .welcome-text h2, .page-header h1 { font-size: 2rem; }
    .footer-content { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .btn { padding: 0.8rem 1.5rem; font-size: 0.9rem; }
}
@media (max-width: 480px) {
    .gallery-grid { grid-template-columns: 1fr; }
    .slide-content h1 { font-size: 1.6rem; }
    .hero-slider { height: 380px; }
}
