/* ====== Kalaskameran — Design System ====== */

:root {
    --bg: #0f0e0e;
    --bg-warm: #1a1614;
    --surface: #242120;
    --surface-hover: #2e2a28;
    --text: #f2ede8;
    --text-muted: #9a918a;
    --accent: #e8764b;
    --accent-glow: #ff8a5c;
    --accent-soft: rgba(232, 118, 75, 0.12);
    --gold: #d4a843;
    --cream: #f5efe6;
    --teal: #6b9e8f;
    --teal-soft: rgba(107, 158, 143, 0.12);
    --radius: 12px;
    --radius-lg: 20px;
    --font-display: 'Syne', sans-serif;
    --font-body: 'DM Sans', sans-serif;
}

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

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

main { flex: 1; }

/* ====== Navbar ====== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(15, 14, 14, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-logo {
    color: var(--text);
    text-decoration: none;
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.nav-logo-img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    filter: drop-shadow(0 2px 6px rgba(232, 118, 75, 0.3));
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-logo:hover .nav-logo-img {
    transform: rotate(-8deg) scale(1.1);
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    margin-left: 1.5rem;
    font-size: 0.9rem;
    transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }

.lang-switch {
    font-weight: 700 !important;
    font-size: 0.8rem !important;
    padding: 0.2rem 0.6rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    text-decoration: none !important;
    color: var(--text-muted) !important;
    transition: all 0.2s;
    letter-spacing: 0.05em;
}
.lang-switch:hover {
    color: var(--text) !important;
    border-color: var(--accent);
    background: var(--accent-soft);
}

/* ====== Footer ====== */

.footer {
    text-align: center;
    padding: 3rem 2rem;
    color: var(--text-muted);
    font-size: 0.85rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
    margin-bottom: 0.8rem;
    opacity: 0.6;
    transition: opacity 0.3s;
}
.footer:hover .footer-logo { opacity: 1; }

/* ====== Flash messages ====== */

.flash-messages { max-width: 960px; margin: 5rem auto 0; padding: 0 1rem; }
.flash { padding: 0.75rem 1rem; border-radius: var(--radius); margin-bottom: 0.5rem; }
.flash-success { background: #1a3d2a; color: #7dcea0; }
.flash-error { background: #3d1a1a; color: #e07a7a; }

/* ====== Buttons ====== */

.btn {
    display: inline-block;
    padding: 0.75rem 1.8rem;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.25s;
}
.btn:hover {
    background: var(--accent-glow);
    transform: translateY(-1px);
    box-shadow: 0 8px 30px rgba(232, 118, 75, 0.3);
}

.btn-light {
    background: var(--cream);
    color: var(--bg);
}
.btn-light:hover {
    background: #fff;
    box-shadow: 0 8px 30px rgba(245, 239, 230, 0.2);
}

.btn-secondary { background: var(--surface); color: var(--text); }
.btn-secondary:hover { background: var(--surface-hover); box-shadow: none; }
.btn-danger { background: #c0392b; }
.btn-danger:hover { background: #e74c3c; }
.btn-sm { padding: 0.4rem 1rem; font-size: 0.85rem; }

/* ====== HERO ====== */

.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 6rem 4rem 4rem;
    gap: 2rem;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(232, 118, 75, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 30%, rgba(107, 158, 143, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 60% 80%, rgba(212, 168, 67, 0.04) 0%, transparent 40%),
        var(--bg);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.015'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.hero-inner { position: relative; z-index: 1; }

.hero-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: var(--accent-soft);
    color: var(--accent);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 2rem;
    border: 1px solid rgba(232, 118, 75, 0.2);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}

.hero-line { display: block; }
.hero-line.accent { color: var(--accent); }

.hero-desc {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 480px;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.hero-cta { display: flex; gap: 1rem; }

/* Polaroid decorations */

.hero-decoration {
    position: relative;
    height: 500px;
    z-index: 1;
}

.polaroid {
    position: absolute;
    background: #fff;
    padding: 10px 10px 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.polaroid:hover {
    transform: rotate(0deg) scale(1.05) !important;
    z-index: 10;
}

.polaroid-inner { overflow: hidden; }

.polaroid-img {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #e8764b 0%, #d4a843 50%, #e07a5f 100%);
    border-radius: 2px;
}
.polaroid-img.img-2 {
    background: linear-gradient(135deg, #6b8f71 0%, #afd5aa 50%, #4a7c59 100%);
}
.polaroid-img.img-3 {
    background: linear-gradient(135deg, #7b6b8a 0%, #c4a8d8 50%, #5f4b73 100%);
}

.polaroid-caption {
    font-family: var(--font-display);
    color: #333;
    font-size: 0.8rem;
    text-align: center;
    padding-top: 10px;
    font-weight: 600;
}

.polaroid-1 { top: 5%; left: 0%; transform: rotate(-8deg); }
.polaroid-2 { top: 15%; left: 25%; transform: rotate(3deg); z-index: 3; }
.polaroid-3 { bottom: 5%; right: 5%; transform: rotate(-5deg); }

/* Logo polaroid */

.polaroid-logo {
    z-index: 3;
}
.polaroid-logo .polaroid-img {
    background: linear-gradient(135deg, #6b9e8f 0%, #7fb8a8 50%, #5a8d7e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.polaroid-logo img.polaroid-img {
    width: 200px;
    height: 200px;
    object-fit: contain;
    padding: 10px;
    border-radius: 2px;
}

/* ====== Steps ====== */

.steps-section {
    padding: 6rem 4rem;
    max-width: 1100px;
    margin: 0 auto;
}

.section-title {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3.5rem;
    letter-spacing: -0.02em;
}

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

.step {
    background: var(--surface);
    padding: 2rem 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: all 0.3s;
    animation: fadeUp 0.6s ease both;
    animation-delay: calc(var(--delay) * 0.1s);
}
.step:hover {
    border-color: rgba(232, 118, 75, 0.15);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.step-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-soft);
    color: var(--accent);
    border-radius: 14px;
    margin-bottom: 1.2rem;
}

.step h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.step p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

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

/* ====== Features ====== */

.features-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding: 2rem 4rem 6rem;
    max-width: 1100px;
    margin: 0 auto;
}

.feature-card {
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: linear-gradient(135deg, var(--surface) 0%, rgba(36, 33, 32, 0.5) 100%);
    transition: all 0.3s;
}
.feature-card:hover {
    border-color: rgba(232, 118, 75, 0.2);
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.7rem;
    color: var(--accent);
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ====== Event page ====== */

.event-header { text-align: center; margin-bottom: 2rem; padding-top: 5rem; }
.event-header h1 { font-family: var(--font-display); font-size: 2.2rem; font-weight: 800; }
.event-date { color: var(--text-muted); }
.event-desc { margin-top: 0.5rem; color: var(--text-muted); }
.event-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
}
.qr-section, .sms-section {
    text-align: center;
    background: var(--surface);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.04);
}
.qr-code { max-width: 200px; margin: 1rem auto; display: block; border-radius: 8px; }
.qr-url { font-size: 0.8rem; color: var(--text-muted); word-break: break-all; }
.sms-number { font-size: 2rem; font-weight: 700; color: var(--accent); margin: 0.5rem 0; }
.status-active { color: #7dcea0; font-weight: 600; }
.status-inactive { color: var(--text-muted); }

/* ====== Photo grid ====== */

.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
}
.gallery-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
.photo-thumb img, .photo-admin-item img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: var(--radius);
    transition: transform 0.2s;
}
.photo-thumb:hover img { transform: scale(1.03); }
.photo-admin-item { text-align: center; }
.photo-admin-item .btn { margin-top: 0.5rem; }
.empty { color: var(--text-muted); font-style: italic; padding: 2rem; text-align: center; }

/* ====== Photo page ====== */

.photo-page { text-align: center; padding-top: 5rem; max-width: 960px; margin: 0 auto; padding-left: 2rem; padding-right: 2rem; }
.photo-view img {
    max-width: 100%;
    max-height: 70vh;
    border-radius: var(--radius);
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.4);
}
.photo-info { margin-top: 1.5rem; }
.photo-date { color: var(--text-muted); margin-bottom: 1rem; }
.photo-actions { display: flex; gap: 1rem; justify-content: center; }

/* ====== Trigger page ====== */

.trigger-page { text-align: center; padding: 6rem 2rem 2rem; }
.trigger-page h1 { font-family: var(--font-display); font-weight: 800; font-size: 2rem; }
.trigger-sub { color: var(--text-muted); margin-bottom: 2.5rem; font-size: 1.1rem; }

.trigger-button {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-family: var(--font-body);
    font-size: 1.2rem;
    transition: all 0.3s;
    box-shadow: 0 8px 40px rgba(232, 118, 75, 0.4);
}
.trigger-button:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 50px rgba(232, 118, 75, 0.5);
}
.trigger-button:active, .trigger-button.triggered {
    transform: scale(0.95);
    background: #c5613a;
}
.trigger-button:disabled { opacity: 0.5; cursor: not-allowed; }
.trigger-icon { font-size: 3rem; margin-bottom: 0.5rem; }
.trigger-status { font-size: 1.1rem; color: var(--text-muted); min-height: 1.5em; }
.latest-photo { margin-top: 2rem; }
.latest-photo img { max-width: 400px; width: 100%; border-radius: var(--radius); margin: 1rem 0; }

/* ====== Gallery closed ====== */

.gallery-closed {
    text-align: center;
    padding: 8rem 2rem 4rem;
    max-width: 500px;
    margin: 0 auto;
}
.gallery-closed-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 1.5rem;
    opacity: 0.4;
}
.gallery-closed h1 {
    font-family: var(--font-display);
    font-weight: 800;
    margin-bottom: 0.8rem;
}
.gallery-closed p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* ====== Gallery ====== */

.gallery-page { text-align: center; padding-top: 5rem; max-width: 1100px; margin: 0 auto; padding-left: 2rem; padding-right: 2rem; padding-bottom: 3rem; }
.gallery-page h1 { font-family: var(--font-display); font-weight: 800; margin-bottom: 0.5rem; }
.gallery-actions { display: flex; gap: 1rem; justify-content: center; margin-top: 2rem; }
.gallery-header { text-align: center; padding-top: 5rem; margin-bottom: 2rem; }
.gallery-header h1 { font-family: var(--font-display); font-weight: 800; }

/* ====== Admin ====== */

.admin-page { padding-top: 5rem; max-width: 960px; margin: 0 auto; padding-left: 2rem; padding-right: 2rem; }
.admin-page h1 { font-family: var(--font-display); font-weight: 800; margin-bottom: 1.5rem; }
.stats-row { display: flex; gap: 1.5rem; margin-bottom: 2rem; flex-wrap: wrap; }
.stat-card {
    background: var(--surface);
    padding: 1.5rem 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.04);
    text-align: center;
    min-width: 120px;
}
.stat-num { font-family: var(--font-display); font-size: 2.5rem; font-weight: 700; color: var(--accent); }
.stat-label { color: var(--text-muted); }

.event-list { display: grid; gap: 1rem; margin-top: 1rem; }
.event-card {
    background: var(--surface);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.04);
}
.event-card h3 { margin-bottom: 0.3rem; font-family: var(--font-display); }
.event-card p { color: var(--text-muted); font-size: 0.9rem; }
.event-card code { background: rgba(255,255,255,0.06); padding: 0.1rem 0.4rem; border-radius: 4px; font-size: 0.85rem; color: var(--accent); }
.event-badges { margin: 0.5rem 0; display: flex; gap: 0.5rem; }
.badge { padding: 0.2rem 0.6rem; border-radius: 20px; font-size: 0.75rem; font-weight: 600; }
.badge-sms { background: rgba(100, 150, 255, 0.15); color: #6496ff; }
.badge-web { background: rgba(100, 200, 130, 0.15); color: #64c882; }
.event-actions-row { display: flex; gap: 0.5rem; margin-top: 0.5rem; }

/* ====== Forms ====== */

.form-section {
    background: var(--surface);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.04);
}
.event-form .form-group { margin-bottom: 1rem; }
.event-form label { display: block; font-weight: 600; margin-bottom: 0.3rem; font-size: 0.9rem; color: var(--text-muted); }
.event-form input[type="text"],
.event-form input[type="date"],
.event-form textarea {
    width: 100%;
    padding: 0.7rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
}
.event-form input:focus, .event-form textarea:focus {
    outline: none;
    border-color: var(--accent);
}
.form-row { display: flex; gap: 1.5rem; margin-bottom: 1rem; }
.form-row label { font-weight: normal; display: flex; align-items: center; gap: 0.4rem; color: var(--text); }
.upload-form { display: flex; gap: 1rem; align-items: center; margin: 1rem 0; flex-wrap: wrap; }
.overlay-list { margin: 1rem 0; }
.overlay-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* ====== Login ====== */

.login-page { text-align: center; padding: 6rem 0 4rem; }
.login-page h1 { font-family: var(--font-display); font-weight: 800; }
.login-form { max-width: 300px; margin: 2rem auto; }
.login-form input {
    width: 100%;
    padding: 0.7rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
}
.login-form input:focus {
    outline: none;
    border-color: var(--accent);
}

hr { border: none; border-top: 1px solid rgba(255, 255, 255, 0.05); margin: 2rem 0; }

/* ====== Contact form ====== */

.contact-section {
    max-width: 700px;
    margin: 0 auto;
    padding: 4rem 2rem 6rem;
}

.contact-desc {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.contact-form {
    background: var(--surface);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.contact-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-field { margin-bottom: 1rem; }

.contact-field label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 0.4rem;
}

.contact-field input,
.contact-field textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    transition: border-color 0.2s;
}

.contact-field input:focus,
.contact-field textarea:focus {
    outline: none;
    border-color: var(--accent);
}

.contact-field textarea { resize: vertical; min-height: 120px; }

.contact-form .btn { width: 100%; padding: 0.9rem; font-size: 1rem; margin-top: 0.5rem; }

/* ====== picd.se ====== */

.picd-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background:
        radial-gradient(ellipse at 50% 40%, rgba(232, 118, 75, 0.06) 0%, transparent 60%),
        var(--bg);
}

.picd-card {
    text-align: center;
    max-width: 400px;
    width: 100%;
}

.picd-logo {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 1rem;
    filter: drop-shadow(0 8px 24px rgba(232, 118, 75, 0.3));
}

.picd-title {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.picd-sub {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

.picd-form {
    display: flex;
    gap: 0.5rem;
}

.picd-input {
    flex: 1;
    padding: 0.9rem 1.2rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 1.1rem;
    font-family: var(--font-display);
    font-weight: 600;
    background: var(--surface);
    color: var(--text);
    text-align: center;
    letter-spacing: 0.05em;
    transition: border-color 0.2s;
}
.picd-input:focus {
    outline: none;
    border-color: var(--accent);
}
.picd-input::placeholder {
    color: var(--text-muted);
    font-weight: 400;
}

.picd-btn {
    padding: 0.9rem 1.8rem;
    font-size: 1.1rem;
    font-weight: 700;
    white-space: nowrap;
}

.picd-error {
    color: #e07a7a;
    margin-top: 1rem;
    font-size: 0.9rem;
}

.picd-footer {
    margin-top: 3rem;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    opacity: 0.5;
    transition: opacity 0.2s;
}
.picd-footer:hover { opacity: 1; }

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

@media (max-width: 900px) {
    .hero {
        grid-template-columns: 1fr;
        padding: 7rem 2rem 3rem;
        min-height: auto;
    }
    .hero-decoration { display: none; }
    .hero-title { font-size: 2.5rem; }
    .steps { grid-template-columns: repeat(2, 1fr); }
    .features-section { grid-template-columns: 1fr; padding: 2rem; }
    .steps-section { padding: 4rem 2rem; }
}

@media (max-width: 600px) {
    .hero { padding: 6rem 1.5rem 2rem; }
    .hero-title { font-size: 2rem; }
    .steps { grid-template-columns: 1fr; }
    .trigger-button { width: 160px; height: 160px; }
    .photo-grid { grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); padding: 0 1rem; }
    .admin-page { padding-left: 1rem; padding-right: 1rem; }
    .contact-row { grid-template-columns: 1fr; }
    .contact-form { padding: 1.5rem; }
    .contact-section { padding: 3rem 1.5rem 4rem; }
}
