/* =====================================================
   GOTHIC ART PORTFOLIO - MAIN STYLES
   Dark, mysterious, elegant design
   ===================================================== */

/* Import Gothic Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Crimson+Text:ital,wght@0,400;0,600;1,400&family=IM+Fell+English:ital@0;1&display=swap');

/* =====================================================
   CSS VARIABLES - GOTHIC THEME
   Modify these to change the entire color scheme
   ===================================================== */
:root {
    /* Gothic Color Palette - Black & Red Theme */
    --primary-color: #dc2626;
    --secondary-color: #b91c1c;
    --accent-color: #ef4444;
    --dark-red: #7f1d1d;
    --deep-red: #450a0a;
    
    /* Background Colors */
    --background-color: #000000;
    --surface-color: #0f0f0f;
    --surface-elevated: #1a1a1a;
    
    /* Text Colors */
    --text-color: #e5e5e5;
    --text-secondary: #9ca3af;
    --text-muted: #6b7280;
    
    /* Accent Colors */
    --danger-color: #dc2626;
    --success-color: #059669;
    --warning-color: #dc2626;
    --blood-red: #8b0000;
    
    /* Gothic Effects */
    --shadow-sm: 0 2px 8px rgba(220, 38, 38, 0.15);
    --shadow-md: 0 4px 16px rgba(220, 38, 38, 0.25);
    --shadow-lg: 0 8px 32px rgba(220, 38, 38, 0.35);
    --glow: 0 0 20px rgba(220, 38, 38, 0.6);
    
    /* Typography */
    --font-heading: 'Cinzel', serif;
    --font-body: 'Crimson Text', serif;
    --font-accent: 'IM Fell English', serif;
    
    /* Spacing */
    --border-radius: 4px;
    --border-radius-lg: 8px;
}

/* =====================================================
   BASE STYLES
   ===================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--background-color);
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(220, 38, 38, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(185, 28, 28, 0.08) 0%, transparent 50%),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(220, 38, 38, 0.05) 2px,
            rgba(220, 38, 38, 0.05) 4px
        );
    background-attachment: fixed;
    color: var(--text-color);
    line-height: 1.7;
    min-height: 100vh;
    position: relative;
}

/* Particle canvas overlay (background layer) */
#particle-canvas {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    /* Layering: background (body) < noise overlay (::before) < particles < content < modal */
    z-index: 1; /* below header/main/footer but above body background */
    pointer-events: none;
}

/* Ensure main content is above particles */
header, main, footer, .modal {
    position: relative;
    z-index: 1;
}

/* Inline load error styling */
.load-error {
    background: linear-gradient(135deg, rgba(220,38,38,0.15), rgba(69,10,10,0.6));
    border: 1px solid rgba(220,38,38,0.4);
    padding: 2rem;
    border-radius: 6px;
    text-align: center;
    font-family: var(--font-body);
    color: var(--text-secondary);
    box-shadow: 0 0 25px rgba(220,38,38,0.25);
    backdrop-filter: blur(2px);
    animation: fadeIn 0.6s ease;
}

.load-error p { margin-bottom: 0.5rem; }
.load-error p strong { color: var(--primary-color); }

/* Gothic texture overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' /%3E%3C/filter%3E%3Crect width='100' height='100' filter='url(%23noise)' opacity='0.05'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0; /* keep noise beneath particles */
    opacity: 0.3;
}

main {
    position: relative;
    z-index: 2;
}

/* =====================================================
   HEADER & NAVIGATION
   ===================================================== */
header {
    background: linear-gradient(180deg, var(--surface-color) 0%, rgba(15, 15, 15, 0.95) 100%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.8), inset 0 -1px 0 rgba(220, 38, 38, 0.4);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 2px solid var(--deep-red);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav h1 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-color);
    text-shadow: 0 0 30px rgba(220, 38, 38, 0.8), 0 0 10px rgba(220, 38, 38, 0.5);
    position: relative;
    filter: drop-shadow(0 0 5px var(--primary-color));
}

nav h1::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    box-shadow: 0 0 10px var(--primary-color);
}

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

.nav-link {
    font-family: var(--font-heading);
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transform: translateX(-50%);
    transition: width 0.3s ease;
    box-shadow: 0 0 10px var(--primary-color);
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(220, 38, 38, 0.7);
}

.nsfw-link {
    color: var(--accent-color);
}

.nsfw-link:hover {
    color: #f87171;
    text-shadow: 0 0 10px rgba(239, 68, 68, 0.7);
}

/* =====================================================
   MAIN CONTENT SECTIONS
   ===================================================== */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.section {
    display: none;
    animation: fadeIn 0.6s ease-in;
}

.section.active {
    display: block;
}

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

/* =====================================================
   HERO SECTION
   ===================================================== */
.hero {
    text-align: center;
    /* Reduce vertical padding so footer is visible without scrolling on Home */
    padding: 3rem 2rem;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* Lower min-height so total page (header + hero + footer) fits typical laptop viewport */
    min-height: 60vh;
}

.hero::before {
    content: '❦';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.3;
}

.hero h2 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 3px;
    text-transform: uppercase;
    line-height: 1.2;
}

.hero p {
    font-family: var(--font-accent);
    font-size: 1.5rem;
    color: var(--text-secondary);
    font-style: italic;
    max-width: 600px;
    margin: 0 auto;
}

.hero-about {
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-secondary);
}
.hero-about p {
    font-family: var(--font-accent);
    font-size: 1.1rem;
    line-height: 1.9;
    margin: 0 0 1rem 0;
}

/* =====================================================
   SECTION HEADINGS
   ===================================================== */
h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-color);
    position: relative;
    padding-bottom: 1rem;
}

/* ================= VRCHAT TABS ================= */
.tabs.vrchat-tabs {
    display: inline-flex;
    gap: 0.75rem;
    margin: 0 auto 1rem;
    border: 1px solid rgba(220,38,38,0.35);
    padding: 0.5rem;
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(0,0,0,0.6), rgba(30,30,30,0.4));
    box-shadow: inset 0 0 20px rgba(220,38,38,0.15), 0 0 25px rgba(220,38,38,0.25);
}

.tab-link {
    font-family: var(--font-heading);
    color: var(--text-secondary);
    background: transparent;
    border: 1px solid transparent;
    padding: 0.6rem 1.25rem;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all .25s ease;
}

.tab-link:hover {
    color: var(--primary-color);
    border-color: rgba(220,38,38,0.4);
}

.tab-link.active {
    color: #fff;
    background: linear-gradient(135deg, rgba(220,38,38,0.35), rgba(69,10,10,0.6));
    border-color: rgba(220,38,38,0.6);
    box-shadow: 0 0 20px rgba(220,38,38,0.25);
}

/* Reuse for gallery tabs */
/* Gallery tabs share same base styling */
.tabs.gallery-tabs {
    display: inline-flex;
    gap: 0.75rem;
    margin: 0 auto 1rem;
    border: 1px solid rgba(220,38,38,0.35);
    padding: 0.5rem;
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(0,0,0,0.6), rgba(30,30,30,0.4));
    box-shadow: inset 0 0 20px rgba(220,38,38,0.15), 0 0 25px rgba(220,38,38,0.25);
}

/* NSFW tabs use same styling */
.tabs.nsfw-tabs {
    display: inline-flex;
    gap: 0.75rem;
    margin: 0 auto 1rem;
    border: 1px solid rgba(220,38,38,0.35);
    padding: 0.5rem;
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(0,0,0,0.6), rgba(30,30,30,0.4));
    box-shadow: inset 0 0 20px rgba(220,38,38,0.15), 0 0 25px rgba(220,38,38,0.25);
}


/* Video tiles */
.gallery-grid.videos .gallery-item {
    aspect-ratio: 16/9;
}

.video-thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, var(--dark-red), var(--deep-red));
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-thumb .play {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #fff, #fff 35%, rgba(255,255,255,0.6) 36%);
    position: relative;
    box-shadow: 0 0 20px rgba(255,255,255,0.3), 0 0 25px rgba(220,38,38,0.4);
}

.video-thumb .play::after {
    content: '';
    position: absolute;
    left: 26px;
    top: 20px;
    width: 0;
    height: 0;
    border-left: 18px solid var(--primary-color);
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    box-shadow: 0 0 10px var(--primary-color);
}

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

.gallery-item {
    background: var(--surface-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    border: 1px solid rgba(220, 38, 38, 0.3);
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.15), rgba(185, 28, 28, 0.15));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-lg), 0 0 30px rgba(220, 38, 38, 0.5);
    border-color: var(--primary-color);
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item img,
.placeholder-image {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-item:hover img,
.gallery-item:hover .placeholder-image {
    transform: scale(1.1);
}

.placeholder-image {
    background: linear-gradient(135deg, var(--dark-red), var(--deep-red));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-color);
    text-align: center;
    padding: 1rem;
    border-bottom: 1px solid rgba(220, 38, 38, 0.4);
}

.nsfw-placeholder {
    background: linear-gradient(135deg, var(--blood-red), var(--danger-color));
    box-shadow: inset 0 0 50px rgba(220, 38, 38, 0.3);
}

.artwork-title {
    padding: 1.25rem;
    text-align: center;
    color: var(--text-color);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
    background: var(--surface-elevated);
    position: relative;
    z-index: 2;
}

/* =====================================================
   AGE GATE WARNING
   ===================================================== */
.age-gate-warning {
    text-align: center;
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--surface-color), var(--surface-elevated));
    border-radius: var(--border-radius-lg);
    border: 2px solid var(--primary-color);
    box-shadow: var(--shadow-lg), inset 0 0 50px rgba(220, 38, 38, 0.15);
    position: relative;
    overflow: hidden;
}

.age-gate-warning::before {
    content: '⚠';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 15rem;
    opacity: 0.05;
    color: var(--primary-color);
}

.age-gate-warning p {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--primary-color);
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

/* =====================================================
   MODAL - AGE VERIFICATION
   ===================================================== */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: linear-gradient(135deg, var(--surface-color), var(--surface-elevated));
    padding: 3.5rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    max-width: 550px;
    margin: 2rem;
    border: 3px solid var(--primary-color);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.9), 0 0 100px rgba(220, 38, 38, 0.4);
    animation: slideUp 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.modal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    box-shadow: 0 0 20px var(--primary-color);
}

@keyframes slideUp {
    from {
        transform: translateY(80px) scale(0.9);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.modal-content h2 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 2rem;
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(220, 38, 38, 0.7);
}

.modal-text {
    font-family: var(--font-body);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.modal-buttons {
    display: flex;
    gap: 1.5rem;
    margin-top: 2.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    font-family: var(--font-heading);
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-confirm {
    background: linear-gradient(135deg, var(--success-color), #10b981);
    color: white;
    box-shadow: 0 4px 15px rgba(5, 150, 105, 0.4);
}

.btn-confirm:hover {
    background: linear-gradient(135deg, #10b981, var(--success-color));
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(5, 150, 105, 0.6);
}

.btn-deny {
    background: linear-gradient(135deg, var(--danger-color), #dc2626);
    color: white;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
}

.btn-deny:hover {
    background: linear-gradient(135deg, #dc2626, var(--danger-color));
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.6);
}

/* =====================================================
   PRICES / COMMISSIONS SECTION
   ===================================================== */
.prices-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem;
    background: linear-gradient(135deg, var(--surface-color), var(--surface-elevated));
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(220, 38, 38, 0.3);
    box-shadow: var(--shadow-md);
}

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

/* Category wrapper */
.pricing-category {
    margin-bottom: 2.5rem;
}

.pricing-category-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    letter-spacing: 1px;
    margin: 0 0 1rem;
    text-transform: uppercase;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.price-tier {
    background: linear-gradient(135deg, rgba(220,38,38,0.06), rgba(220,38,38,0.02));
    border: 1px solid rgba(220,38,38,0.3);
    border-radius: 10px;
    padding: 1rem 1.25rem;
}

.price-tier h3 {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin: 0 0 .5rem;
}

.price-tier h3 span {
    color: var(--primary-color);
    font-weight: 700;
}

.price-tier p {
    color: var(--text-secondary);
    font-size: .95rem;
}

.pricing-notes {
    border-top: 1px dashed rgba(220,38,38,0.3);
    padding-top: 1rem;
}

.pricing-notes .note {
    color: var(--text-muted);
    margin: .4rem 0;
    font-size: .95rem;
}

/* Contact card under pricing */
.contact-card {
    margin-top: 1.25rem;
    padding: 1rem 1.25rem;
    border: 1px solid rgba(220,38,38,0.3);
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(220,38,38,0.06), rgba(0,0,0,0.2));
}

.contact-card h3 {
    font-family: var(--font-heading);
    margin: 0 0 .5rem;
}

.contact-method {
    color: var(--text-secondary);
}

.contact-handle {
    color: var(--primary-color);
    font-weight: 700;
}

/* =====================================================
   FOOTER
   ===================================================== */
footer {
    background: transparent; /* No footer background – let particles/background show through */
    text-align: center;
    padding: 2rem 2rem; /* slightly tighter since there's no background bar */
    margin-top: 3rem;
    color: var(--text-muted);
    border-top: none; /* remove dividing line */
    font-family: var(--font-body);
}

/* =====================================================
   CUSTOM CURSOR SET (Fallback order: .ani (not widely supported) -> .cur -> system)
   .ani files often fail in Chrome/Firefox; we chain .cur + native as fallback.
   ===================================================== */
html, body, header, main, footer, nav, .section {
    /* Site-wide cursor: use custom handwriting cursor everywhere */
    cursor: url('../assets/cursor/gHandwriting.cur'), default;
}

/* Remove per-element override so global cursor shows; keep buttons inheriting */
a, button, .tab-link, .nav-link {
    cursor: inherit;
}

/* Text / handwriting zones */
input[type="text"], textarea, .hero-about p, .about-content p, .prices-content p {
    cursor: inherit;
}

/* Precision elements (future use) */
.precision-cursor, .gallery-item img:hover { cursor: inherit; }

/* Busy / working states applied dynamically to <body> */
body.cursor-busy { cursor: inherit; }
body.cursor-working { cursor: inherit; }

/* Help / location / move (optional utility classes) */
.cursor-help { cursor: inherit; }
.cursor-location { cursor: inherit; }
.cursor-move { cursor: inherit; }

/* Resize cursors (diagonals + horizontal/vertical) */
.cursor-resize-ew { cursor: inherit; }
.cursor-resize-ns { cursor: inherit; }
.cursor-resize-nesw { cursor: inherit; }
.cursor-resize-nwse { cursor: inherit; }

/* Overlay animated cursor (uses GIF/WebP if available) */
html.cursor-overlay-active, body.cursor-overlay-active { cursor: none !important; }
#cursor-overlay {
    position: fixed;
    left: 0;
    top: 0;
    width: 32px;
    height: 32px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    pointer-events: none;
    z-index: 9999; /* above everything */
    transform: translate(-50%, -50%);
    opacity: 1;
    display: none; /* shown once assets load */
}


/* =====================================================
   RESPONSIVE DESIGN
   ===================================================== */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1rem;
    }

    nav h1 {
        font-size: 1.5rem;
    }

    .nav-links {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-link {
        font-size: 0.9rem;
    }

    .hero h2 {
        font-size: 2rem;
    }

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

    h2 {
        font-size: 1.8rem;
    }

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

    .modal-content {
        padding: 2rem 1.5rem;
        margin: 1rem;
    }

    .modal-content h2 {
        font-size: 1.5rem;
    }

    .modal-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .btn {
        width: 100%;
    }

    .about-content {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 3rem 1rem;
    }

    .hero h2 {
        font-size: 1.5rem;
    }

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

/* =====================================================
   SCROLLBAR STYLING
   ===================================================== */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--background-color);
    border-left: 1px solid rgba(220, 38, 38, 0.3);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
    border-radius: 6px;
    border: 2px solid var(--background-color);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--secondary-color), var(--accent-color));
    box-shadow: 0 0 10px rgba(220, 38, 38, 0.6);
}
