/* ========================================
   Main Styles - Photographer Theme
   ======================================== */

:root {
    --color-primary: #5BC0BE;
    --color-secondary: #3A506B;
    --color-accent: #1FC1B9;
    --color-bg: #f8fcfc;
    --color-bg-dark: #0f1a2e;
    --color-text: #2c3e50;
    --color-text-light: #6c7a89;
    --color-white: #ffffff;
    --color-black: #0a0a0a;
    --color-overlay: rgba(15, 26, 46, 0.85);
    --font-primary: 'Playfair Display', Georgia, serif;
    --font-secondary: 'Raleway', 'Helvetica Neue', Arial, sans-serif;
    --transition-fast: 0.2s ease;
    --transition-medium: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slow: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --shadow-soft: 0 4px 20px rgba(91, 192, 190, 0.15);
    --shadow-medium: 0 8px 30px rgba(91, 192, 190, 0.2);
    --shadow-strong: 0 15px 50px rgba(91, 192, 190, 0.25);
    --radius-small: 4px;
    --radius-medium: 8px;
    --radius-large: 16px;
}

/* ---- Page Preloader ---- */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-bg-dark);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

.preloader-inner {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.preloader-ring {
    position: absolute;
    border: 3px solid transparent;
    border-radius: 50%;
    animation: preloaderSpin 1.5s linear infinite;
}

.preloader-ring:nth-child(1) {
    width: 60px;
    height: 60px;
    border-top-color: var(--color-primary);
    animation-duration: 1.2s;
}

.preloader-ring:nth-child(2) {
    width: 45px;
    height: 45px;
    border-right-color: var(--color-accent);
    animation-duration: 1.6s;
    animation-direction: reverse;
}

.preloader-ring:nth-child(3) {
    width: 30px;
    height: 30px;
    border-bottom-color: var(--color-white);
    animation-duration: 1s;
}

@keyframes preloaderSpin {
    to { transform: rotate(360deg); }
}

.preloader-text {
    margin-top: 50px;
    color: var(--color-white);
    font-family: var(--font-primary);
    font-size: 1.2rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.8;
    animation: preloaderPulse 1.5s ease-in-out infinite;
}

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

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-secondary);
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

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

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

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 600;
    line-height: 1.3;
    color: var(--color-secondary);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }

/* ---- Screen Reader ---- */
.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
    word-wrap: normal !important;
}

/* ---- Site Header ---- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 2rem;
    transition: all var(--transition-medium);
    background: transparent;
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-soft);
    padding: 0.75rem 2rem;
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-branding {
    z-index: 1001;
}

.site-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.site-title a {
    color: var(--color-white);
    transition: color var(--transition-fast);
}

.site-header.scrolled .site-title a {
    color: var(--color-secondary);
}

.site-description {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.25rem;
    letter-spacing: 0.5px;
}

.site-header.scrolled .site-description {
    color: var(--color-text-light);
}

/* ---- Navigation ---- */
.main-navigation {
    display: flex;
    align-items: center;
}

.main-navigation ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.main-navigation ul li a {
    color: var(--color-white);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    position: relative;
    padding: 0.5rem 0;
}

.site-header.scrolled .main-navigation ul li a {
    color: var(--color-text);
}

.main-navigation ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width var(--transition-medium);
}

.main-navigation ul li a:hover::after,
.main-navigation ul li.current-menu-item a::after {
    width: 100%;
}

.main-navigation ul li a:hover {
    color: var(--color-primary);
}

/* ---- Hamburger Menu ---- */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 24px;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color-white);
    transition: all var(--transition-fast);
}

.site-header.scrolled .hamburger span {
    background: var(--color-secondary);
}

.menu-toggle.active .hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

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

/* ---- Hero Section ---- */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--color-bg);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.1);
    transition: transform 8s ease-out;
}

.hero-section:hover .hero-bg {
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-overlay) 0%, rgba(91, 192, 190, 0.3) 100%);
    z-index: 1;
}

/* Custom Cursor - Enhanced */
.custom-cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--color-primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 99999;
    transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease, width 0.2s ease, height 0.2s ease;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
}

.custom-cursor.hover {
    transform: translate(-50%, -50%) scale(1.8);
    background: rgba(91, 192, 190, 0.15);
    border-color: var(--color-accent);
}

.custom-cursor-dot {
    width: 6px;
    height: 6px;
    background: var(--color-primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
    transition: opacity 0.15s ease;
}

/* Scroll Progress Indicator */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    z-index: 10001;
    transition: width 0.1s linear;
    box-shadow: 0 0 10px rgba(91, 192, 190, 0.5);
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 2rem;
    max-width: 800px;
}

.hero-title {
    color: var(--color-white);
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    margin-bottom: 2.5rem;
    font-weight: 300;
    letter-spacing: 1px;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    color: var(--color-white);
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
    transition: all var(--transition-medium);
    box-shadow: 0 4px 20px rgba(91, 192, 190, 0.4), 0 0 40px rgba(91, 192, 190, 0.2);
    position: relative;
    overflow: hidden;
}

.hero-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.hero-cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(91, 192, 190, 0.5), 0 0 60px rgba(91, 192, 190, 0.3);
}

.hero-cta:hover::before {
    opacity: 1;
}

.hero-cta .arrow {
    transition: transform var(--transition-fast);
}

.hero-cta:hover .arrow {
    transform: translateY(3px);
}

/* ---- Scroll Indicator ---- */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: bounce 2s infinite;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 13px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(12px); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* ---- Galleries Section ---- */
.galleries-section {
    padding: 4rem 0;
    background: var(--color-bg);
}

.galleries-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    padding: 0 2rem;
}

/* ---- Left Sidebar ---- */
.gallery-sidebar {
    width: 220px;
    flex-shrink: 0;
}

.sidebar-sticky {
    position: sticky;
    top: 100px;
}

.sidebar-title {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--color-primary);
}

.category-list {
    list-style: none;
}

.category-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    margin-bottom: 4px;
    border-radius: var(--radius-medium);
    cursor: pointer;
    transition: all var(--transition-medium);
    font-size: 0.95rem;
    color: var(--color-text-light);
    position: relative;
    overflow: hidden;
}

.category-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: var(--color-primary);
    transform: scaleY(0);
    transition: transform var(--transition-medium);
}

.category-item:hover {
    background: rgba(91, 192, 190, 0.08);
    color: var(--color-text);
}

.category-item:hover::before {
    transform: scaleY(1);
}

.category-item.active {
    background: rgba(91, 192, 190, 0.12);
    color: var(--color-primary);
    font-weight: 600;
}

.category-item.active::before {
    transform: scaleY(1);
}

.cat-icon {
    font-size: 0.6rem;
    opacity: 0.5;
    transition: all var(--transition-fast);
}

.category-item.active .cat-icon {
    opacity: 1;
    color: var(--color-primary);
}

.cat-name {
    flex: 1;
}

.cat-count {
    font-size: 0.8rem;
    color: var(--color-text-light);
    background: rgba(91, 192, 190, 0.1);
    padding: 2px 8px;
    border-radius: 10px;
    min-width: 28px;
    text-align: center;
}

.category-item.active .cat-count {
    background: var(--color-primary);
    color: var(--color-white);
}

/* ---- Gallery Main Area ---- */
.gallery-main {
    flex: 1;
    min-width: 0;
}

.gallery-grid-header {
    margin-bottom: 2rem;
}

.gallery-grid-title {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.gallery-grid-desc {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

/* ---- 4-Column Gallery Grid ---- */
.gallery-grid-4col {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

/* ---- Gallery Card ---- */
.gallery-card {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s ease, transform 0.5s ease;
    animation: cardIn 0.6s ease forwards;
    animation-delay: var(--delay, 0s);
    opacity: 0;
}

.gallery-card.hidden {
    opacity: 0 !important;
    transform: scale(0.8) translateY(20px);
    pointer-events: none;
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.gallery-card.animating {
    animation: cardBounce 0.6s ease forwards;
}

@keyframes cardIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes cardBounce {
    0% { transform: scale(0.95); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

.gallery-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    border-radius: var(--radius-medium);
    overflow: hidden;
    background: var(--color-white);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all var(--transition-medium);
    position: relative;
}

.gallery-card-link::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-medium);
    opacity: 0;
    transition: opacity 0.4s ease;
    box-shadow: 0 0 30px rgba(91, 192, 190, 0.4), inset 0 0 30px rgba(91, 192, 190, 0.1);
    pointer-events: none;
    z-index: 5;
}

.gallery-card-link:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(91, 192, 190, 0.25);
}

.gallery-card-link:hover::after {
    opacity: 1;
}

/* Card Image */
.gallery-card-image {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--color-secondary);
}

.gallery-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-card-link:hover .gallery-card-image img {
    transform: scale(1.08);
}

/* Card Overlay */
.gallery-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(91, 192, 190, 0.15) 0%, rgba(15, 26, 46, 0.75) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}

.gallery-card-link:hover .gallery-card-overlay {
    opacity: 1;
}

.view-btn {
    width: 50px;
    height: 50px;
    border: 2px solid var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--color-white);
    transform: scale(0.8) rotate(90deg);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 0 20px rgba(91, 192, 190, 0.4);
}

.gallery-card-link:hover .view-btn {
    transform: scale(1) rotate(0deg);
    opacity: 1;
    box-shadow: 0 0 30px rgba(91, 192, 190, 0.6);
}

/* Photo Count Badge */
.photo-count {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.6);
    color: var(--color-white);
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 20px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease 0.1s;
}

.gallery-card-link:hover .photo-count {
    opacity: 1;
    transform: translateY(0);
}

/* Card Info */
.gallery-card-info {
    padding: 14px 16px;
}

.gallery-card-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--color-secondary);
    transition: color var(--transition-fast);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.gallery-card-link:hover .gallery-card-title {
    color: var(--color-primary);
}

.gallery-card-cat {
    font-size: 0.8rem;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ---- No Galleries ---- */
.no-galleries {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    color: var(--color-text-light);
}

/* ---- Section Styles ---- */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 0 2rem;
}

.section-header h2 {
    margin-bottom: 0.75rem;
}

.section-header p {
    color: var(--color-text-light);
    font-size: 1.1rem;
}

/* ---- About Section ---- */
.about-section {
    padding: 6rem 2rem;
    background: var(--color-bg);
}

.about-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image img,
.about-image .custom-logo {
    max-width: 300px;
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-strong);
}

.about-content h2 {
    margin-bottom: 1.5rem;
    position: relative;
}

.about-content h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--color-primary);
    margin-top: 1rem;
}

.about-content p {
    color: var(--color-text-light);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.about-cta {
    display: inline-block;
    padding: 0.875rem 2rem;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    border-radius: 50px;
    font-weight: 600;
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.about-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(91, 192, 190, 0.2), transparent);
    transition: left 0.5s ease;
}

.about-cta:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(91, 192, 190, 0.4), 0 0 40px rgba(91, 192, 190, 0.2);
}

.about-cta:hover::before {
    left: 100%;
}

/* ---- Footer ---- */
.site-footer {
    background: var(--color-bg-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 4rem 2rem 2rem;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-widgets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-widget h3 {
    color: var(--color-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.footer-widget p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

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

.copyright {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ---- Page Header ---- */
.page-header {
    padding: 10rem 2rem 3rem;
    text-align: center;
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary) 100%);
}

.page-header .page-title {
    color: var(--color-white);
    font-size: clamp(2rem, 5vw, 3rem);
}

/* ---- Responsive ---- */
@media (max-width: 1200px) {
    .gallery-grid-4col {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .galleries-layout {
        flex-direction: column;
    }

    .gallery-sidebar {
        width: 100%;
    }

    .sidebar-sticky {
        position: static;
    }

    .category-list {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }

    .category-item {
        padding: 8px 14px;
        font-size: 0.9rem;
    }

    .cat-icon {
        display: none;
    }

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

    .about-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .about-content h2::after {
        margin: 1rem auto 0;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .main-navigation {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--color-bg-dark);
        display: flex;
        align-items: center;
        justify-content: center;
        transform: translateX(100%);
        transition: transform var(--transition-medium);
    }

    .main-navigation.active {
        transform: translateX(0);
    }

    .main-navigation ul {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .main-navigation ul li a {
        font-size: 1.5rem;
        color: var(--color-white);
    }

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

    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }
}

@media (max-width: 480px) {
    .gallery-grid-4col {
        grid-template-columns: 1fr;
    }
}
