/* ===================================================
   बाळासाहेब शिंत्रे – जीवन तरंग
   Premium Responsive Stylesheet
   =================================================== */

/* --- Reset & Base --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Noto Sans Devanagari', 'Segoe UI', 'Lohit Devanagari', sans-serif;
    background-color: #fef9e8;
    color: #2c2b28;
    line-height: 1.75;
    font-size: 16px;
    overflow-x: hidden;
}

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

a {
    color: #8b3c1c;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #c45a2a;
}

/* --- Container --- */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===================================================
   HEADER & NAVIGATION
   =================================================== */
header {
    background: linear-gradient(135deg, #7a3015 0%, #a04820 60%, #8b3c1c 100%);
    color: white;
    padding: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

/* Site branding (optional text in header) */
.site-brand {
    font-size: 1.15rem;
    font-weight: 700;
    white-space: nowrap;
    color: #f4c542;
    letter-spacing: 0.02em;
}

/* --- Hamburger Toggle --- */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1100;
}

.menu-toggle span {
    display: block;
    width: 26px;
    height: 3px;
    background: #fff;
    margin: 5px 0;
    border-radius: 3px;
    transition: all 0.35s ease;
}

/* Hamburger animation when open */
.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}
.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* --- Nav Links --- */
nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
    gap: 0.2rem;
}

nav ul li a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.92rem;
    padding: 0.55rem 0.85rem;
    border-radius: 8px;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    display: inline-block;
}

nav ul li a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border-bottom-color: #f4c542;
}

nav ul li a.active {
    color: #fff;
    border-bottom-color: #f4c542;
    background: rgba(255, 255, 255, 0.08);
}

/* --- Mobile Overlay --- */
.nav-overlay {
    display: none;
}

/* ===================================================
   HERO / BANNER
   =================================================== */
.hero {
    background: #1e4620;
    color: white;
    text-align: center;
    padding: 6rem 1.5rem;
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
}

.hero-bg-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    opacity: 0;
    animation: fadeSlider 18s infinite;
}

.hero-bg-slider .slide:nth-child(1) { animation-delay: 0s; }
.hero-bg-slider .slide:nth-child(2) { animation-delay: 6s; }
.hero-bg-slider .slide:nth-child(3) { animation-delay: 12s; }

@keyframes fadeSlider {
    0% { opacity: 0; transform: scale(1); }
    10% { opacity: 0.8; transform: scale(1.02); }
    25% { opacity: 0.8; transform: scale(1.04); }
    35% { opacity: 0; transform: scale(1.06); }
    100% { opacity: 0; transform: scale(1.06); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 70, 32, 0.85) 0%, rgba(139, 60, 28, 0.85) 100%, rgba(30, 70, 32, 0.85) 200%);
    background-size: 200% 200%;
    animation: gradientShift 10s ease infinite;
    z-index: 2;
}

.hero-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(244, 197, 66, 0.15) 0%, transparent 60%);
    animation: pulseGlow 6s infinite alternate ease-in-out;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes pulseGlow {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.3); opacity: 1; }
}

.hero-content {
    position: relative;
    z-index: 3;
}

.hero h1 {
    font-size: 3.8rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
    position: relative;
    color: #fff;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    animation: fadeInUp 0.8s ease-out;
}

.hero p {
    font-size: 1.1rem;
    opacity: 0.92;
    position: relative;
    max-width: 700px;
    margin: 0.4rem auto;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
    }
}

/* Typing Effect */
.typing-container {
    min-height: 1.8em;
    font-weight: 800;
    color: #ffd966;
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.typing-cursor {
    display: inline-block;
    opacity: 1;
    animation: blinkCursor 0.7s infinite;
}

@keyframes blinkCursor {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* ===================================================
   MAIN CONTENT
   =================================================== */
main {
    min-height: 60vh;
    padding: 2.5rem 0 3rem;
}

main.container {
    padding-top: 2.5rem;
    padding-bottom: 3rem;
}

h1 {
    color: #7a3015;
    margin-bottom: 1.2rem;
    font-size: 1.85rem;
    line-height: 1.3;
}

h2 {
    color: #8b3c1c;
    margin-bottom: 1rem;
    border-left: 5px solid #f4c542;
    padding-left: 1rem;
    font-size: 1.35rem;
    line-height: 1.4;
}

h3 {
    color: #8b3c1c;
    margin-bottom: 0.8rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.8;
}

blockquote {
    border-left: 4px solid #f4c542;
    padding-left: 1.2rem;
    font-style: italic;
    margin: 1.5rem 0;
    color: #5a3a1a;
    background: #faf5e6;
    padding: 1.2rem 1.5rem;
    border-radius: 0 12px 12px 0;
}

/* --- Info Boxes / Styled Divs --- */
.info-box,
main div[style*="background:#f5ede0"],
main div[style*="background: #f5ede0"] {
    border-radius: 16px;
}

/* ===================================================
   PHOTO GALLERY (Timeline)
   =================================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.gallery-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.gallery-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

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

.gallery-card .caption {
    padding: 1rem 1.2rem;
    font-size: 0.9rem;
    background: #faf5e6;
    color: #2c2b28;
    border-top: 1px solid #eee;
    line-height: 1.6;
}

/* ===================================================
   VIDEO GRID
   =================================================== */
.videos-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    margin-top: 1.5rem;
}

.video-wrapper {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-wrapper:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

/* Responsive video container */
.video-wrapper iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    border: none;
    display: block;
}

.video-wrapper p {
    padding: 1rem 1.2rem;
    font-weight: 600;
    background: #faf5e6;
    font-size: 0.92rem;
    line-height: 1.5;
    border-top: 1px solid #eee;
}

/* ===================================================
   BUTTONS
   =================================================== */
.btn {
    display: inline-block;
    background: linear-gradient(135deg, #8b3c1c 0%, #a04820 100%);
    color: white;
    padding: 0.75rem 1.8rem;
    border-radius: 30px;
    text-decoration: none;
    margin-top: 1.2rem;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(139, 60, 28, 0.3);
    letter-spacing: 0.02em;
}

.btn:hover {
    background: linear-gradient(135deg, #6b2e14 0%, #8b3c1c 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(139, 60, 28, 0.4);
    color: white;
}

/* ===================================================
   FORMS (Contact Page)
   =================================================== */
input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1.5px solid #d4c9b5;
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.95rem;
    background: #fff;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
    outline: none;
    border-color: #f4c542;
    box-shadow: 0 0 0 3px rgba(244, 197, 66, 0.2);
}

/* ===================================================
   FOOTER
   =================================================== */
footer {
    background: linear-gradient(135deg, #1f1e1b 0%, #2c2b28 100%);
    color: #bbb;
    text-align: center;
    padding: 2rem 1.5rem;
    margin-top: 3rem;
    font-size: 0.92rem;
}

footer p {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* ===================================================
   UTILITY CLASSES
   =================================================== */
.text-center {
    text-align: center;
}

.fade-in {
    animation: fadeInUp 0.6s ease-out both;
}

/* ===================================================
   LIGHTBOX / PHOTO ZOOM
   =================================================== */
.lightbox-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    opacity: 0;
    transition: opacity 0.3s ease;
    cursor: zoom-out;
}

.lightbox-overlay.active {
    display: flex;
    opacity: 1;
}

.lightbox-overlay img {
    max-width: 92vw;
    max-height: 82vh;
    border-radius: 10px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
    object-fit: contain;
    animation: lightboxZoomIn 0.3s ease-out;
}

@keyframes lightboxZoomIn {
    from {
        transform: scale(0.85);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-caption {
    color: #e0d8c8;
    margin-top: 1rem;
    font-size: 0.95rem;
    text-align: center;
    max-width: 80vw;
    line-height: 1.5;
}

.lightbox-close {
    position: absolute;
    top: 18px;
    right: 22px;
    background: none;
    border: none;
    color: white;
    font-size: 2.2rem;
    cursor: pointer;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s ease;
    z-index: 2010;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.15);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s ease;
    z-index: 2010;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.25);
}

.lightbox-prev {
    left: 16px;
}

.lightbox-next {
    right: 16px;
}

/* Make gallery images show zoom cursor */
.gallery-card img,
.highlight-card img {
    cursor: zoom-in;
}

/* ===================================================
   FOOTER - POWERED BY
   =================================================== */
.footer-powered {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.roinr-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.4rem 0.8rem;
    background: linear-gradient(135deg, #1e1e1e 0%, #3a3a3a 100%);
    color: #e0d8c8;
    text-decoration: none;
    font-size: 0.75rem;
    border-radius: 20px;
    border: 1px solid rgba(244, 197, 66, 0.3);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.roinr-btn span {
    color: #f4c542;
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.roinr-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(244, 197, 66, 0.15);
    border-color: #f4c542;
    color: white;
}

.footer-disclaimer {
    margin-top: 1.5rem;
    font-size: 0.75rem;
    color: #aaa;
    line-height: 1.5;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* ===================================================
   HOMEPAGE - WELCOME SECTION
   =================================================== */
.welcome-section {
    margin-bottom: 3rem;
}

.welcome-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2.5rem;
    align-items: center;
}

.welcome-text h2 {
    font-size: 1.6rem;
}

.welcome-image {
    text-align: center;
}

.welcome-image img {
    width: 100%;
    max-width: 320px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transition: transform 0.4s ease;
}

.welcome-image img:hover {
    transform: scale(1.03);
}

.welcome-image .image-label {
    margin-top: 0.8rem;
    font-size: 0.88rem;
    color: #8b3c1c;
    font-weight: 500;
}

/* ===================================================
   HOMEPAGE - BOOK SHOWCASE
   =================================================== */
.book-showcase {
    background: linear-gradient(135deg, #f5ede0 0%, #fef9e8 100%);
    padding: 2.5rem;
    border-radius: 20px;
    margin-bottom: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.book-grid {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2.5rem;
    align-items: center;
}

.book-cover img {
    width: 220px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
    transition: transform 0.4s ease;
}

.book-cover img:hover {
    transform: rotate(-2deg) scale(1.04);
}

.book-info h2 {
    border-left: none;
    padding-left: 0;
    font-size: 1.5rem;
    color: #7a3015;
}

.book-tagline {
    font-size: 1.1rem;
    color: #a04820;
    font-style: italic;
    font-weight: 500;
    margin-bottom: 1rem;
}

.book-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 0.5rem;
}

.btn-outline {
    background: transparent;
    color: #8b3c1c;
    border: 2px solid #8b3c1c;
    box-shadow: none;
}

.btn-outline:hover {
    background: #8b3c1c;
    color: white;
}

/* ===================================================
   HOMEPAGE - PHOTO HIGHLIGHTS
   =================================================== */
.photo-highlights {
    margin-bottom: 3rem;
}

.photo-highlights > h2 {
    text-align: center;
    border-left: none;
    padding-left: 0;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
}

.highlight-card {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: white;
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

.highlight-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

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

.highlight-caption {
    padding: 0.7rem 0.9rem;
    font-size: 0.85rem;
    color: #5a3a1a;
    background: #faf5e6;
    text-align: center;
    font-weight: 500;
    border-top: 1px solid #eee;
}

/* ===================================================
   HOMEPAGE - INSPIRATION SECTION
   =================================================== */
.inspiration-section {
    margin-bottom: 2rem;
}

.inspiration-section blockquote {
    text-align: center;
    font-size: 1.25rem;
    border-left: none;
    border-radius: 16px;
    padding: 2rem;
    background: linear-gradient(135deg, #f5ede0, #fef9e8);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.inspiration-section blockquote cite {
    display: block;
    margin-top: 0.8rem;
    font-size: 0.92rem;
    color: #8b3c1c;
    font-style: normal;
    font-weight: 600;
}

/* ===================================================
   RESPONSIVE - TABLET (max-width: 900px)
   =================================================== */
@media (max-width: 900px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 1.2rem;
    }

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

    .hero {
        padding: 4rem 1.2rem;
    }

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

    .typing-container {
        font-size: 1.5rem;
    }

    .welcome-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .book-grid {
        gap: 1.5rem;
    }

    .book-cover img {
        width: 180px;
    }

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

/* ===================================================
   RESPONSIVE - MOBILE (max-width: 768px)
   =================================================== */
@media (max-width: 768px) {
    /* Show hamburger */
    .menu-toggle {
        display: block;
    }

    header .container {
        position: relative;
    }

    /* Mobile nav overlay */
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 300px;
        height: 100vh;
        background: linear-gradient(180deg, #7a3015 0%, #5a2210 100%);
        z-index: 1050;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        padding-top: 80px;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
    }

    nav.open {
        right: 0;
    }

    nav ul {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 0 1rem;
    }

    nav ul li a {
        display: block;
        padding: 0.9rem 1.2rem;
        font-size: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 0;
        border-left: 3px solid transparent;
    }

    nav ul li a:hover,
    nav ul li a.active {
        border-left-color: #f4c542;
        border-bottom-color: rgba(255, 255, 255, 0.1);
        background: rgba(255, 255, 255, 0.08);
    }

    /* Nav overlay backdrop */
    .nav-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1040;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .nav-overlay.active {
        display: block;
        opacity: 1;
    }

    /* Hero */
    .hero {
        padding: 3.5rem 1rem;
    }

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

    .typing-container {
        font-size: 1.25rem;
        min-height: 2.5em; /* Allows wrapping */
    }

    .hero p {
        font-size: 1.05rem;
    }

    /* Content */
    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.2rem;
    }

    p {
        font-size: 0.95rem;
    }

    .container {
        padding: 0 16px;
    }

    main {
        padding: 1.5rem 0 2rem;
    }

    main.container {
        padding-top: 1.5rem;
        padding-bottom: 2rem;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 0.8rem;
    }

    .gallery-card img {
        height: 150px;
    }

    .gallery-card .caption {
        padding: 0.7rem 0.8rem;
        font-size: 0.82rem;
    }

    /* Videos */
    .videos-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .video-wrapper p {
        font-size: 0.85rem;
        padding: 0.8rem 1rem;
    }

    /* Contact flex layout */
    main div[style*="display: flex"] {
        flex-direction: column !important;
    }

    /* Homepage welcome */
    .welcome-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .welcome-image {
        order: -1;
    }

    .welcome-image img {
        max-width: 240px;
    }

    /* Homepage book showcase */
    .book-showcase {
        padding: 1.5rem;
    }

    .book-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .book-cover {
        display: flex;
        justify-content: center;
    }

    .book-cover img {
        width: 180px;
    }

    .book-info h2 {
        font-size: 1.25rem;
    }

    .book-actions {
        justify-content: center;
    }

    /* Homepage photo highlights */
    .highlights-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.8rem;
    }

    .highlight-card img {
        height: 130px;
    }

    .highlight-caption {
        font-size: 0.78rem;
        padding: 0.5rem 0.6rem;
    }

    /* Inspiration */
    .inspiration-section blockquote {
        font-size: 1.05rem;
        padding: 1.5rem;
    }

    /* Footer */
    footer {
        margin-top: 2rem;
        padding: 1.5rem 1rem;
        font-size: 0.85rem;
    }
}

/* ===================================================
   RESPONSIVE - SMALL MOBILE (max-width: 400px)
   =================================================== */
@media (max-width: 400px) {
    .hero h1 {
        font-size: 1.35rem;
    }

    .hero p {
        font-size: 0.88rem;
    }

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

    .gallery-card img {
        height: 120px;
    }

    .gallery-card .caption {
        font-size: 0.78rem;
        padding: 0.5rem 0.6rem;
    }

    .btn {
        padding: 0.65rem 1.4rem;
        font-size: 0.88rem;
    }
}

/* ===================================================
   PRINT STYLES
   =================================================== */
@media print {
    header, footer, .menu-toggle, .nav-overlay {
        display: none;
    }

    body {
        background: white;
        color: black;
        font-size: 12pt;
    }

    .hero {
        background: #eee;
        color: black;
        padding: 1rem;
    }
}