/* =========================================================
   VICIOUZ AIRBRUSH
   Global Styles
   ========================================================= */

:root {
    --background: #070707;
    --background-soft: #0e0e0e;
    --background-card: #121212;

    --text: #f5f5f5;
    --text-muted: #aaa;

    --accent: #8129e6;
    --accent-light: #a34cff;

    --border: rgba(255,255,255,0.10);

    --container: 1200px;
}


/* RESET */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    background: var(--background);
    color: var(--text);

    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}


/* LAYOUT */

.container {
    width: min(92%, var(--container));
    margin: 0 auto;
}

.section {
    padding: 90px 0;
}


/* HEADER */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;

    background: rgba(5,5,5,0.95);
    border-bottom: 1px solid var(--border);

    backdrop-filter: blur(10px);
}

.header-inner {
    min-height: 78px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* LOGO */

.logo {
    display: flex;
    align-items: center;
}

.site-logo {
    display: block;
    width: auto;
    height: 58px;
    max-width: 240px;
    object-fit: contain;
}


/* NAVIGATION */

.main-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.main-nav a {
    font-size: 13px;

    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 1px;

    transition: 0.2s ease;
}

.main-nav a:hover {
    color: var(--accent-light);
}

.nav-quote {
    padding: 11px 18px;

    border: 1px solid var(--accent);

    color: white;
}

.mobile-menu-button {
    display: none;

    background: none;
    border: 0;

    color: white;

    font-size: 28px;
}


/* HERO */

.hero {
    position: relative;

    min-height: 680px;

    display: flex;
    align-items: center;

    background-image:
        url('/assets/images/hero/hero.jpg');

    background-size: cover;
    background-position: center;

    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,0.96) 0%,
            rgba(0,0,0,0.82) 35%,
            rgba(0,0,0,0.35) 70%,
            rgba(0,0,0,0.18) 100%
        );
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-copy {
    max-width: 620px;
}

.eyebrow {
    margin-bottom: 12px;

    color: var(--accent-light);

    font-size: 14px;
    font-weight: 800;

    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero h1 {
    margin: 0;

    font-size: clamp(60px, 7vw, 100px);

    line-height: 0.92;

    text-transform: uppercase;

    letter-spacing: -4px;
}

.hero h1 span {
    display: block;

    color: var(--accent-light);
}

.hero-description {
    max-width: 580px;

    margin: 28px 0;

    font-size: 20px;

    color: #ddd;
}

.hero-actions {
    display: flex;
    gap: 15px;
}


/* BUTTONS */

.button {
    display: inline-block;

    padding: 15px 26px;

    font-weight: 800;

    text-transform: uppercase;
    letter-spacing: 1px;

    border: 1px solid transparent;

    transition: 0.2s ease;
}

.button-primary {
    background: var(--accent);

    color: white;
}

.button-primary:hover {
    background: var(--accent-light);

    transform: translateY(-2px);
}

.button-secondary {
    border-color: rgba(255,255,255,0.25);

    background: rgba(0,0,0,0.25);
}

.button-secondary:hover {
    border-color: var(--accent-light);
}


/* SECTION HEADINGS */

.section-heading {
    max-width: 700px;

    margin-bottom: 45px;
}

.section-heading h2,
.artist-copy h2,
.quote-banner h2 {
    margin: 0 0 15px;

    font-size: clamp(38px, 5vw, 62px);

    line-height: 1;

    text-transform: uppercase;

    letter-spacing: -2px;
}

.section-heading p {
    color: var(--text-muted);
}

.section-heading-row {
    max-width: none;

    display: flex;
    align-items: end;
    justify-content: space-between;

    gap: 30px;
}


/* SERVICES */

.services-section {
    background: var(--background-soft);
}

.service-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 28px;
}

.service-card {
    background: var(--background-card);

    border: 1px solid var(--border);

    transition: 0.25s ease;
}

.service-card:hover {
    transform: translateY(-6px);

    border-color:
        rgba(163,76,255,0.45);
}

.service-image {
    aspect-ratio: 4 / 3;

    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.4s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.04);
}

.service-content {
    padding: 25px;
}

.service-content h3 {
    margin-top: 0;

    text-transform: uppercase;
}

.service-content p {
    margin-bottom: 0;

    color: var(--text-muted);
}


/* ARTIST */

.artist-section {
    padding: 0;

    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.artist-grid {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    align-items: stretch;
}

.artist-image {
    aspect-ratio: 4 / 3;
}

.artist-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.artist-copy {
    padding: 80px 60px;

    align-self: center;
}

.artist-copy h2 span {
    display: block;

    color: var(--accent-light);
}

.artist-copy p {
    color: var(--text-muted);

    max-width: 560px;
}

.text-link {
    display: inline-block;

    margin-top: 20px;

    color: var(--accent-light);

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 1px;
}


/* GALLERY */

.gallery-preview {
    background: #080808;
}

.gallery-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 14px;
}

.gallery-card {
    position: relative;

    aspect-ratio: 1 / 1;

    overflow: hidden;

    background: #111;
}

.gallery-card img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.35s ease,
        opacity 0.35s ease;
}

.gallery-caption {
    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    padding: 40px 15px 15px;

    font-weight: 700;

    background:
        linear-gradient(
            transparent,
            rgba(0,0,0,0.9)
        );

    opacity: 0;

    transition: opacity 0.25s ease;
}

.gallery-card:hover img {
    transform: scale(1.05);

    opacity: 0.75;
}

.gallery-card:hover .gallery-caption {
    opacity: 1;
}


/* QUOTE CTA */

.quote-banner {
    padding: 100px 20px;

    text-align: center;

    background:
        radial-gradient(
            circle at center,
            rgba(129,41,230,0.18),
            transparent 55%
        ),
        #0a0a0a;

    border-top: 1px solid var(--border);
}

.quote-banner p {
    max-width: 650px;

    margin-left: auto;
    margin-right: auto;

    color: var(--text-muted);
}

.quote-banner .button {
    margin-top: 20px;
}


/* FOOTER */

.site-footer {
    padding-top: 50px;

    background: #050505;

    border-top: 1px solid var(--border);
}

.footer-inner {
    display: flex;

    justify-content: space-between;

    gap: 30px;
}

.footer-inner p {
    color: var(--text-muted);
}

.footer-links {
    display: flex;

    gap: 20px;
}

.footer-links a:hover {
    color: var(--accent-light);
}

.footer-bottom {
    margin-top: 40px;

    padding: 20px;

    text-align: center;

    color: #777;

    border-top: 1px solid var(--border);

    font-size: 13px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

    .mobile-menu-button {
        display: block;
    }

    .main-nav {
        display: none;

        position: absolute;

        top: 78px;
        left: 0;
        right: 0;

        padding: 25px;

        background: #080808;

        flex-direction: column;
        align-items: stretch;

        border-bottom: 1px solid var(--border);
    }

    .main-nav.active {
        display: flex;
    }

    .hero {
        min-height: 600px;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .artist-grid {
        grid-template-columns: 1fr;
    }

    .artist-copy {
        padding: 55px 30px;
    }

    .gallery-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .section {
        padding: 65px 0;
    }

    .hero {
        min-height: 560px;

        background-position: 65% center;
    }

    .hero-overlay {
        background:
            rgba(0,0,0,0.72);
    }

    .hero h1 {
        letter-spacing: -2px;
    }

    .hero-description {
        font-size: 17px;
    }

    .hero-actions {
        flex-direction: column;

        align-items: flex-start;
    }

    .section-heading-row {
        align-items: flex-start;

        flex-direction: column;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-inner {
        flex-direction: column;
    }

    .footer-links {
        flex-direction: column;
    }

}

/* =========================================================
   COMMISSIONS PAGE
   ========================================================= */

.page-hero {
    position: relative;

    min-height: 500px;

    display: flex;
    align-items: center;

    background-size: cover;
    background-position: center;

    overflow: hidden;
}

.commission-hero {
    background-image:
        url('/assets/images/commissions/commission-hero.jpg');
}

.page-hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,0.95) 0%,
            rgba(0,0,0,0.78) 45%,
            rgba(0,0,0,0.35) 100%
        );
}

.page-hero-content {
    position: relative;
    z-index: 2;

    max-width: 720px;
}

.page-hero h1 {
    margin: 0 0 24px;

    font-size: clamp(58px, 7vw, 96px);

    line-height: 0.95;

    text-transform: uppercase;

    letter-spacing: -4px;
}

.page-hero h1 span {
    display: block;

    color: var(--accent-light);
}

.page-hero p {
    max-width: 620px;

    margin-bottom: 28px;

    color: #d0d0d0;

    font-size: 19px;
}


/* COMMISSION TYPES */

.commission-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 28px;
}

.commission-card {
    position: relative;

    padding: 38px 30px;

    background: var(--background-card);

    border: 1px solid var(--border);

    overflow: hidden;

    transition: 0.25s ease;
}

.commission-card:hover {
    transform: translateY(-5px);

    border-color:
        rgba(163,76,255,0.45);
}

.commission-number {
    margin-bottom: 30px;

    color: var(--accent-light);

    font-size: 14px;
    font-weight: 800;

    letter-spacing: 2px;
}

.commission-card h3 {
    margin: 0 0 18px;

    font-size: 25px;

    text-transform: uppercase;
}

.commission-card p {
    margin: 0;

    color: var(--text-muted);
}


/* PROCESS */

.commission-process {
    background: var(--background-soft);

    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.process-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 1px;

    background: var(--border);

    border: 1px solid var(--border);
}

.process-step {
    padding: 35px 28px;

    background: #0c0c0c;
}

.process-number {
    display: inline-block;

    margin-bottom: 30px;

    color: var(--accent-light);

    font-size: 34px;
    font-weight: 900;
}

.process-step h3 {
    margin: 0 0 14px;

    text-transform: uppercase;

    font-size: 20px;
}

.process-step p {
    margin: 0;

    color: var(--text-muted);
}


/* IDEA SECTION */

.idea-section {
    border-bottom: 1px solid var(--border);
}

.idea-grid {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    align-items: stretch;
}

.idea-copy {
    padding: 90px 60px 90px 0;

    align-self: center;
}

.idea-copy h2 {
    margin-top: 0;

    font-size: clamp(42px, 5vw, 68px);

    line-height: 1;

    text-transform: uppercase;

    letter-spacing: -2px;
}

.idea-copy p {
    max-width: 600px;

    color: var(--text-muted);
}

.idea-example {
    margin: 30px 0;

    padding: 22px 25px;

    border-left: 3px solid var(--accent);

    background:
        rgba(129,41,230,0.08);

    color: #ddd !important;

    font-style: italic;
}

.idea-image {
    min-height: 560px;
}

.idea-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}


/* EXAMPLE GALLERY */

.commission-gallery {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 18px;
}

.commission-gallery img {
    width: 100%;

    aspect-ratio: 4 / 3;

    object-fit: cover;

    border: 1px solid var(--border);
}


/* RESPONSIVE */

@media (max-width: 900px) {

    .commission-grid {
        grid-template-columns: 1fr;
    }

    .process-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .idea-grid {
        grid-template-columns: 1fr;
    }

    .idea-copy {
        padding: 65px 0;
    }

    .idea-image {
        min-height: 420px;
    }

    .commission-gallery {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 600px) {

    .page-hero {
        min-height: 470px;
    }

    .page-hero h1 {
        letter-spacing: -2px;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .idea-copy h2 {
        letter-spacing: -1px;
    }
	.site-logo {
    height: 64px;
    max-width: 200px;
	}

}

/* ==========================================================
   ABOUT PAGE
========================================================== */

.about-page {
    background: #080808;
    color: #f5f5f5;
}

.about-container {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}


/* ---------- Shared typography ---------- */

.about-eyebrow {
    margin: 0 0 14px;
    color: #e83e8c;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.about-page h1,
.about-page h2,
.about-page h3 {
    margin-top: 0;
    line-height: 1.05;
}

.about-page h1 span,
.about-page h2 span {
    color: #e83e8c;
}

.about-page p {
    line-height: 1.75;
}

.about-accent-line {
    width: 72px;
    height: 4px;
    margin-top: 28px;
    background: linear-gradient(
        90deg,
        #e83e8c,
        #38b9d1
    );
}


/* ==========================================================
   HERO
========================================================== */

.about-hero {
    position: relative;
    overflow: hidden;
    padding: 90px 0;
    background:
        radial-gradient(
            circle at 80% 30%,
            rgba(56, 185, 209, 0.11),
            transparent 32%
        ),
        radial-gradient(
            circle at 20% 30%,
            rgba(232, 62, 140, 0.12),
            transparent 34%
        ),
        #080808;
}

.about-hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(232, 62, 140, 0.55),
        rgba(56, 185, 209, 0.45),
        transparent
    );
}

.about-hero-grid {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 70px;
    align-items: center;
}

.about-hero h1 {
    max-width: 700px;
    margin-bottom: 24px;
    font-size: clamp(3rem, 6vw, 5.7rem);
    letter-spacing: -0.045em;
}

.about-intro {
    max-width: 650px;
    margin: 0;
    color: #bdbdbd;
    font-size: 1.12rem;
}

.about-hero-image {
    position: relative;
}

.about-hero-image::before {
    content: "";
    position: absolute;
    top: -18px;
    right: -18px;
    width: 65%;
    height: 65%;
    border-top: 3px solid #e83e8c;
    border-right: 3px solid #38b9d1;
    z-index: 0;
}

.about-hero-image img {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 4px;
}


/* ==========================================================
   STORY
========================================================== */

.about-story {
    padding: 110px 0;
    background: #101010;
}

.about-story-grid {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: 90px;
}

.about-story-heading {
    position: sticky;
    top: 110px;
    align-self: start;
}

.about-story-heading h2 {
    margin-bottom: 0;
    font-size: clamp(2.5rem, 4vw, 4.2rem);
}

.about-story-copy {
    color: #c7c7c7;
    font-size: 1.03rem;
}

.about-story-copy > p:first-child {
    margin-top: 0;
}

.about-quote {
    position: relative;
    margin: 42px 0;
    padding: 28px 34px;
    border-left: 4px solid #e83e8c;
    background: #171717;
}

.about-quote p {
    margin: 0;
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.55;
}


/* ==========================================================
   GRAFFITI / AIRBRUSH ERA
========================================================== */

.about-era {
    padding: 105px 0;
}

.about-era-dark {
    background:
        linear-gradient(
            135deg,
            rgba(232, 62, 140, 0.07),
            transparent 42%
        ),
        #080808;
}

.about-era-header {
    max-width: 800px;
}

.about-era-header h2 {
    margin-bottom: 28px;
    font-size: clamp(2.7rem, 5vw, 5rem);
}

.about-era-content {
    max-width: 820px;
    color: #bdbdbd;
    font-size: 1.06rem;
}

.about-years {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-top: 55px;
    padding-top: 38px;
    border-top: 1px solid #2c2c2c;
}

.about-years-number {
    color: #38b9d1;
    font-size: clamp(4rem, 8vw, 7.5rem);
    font-weight: 900;
    line-height: 0.85;
}

.about-years-copy {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.about-years-copy strong {
    color: #fff;
    font-size: 1.15rem;
}

.about-years-copy span {
    color: #888;
}


/* ==========================================================
   ART + TECHNOLOGY
========================================================== */

.about-tech {
    padding: 110px 0;
    background: #111;
}

.about-tech-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 85px;
    align-items: center;
}

.about-tech-copy h2 {
    font-size: clamp(2.7rem, 5vw, 4.8rem);
}

.about-tech-copy p {
    color: #bebebe;
}

.about-emphasis {
    color: #fff !important;
    font-size: 1.15rem;
    font-weight: 700;
}

.about-path-card {
    padding: 42px;
    border: 1px solid #303030;
    background:
        linear-gradient(
            145deg,
            rgba(232, 62, 140, 0.08),
            rgba(56, 185, 209, 0.04)
        ),
        #0b0b0b;
}

.about-path-card span {
    display: block;
    color: #fff;
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: 0.05em;
}

.about-path-card span:last-child {
    color: #e83e8c;
}

.about-path-card i {
    display: block;
    margin: 10px 0;
    color: #38b9d1;
    font-size: 1.5rem;
    font-style: normal;
}


/* ==========================================================
   BECOMING VICIOUZ
========================================================== */

.about-viciouz {
    padding: 110px 0;
    background: #080808;
}

.about-viciouz-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 85px;
    align-items: center;
}

.about-viciouz-image img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.about-viciouz-copy h2 {
    font-size: clamp(2.8rem, 5vw, 5rem);
}

.about-viciouz-copy p {
    color: #bdbdbd;
}


/* ==========================================================
   TODAY
========================================================== */

.about-today {
    padding: 110px 0;
    background: #111;
}

.about-today-header {
    max-width: 780px;
    margin-bottom: 55px;
}

.about-today-header h2 {
    margin-bottom: 20px;
    font-size: clamp(2.6rem, 5vw, 4.6rem);
}

.about-today-header > p:last-child {
    color: #aaa;
    font-size: 1.08rem;
}

.about-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.about-service {
    min-height: 250px;
    padding: 30px;
    border: 1px solid #292929;
    background: #0b0b0b;
    transition:
        transform 0.2s ease,
        border-color 0.2s ease;
}

.about-service:hover {
    transform: translateY(-5px);
    border-color: #e83e8c;
}

.about-service-number {
    display: block;
    margin-bottom: 48px;
    color: #38b9d1;
    font-size: 0.8rem;
    font-weight: 800;
}

.about-service h3 {
    margin-bottom: 15px;
    font-size: 1.25rem;
}

.about-service p {
    margin-bottom: 0;
    color: #949494;
    font-size: 0.94rem;
}


/* ==========================================================
   CLOSING
========================================================== */

.about-closing {
    padding: 125px 0;
    text-align: center;
    background:
        radial-gradient(
            circle at center,
            rgba(232, 62, 140, 0.12),
            transparent 45%
        ),
        #080808;
}

.about-closing-inner {
    max-width: 900px;
    margin: 0 auto;
}

.about-closing p {
    max-width: 750px;
    margin: 0 auto 16px;
    color: #aaa;
}

.about-closing h2 {
    margin: 42px auto;
    font-size: clamp(2.7rem, 5vw, 5rem);
}

.about-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-height: 52px;
    padding: 0 28px;
    background: #e83e8c;
    color: #fff;
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
    transition:
        transform 0.2s ease,
        background 0.2s ease;
}

.about-button:hover {
    transform: translateY(-2px);
    background: #c92f75;
}


/* ==========================================================
   RESPONSIVE
========================================================== */

@media (max-width: 950px) {

    .about-hero-grid,
    .about-story-grid,
    .about-tech-grid,
    .about-viciouz-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .about-story-heading {
        position: static;
    }

    .about-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-hero-image {
        max-width: 720px;
    }

    .about-viciouz-image {
        max-width: 650px;
    }

}


@media (max-width: 600px) {

    .about-container {
        width: min(100% - 30px, 1180px);
    }

    .about-hero,
    .about-story,
    .about-era,
    .about-tech,
    .about-viciouz,
    .about-today,
    .about-closing {
        padding-top: 75px;
        padding-bottom: 75px;
    }

    .about-hero h1 {
        font-size: clamp(2.8rem, 14vw, 4rem);
    }

    .about-years {
        align-items: flex-start;
        flex-direction: column;
    }

    .about-services-grid {
        grid-template-columns: 1fr;
    }

    .about-service {
        min-height: 0;
    }

    .about-service-number {
        margin-bottom: 25px;
    }

    .about-quote {
        padding: 24px;
    }

    .about-path-card {
        padding: 30px;
    }

}

/* =========================================
   GALLERY
========================================= */

.gallery-page {
    min-height: 100vh;
}

.gallery-hero {
    padding: 80px 20px 50px;
    text-align: center;
}

.gallery-hero h1 {
    margin-bottom: 15px;
    font-size: clamp(2.5rem, 6vw, 4rem);
}

.gallery-hero p {
    max-width: 700px;
    margin: 0 auto;
}

.gallery-section {
    padding: 40px 20px 80px;
}

.gallery-category-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.gallery-category-card {
    display: block;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    border-radius: 12px;
    transition: transform 0.25s ease;
}

.gallery-category-card:hover {
    transform: translateY(-5px);
}

.gallery-category-card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    display: block;
}

.gallery-category-content {
    padding: 20px;
}

.gallery-category-content h2 {
    margin: 0 0 10px;
}

.gallery-category-content p {
    margin: 0;
}

.gallery-category-header {
    margin-bottom: 40px;
    text-align: center;
}

.gallery-back-link {
    display: inline-block;
    margin-bottom: 20px;
    text-decoration: none;
}

.gallery-items-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.gallery-placeholder {
    grid-column: 1 / -1;
    text-align: center;
    padding: 50px 20px;
}

@media (max-width: 768px) {

    .gallery-category-grid,
    .gallery-items-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   GALLERY PAGINATION
========================================= */

.gallery-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;

    width: 100%;
    margin: 50px auto 10px;
    text-align: center;
}

.gallery-page-numbers {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.gallery-page-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 44px;
    height: 44px;
    padding: 0 15px;

    border: 2px solid #e6007e;
    border-radius: 8px;

    background: transparent;
    color: #ffffff;

    font-weight: 700;
    text-decoration: none;

    cursor: pointer;

    transition:
        background-color 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.gallery-page-button:hover {
    background: #e6007e;
    color: #ffffff;
    transform: translateY(-2px);
}

.gallery-page-number.active {
    background: #e6007e;
    color: #ffffff;
    pointer-events: none;
}

.gallery-page-nav {
    min-width: 140px;
    padding-left: 20px;
    padding-right: 20px;
    background: #e6007e;
    color: #ffffff;
}

.gallery-page-nav:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 18px rgba(230, 0, 126, 0.25);
}

@media (max-width: 600px) {

    .gallery-pagination {
        gap: 10px;
        margin-top: 40px;
    }

    .gallery-page-nav {
        min-width: 125px;
    }

    .gallery-page-button {
        height: 42px;
    }
}

/* =========================================
   EVENTS
========================================= */

.events-page {
    padding-top: 70px;
    padding-bottom: 90px;
}

.events-section {
    margin-top: 60px;
}

.events-section-heading {
    margin-bottom: 30px;
}

.events-section-heading h2 {
    margin-top: 5px;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.event-card {
    overflow: hidden;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.event-image {
    overflow: hidden;
}

.event-image img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    display: block;
}

.event-content {
    padding: 24px;
}

.event-content h3 {
    margin: 5px 0 10px;
}

.event-content p {
    margin-top: 0;
}

.event-date {
    font-weight: 700;
    margin-bottom: 4px;
}

.event-location {
    opacity: 0.75;
    margin-bottom: 16px;
}

.events-empty {
    padding: 45px 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
}

.events-empty h3 {
    margin-top: 0;
}

.past-events {
    margin-top: 80px;
}

@media (max-width: 768px) {

    .events-grid {
        grid-template-columns: 1fr;
    }

}