/* ==========================================================================
   Kovi Arts CSS Design System
   Color Scheme: Inspired by the Watercolor Splash Logo
   ========================================================================== */

/* Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@600;700&family=Outfit:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

/* CSS Variables for Watercolor System */
:root {
    /* Color Palette */
    --bg-light: #faf8f5;
    --bg-warm: #f4efe4;
    --bg-card: #ffffff;
    --text-main: #252226;
    --text-muted: #6e6770;
    
    /* Watercolor Splash Colors */
    --splash-teal: #1a7a82;
    --splash-teal-light: rgba(26, 122, 130, 0.1);
    --splash-green: #2d8a4e;
    --splash-green-light: rgba(45, 138, 78, 0.1);
    --splash-orange: #e67e22;
    --splash-orange-light: rgba(230, 126, 34, 0.1);
    --splash-red: #d63c3c;
    --splash-red-light: rgba(214, 60, 60, 0.1);
    --splash-yellow: #f1c40f;
    
    /* WhatsApp Branded Color */
    --whatsapp-green: #25D366;
    --whatsapp-hover: #20ba5a;

    /* Styling Properties */
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 25px rgba(37, 34, 38, 0.08);
    --shadow-lg: 0 20px 40px rgba(37, 34, 38, 0.15);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-light);
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-warm);
}
::-webkit-scrollbar-thumb {
    background: var(--text-muted);
    border-radius: 10px;
    border: 3px solid var(--bg-warm);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--splash-teal);
}

/* Common Typography & Headings */
h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.handwritten {
    font-family: 'Caveat', cursive;
    font-size: 1.8rem;
    color: var(--splash-orange);
    display: inline-block;
}

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

/* ==========================================================================
   Public Index Styles
   ========================================================================== */

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 8%;
    background-color: rgba(250, 248, 245, 0.9);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(220, 215, 205, 0.5);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 50px;
    width: 50px;
    object-fit: contain;
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--text-main);
}

.logo-text span {
    color: var(--splash-teal);
}

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

.nav-links a {
    font-weight: 500;
    position: relative;
    padding: 0.2rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--splash-teal), var(--splash-orange));
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.admin-btn {
    background: var(--bg-warm);
    border: 1px solid rgba(110, 103, 112, 0.2);
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
}

.admin-btn:hover {
    background: var(--text-main);
    color: #fff;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5rem 8% 8rem 8%;
    background: radial-gradient(circle at 10% 20%, rgba(26, 122, 130, 0.05) 0%, rgba(244, 239, 228, 0.2) 90%);
    position: relative;
    min-height: 80vh;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.hero-title span {
    background: linear-gradient(95deg, var(--splash-teal), var(--splash-orange), var(--splash-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.cta-group {
    display: flex;
    gap: 1.2rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--splash-teal), #2b9ca6);
    color: white;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(26, 122, 130, 0.3);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(26, 122, 130, 0.4);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--text-main);
    color: var(--text-main);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
}

.btn-secondary:hover {
    background: var(--text-main);
    color: white;
    transform: translateY(-3px);
}

.hero-art {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Beautiful watercolor frame design */
.logo-showcase {
    position: relative;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: var(--shadow-lg);
    padding: 15px;
    z-index: 2;
}

.logo-showcase img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

/* Splash elements floating in the background */
.splash-bg {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.55;
    z-index: 1;
}

.splash-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(var(--splash-teal-light), transparent);
    top: -50px;
    left: -50px;
}

.splash-2 {
    width: 250px;
    height: 250px;
    background: radial-gradient(var(--splash-orange-light), transparent);
    bottom: -30px;
    right: -20px;
}

.splash-3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(var(--splash-red-light), transparent);
    top: 50%;
    left: 40%;
}

/* Section Header */
.section-title-wrapper {
    text-align: center;
    padding: 4rem 1rem 2rem 1rem;
    position: relative;
}

.section-title {
    font-size: 2.8rem;
    position: relative;
    display: inline-block;
    padding-bottom: 0.8rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 25%;
    width: 50%;
    height: 4px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--splash-teal), var(--splash-orange), var(--splash-red));
}

/* Gallery Section */
.gallery-section {
    padding: 2rem 8% 6rem 8%;
}

/* Category Filters */
.gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 3.5rem;
}

.filter-tab {
    background: white;
    border: 1px solid rgba(110, 103, 112, 0.15);
    color: var(--text-muted);
    padding: 0.6rem 1.6rem;
    border-radius: 30px;
    font-weight: 500;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.filter-tab:hover {
    color: var(--text-main);
    border-color: var(--text-main);
}

.filter-tab.active {
    background: var(--text-main);
    color: white;
    border-color: var(--text-main);
    box-shadow: 0 4px 12px rgba(37, 34, 38, 0.2);
}

/* Artwork Grid & Cards */
.art-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2.5rem;
}

.art-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(220, 215, 205, 0.4);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.art-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: rgba(26, 122, 130, 0.3);
}

.art-image-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 110%; /* Square-ish portrait layout */
    overflow: hidden;
    background: #f0ebe2;
    cursor: pointer;
}

.art-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.art-card:hover .art-image {
    transform: scale(1.06);
}

/* Badges */
.card-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 10;
}

.badge {
    padding: 0.35rem 0.8rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.badge-new {
    background: linear-gradient(135deg, var(--splash-green), #4cd137);
    color: white;
}

.badge-sold {
    background: rgba(37, 34, 38, 0.85);
    color: white;
    backdrop-filter: blur(4px);
}

/* Card Body Content */
.art-info {
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.art-title {
    font-size: 1.3rem;
    color: var(--text-main);
    margin-bottom: 0.5rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.art-pricing {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.2rem;
}

.price-lkr {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-main);
}

.price-usd {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.card-actions {
    margin-top: auto;
}

/* Order via WhatsApp Button */
.btn-order-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: var(--whatsapp-green);
    color: white;
    font-weight: 600;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    text-align: center;
    font-size: 0.95rem;
    border: none;
    width: 100%;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.25);
    transition: var(--transition);
}

.btn-order-whatsapp:hover {
    background-color: var(--whatsapp-hover);
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.35);
    transform: translateY(-2px);
}

.btn-order-whatsapp svg {
    fill: currentColor;
    width: 20px;
    height: 20px;
}

/* When art is sold out */
.art-card.sold-out .btn-order-whatsapp {
    background-color: var(--bg-warm);
    color: var(--text-muted);
    border: 1px solid rgba(110, 103, 112, 0.2);
    box-shadow: none;
    cursor: not-allowed;
}

.art-card.sold-out .btn-order-whatsapp:hover {
    transform: none;
    background-color: var(--bg-warm);
}

/* Lightbox Modal (Zoomed View) */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(34, 30, 34, 0.9);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    padding: 1.5rem;
}

.lightbox-modal.active {
    opacity: 1;
    pointer-events: all;
}

.lightbox-content {
    background: var(--bg-light);
    width: 100%;
    max-width: 900px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-lg);
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    transform: scale(0.95);
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.lightbox-modal.active .lightbox-content {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: rgba(255, 255, 255, 0.8);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.4rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-main);
    z-index: 10;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.lightbox-close:hover {
    background: var(--text-main);
    color: white;
}

.lightbox-img-pane {
    position: relative;
    background-color: var(--bg-warm);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 500px;
}

.lightbox-img-pane img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.lightbox-info-pane {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.lightbox-badges {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.lightbox-title {
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.lightbox-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.lightbox-pricing {
    border-top: 1px solid rgba(110, 103, 112, 0.15);
    border-bottom: 1px solid rgba(110, 103, 112, 0.15);
    padding: 1.2rem 0;
    margin-bottom: 2rem;
}

.lightbox-price-lkr {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--splash-teal);
}

.lightbox-price-usd {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Floating WhatsApp Inquiries Button */
.whatsapp-floating {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--whatsapp-green);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99;
    cursor: pointer;
    transition: var(--transition);
}

.whatsapp-floating:hover {
    background-color: var(--whatsapp-hover);
    transform: scale(1.1) rotate(5deg);
}

.whatsapp-floating svg {
    width: 32px;
    height: 32px;
    fill: currentColor;
}

/* Footer styling */
footer {
    background: var(--text-main);
    color: #e5dfd9;
    padding: 4rem 8% 2rem 8%;
    border-top: 5px solid var(--splash-orange);
}

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

.footer-brand {
    max-width: 300px;
}

.footer-desc {
    color: #a49e97;
    font-size: 0.9rem;
    margin-top: 1rem;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-contact h4 {
    font-family: 'Playfair Display', serif;
    color: #fff;
    margin-bottom: 0.5rem;
}

.footer-contact a {
    color: #a49e97;
}

.footer-contact a:hover {
    color: var(--whatsapp-green);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #7f7a73;
    font-size: 0.85rem;
}

/* ==========================================================================
   Admin Section Styles
   ========================================================================== */

/* Login Page Layout */
.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 2rem;
    background: linear-gradient(135deg, var(--bg-warm), #e8e2d4);
}

.login-card {
    background: white;
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 440px;
    text-align: center;
    border: 1px solid rgba(220, 215, 205, 0.5);
}

.login-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem auto;
    display: block;
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
}

.login-title {
    margin-bottom: 0.5rem;
    font-size: 2rem;
}

.login-subtitle {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

/* Admin Dashboard layout */
.admin-navbar {
    background: var(--text-main);
    color: white;
    padding: 1.2rem 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.admin-nav-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-admin-logout {
    background: rgba(255,255,255,0.15);
    border: none;
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-weight: 500;
}

.btn-admin-logout:hover {
    background: var(--splash-red);
}

.admin-dashboard {
    padding: 3rem 8%;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.stat-card {
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(220, 215, 205, 0.4);
    display: flex;
    flex-direction: column;
}

.stat-val {
    font-size: 2rem;
    font-weight: 700;
    color: var(--splash-teal);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-lbl {
    color: var(--text-muted);
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Form Styles */
.form-group {
    margin-bottom: 1.25rem;
}

.form-label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-main);
}

.form-control {
    width: 100%;
    padding: 0.8rem 1rem;
    font-family: 'Outfit', sans-serif;
    background: var(--bg-light);
    border: 1px solid rgba(110, 103, 112, 0.2);
    border-radius: var(--radius-sm);
    color: var(--text-main);
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--splash-teal);
    background: white;
    box-shadow: 0 0 0 4px var(--splash-teal-light);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.checkbox-group {
    display: flex;
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.9rem;
}

.checkbox-label input {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--splash-teal);
}

.form-error {
    background-color: var(--splash-red-light);
    color: var(--splash-red);
    padding: 0.8rem;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--splash-red);
}

.form-success {
    background-color: var(--splash-green-light);
    color: var(--splash-green);
    padding: 0.8rem;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--splash-green);
}

/* Modal form style */
.admin-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(34, 30, 34, 0.7);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    padding: 1.5rem;
}

.admin-modal.active {
    opacity: 1;
    pointer-events: all;
}

.admin-modal-content {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 550px;
    position: relative;
}

/* Grid layout for artwork table in admin */
.admin-table-container {
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(220, 215, 205, 0.4);
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.admin-table th {
    background-color: var(--bg-warm);
    padding: 1rem 1.5rem;
    font-weight: 600;
    color: var(--text-main);
    border-bottom: 2px solid rgba(220, 215, 205, 0.6);
}

.admin-table td {
    padding: 1.2rem 1.5rem;
    border-bottom: 1px solid rgba(220, 215, 205, 0.4);
    vertical-align: middle;
}

.admin-table tr:hover td {
    background-color: rgba(250, 248, 245, 0.5);
}

.admin-art-thumb {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 4px;
    background: #eee;
}

.admin-action-btns {
    display: flex;
    gap: 8px;
}

.btn-edit {
    background: var(--splash-teal-light);
    color: var(--splash-teal);
    border: none;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.85rem;
}

.btn-edit:hover {
    background: var(--splash-teal);
    color: white;
}

.btn-delete {
    background: var(--splash-red-light);
    color: var(--splash-red);
    border: none;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.85rem;
}

.btn-delete:hover {
    background: var(--splash-red);
    color: white;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */

@media (max-width: 992px) {
    .hero {
        flex-direction: column-reverse;
        padding: 3rem 8% 5rem 8%;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .cta-group {
        justify-content: center;
    }
    
    .lightbox-content {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    
    .lightbox-img-pane {
        height: 350px;
    }
    
    .lightbox-info-pane {
        padding: 1.8rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem 5%;
    }
    
    .nav-links {
        display: none; /* In a real project we'd use a hamburger, but since we are simple we'll style it neatly */
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .logo-showcase {
        width: 280px;
        height: 280px;
    }
    
    .gallery-section {
        padding: 1rem 5% 4rem 5%;
    }
    
    .art-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 1.5rem;
    }
    
    .admin-navbar {
        padding: 1rem 5%;
    }
    
    .admin-dashboard {
        padding: 2rem 5%;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .cta-group {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-group button, .cta-group a {
        width: 100%;
        text-align: center;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .lightbox-content {
        max-height: 90vh;
        overflow-y: auto;
    }
    
    .lightbox-img-pane {
        height: 260px;
    }
    
    .dashboard-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .dashboard-header button {
        width: 100%;
    }
}
