/* =========================================================
   1. RESET & GLOBAL VARIABLES
   ========================================================= */

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

:root {
    --bg: #050509;
    --bg-elevated: #101018;
    --bg-glass: rgba(255,255,255,0.04);
    --bg-glass-strong: rgba(255,255,255,0.12);

    --accent: #6c7bff;
    --accent-soft: rgba(108,123,255,0.15);
    --accent-strong: #8b96ff;

    --text: #f4f4f6;
    --text-muted: #b4b4c0;
    --border-subtle: rgba(255,255,255,0.12);

    --radius-sm: 8px;
    --radius: 12px;
    --radius-lg: 18px;

    --shadow-soft: 0 18px 45px rgba(0,0,0,0.6);

    --content-width: 1100px;
    --nav-height: 64px;
}

html, body {
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", sans-serif;
    background: radial-gradient(circle at top, #161628 0, #050509 50%, #010104 100%);
    color: var(--text);
    line-height: 1.6;
}

/* We’ll treat layout as header + main + footer */
body {
    display: flex;
    flex-direction: column;
    z-index:0;
}

/* Generic helpers */
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.hidden { display: none !important; }

/* =========================================================
   2. TYPOGRAPHY & BASE ELEMENTS
   ========================================================= */

h1, h2, h3, h4 {
    font-weight: 600;
    color: var(--text);
}

h1 {
    font-size: 2.3rem;
    letter-spacing: 0.04em;
}

h2 {
    font-size: 1.7rem;
    margin-bottom: 0.35rem;
}

h3 {
    font-size: 1.3rem;
    margin-bottom: 0.25rem;
}

p {
    color: var(--text-muted);
    font-size: 1rem;
}

hr {
    border: none;
    border-bottom: 1px solid var(--border-subtle);
    margin: 1rem 0;
}

/* Links with underline-on-hover for content areas */
.link {
    position: relative;
    color: var(--accent-strong);
    cursor: pointer;
}
.link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 0;
    height: 1px;
    background: var(--accent-strong);
    transition: width 0.2s ease;
}
.link:hover::after {
    width: 100%;
}

/* =========================================================
   3. GLOBAL LAYOUT: CONTAINERS & PAGES
   ========================================================= */

/* Header + footer pinned, main scrolls */
main {
    flex: 1;
}

/* A generic centered width container */
.container {
    width: 100%;
    max-width: 1080px;   /* bigger, modern */
    margin: 0 auto;
    padding: 0 2rem;
}

/* Base page wrapper each content page should use */
.page {
    padding: 4.5rem 0 4rem;
    z-index: 5;
}

.page-header {
    margin-bottom: 1.75rem;
}

.page-title {
    font-size: 2.3rem;
    margin-bottom: 0.3rem;
}

.page-subtitle {
    color: var(--text-muted);
    font-size: 0.98rem;
}

.page-body {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Generic glass panel */
.glass {
    background: var(--bg-glass);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: var(--shadow-soft);
    padding: 1.5rem;
}

/* =========================================================
   4. CARDS, BUTTONS, GRID UTILITIES
   ========================================================= */

.card {
    background: linear-gradient(135deg,
        rgba(255,255,255,0.06),
        rgba(255,255,255,0.02));
    border-radius: var(--radius);
    border: 1px solid var(--border-subtle);
    padding: 1.25rem 1.4rem;
    transition: transform 0.18s ease, box-shadow 0.18s ease,
                background 0.18s ease, border-color 0.18s ease;
}

.card:hover {
    transform: translateY(-2px);
    border-color: var(--accent-soft);
    background: linear-gradient(135deg,
        rgba(108,123,255,0.18),
        rgba(255,255,255,0.03));
    box-shadow: 0 18px 40px rgba(0,0,0,0.72);
}

.card-title {
    font-size: 1.25rem;
    margin-bottom: 0.4rem;
}

.card-meta {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.5rem 1.1rem;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.04);
    color: var(--text);
    font-size: 0.95rem;
    cursor: pointer;
    transition: background 0.18s ease, transform 0.15s ease,
                border-color 0.18s ease;
}

.btn:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-1px);
}

.btn-primary {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}
.btn-primary:hover {
    background: var(--accent-strong);
}

.btn-ghost {
    background: transparent;
    border-color: rgba(255,255,255,0.16);
}

/* Grid utilities */
.grid {
    display: grid;
    gap: 1.5rem;
}
.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

/* Simple flex row utility */
.flex-row {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* =========================================================
   5. NAVIGATION (HEADER + HYBRID NAV)
   ========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: linear-gradient(to bottom,
        rgba(5,5,12,0.95),
        rgba(5,5,12,0.8),
        transparent);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    height: var(--nav-height);
    display: flex;
    align-items: center;
}

.nav-inner {
    width: 100%;
    max-width: var(--content-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Branding / logo */
.nav-brand {
    display: flex;
    align-items: baseline;
    gap: 0.3rem;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}
.nav-brand span.secondary {
    font-weight: 400;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Main nav links */
.nav-main {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-link {
    font-size: 0.95rem;
    color: var(--text-muted);
    position: relative;
    padding: 0.2rem 0;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 2px;
    background: var(--accent-strong);
    border-radius: 999px;
    transition: width 0.18s ease;
}
.nav-link:hover {
    color: var(--text);
}
.nav-link:hover::after {
    width: 100%;
}
.nav-link.active {
    color: var(--accent-strong);
}
.nav-link.active::after {
    width: 100%;
}

/* Burger toggle (mobile) */
.nav-toggle {
    display: none;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.03);
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.nav-toggle-bar {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: #fff;
    position: relative;
}
.nav-toggle-bar::before,
.nav-toggle-bar::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: #fff;
}
.nav-toggle-bar::before { top: -6px; }
.nav-toggle-bar::after { top: 6px; }

/* Mobile menu */
/* FULL-SCREEN MOBILE NAV OVERLAY */
.nav-mobile {
    display: none;
    position: fixed;
    top: 0;                  /* cover the whole viewport */
    left: 0;
    right: 0;
    bottom: 0;

    background: rgba(5,5,12,0.96);  /* dark + slightly transparent */
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);

    padding-top: var(--nav-height); /* push links below header */
    z-index: 9999;                  /* above everything */
    overflow-y: auto;               /* scroll if needed */
}

.nav-mobile.open {
    display: block;
}

/* Centered vertical link layout */
.nav-mobile-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start; /* could be center if you prefer */
    gap: 1.25rem;
    margin-top: 2rem;
}

.nav-mobile-links .nav-link {
    font-size: 1.3rem;
    color: var(--text);
    opacity: 0.85;
}

.nav-mobile-links .nav-link.active {
    color: var(--accent-strong);
    opacity: 1;
}

/* =========================================================
   SLIM FOOTER
   ========================================================= */

.site-footer {
    margin-top: 3rem;
    padding: 1.5rem 0 0.75rem;
    background: rgba(0,0,0,0.25);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    row-gap: 0.75rem;
}

.footer-title {
    font-size: 1.15rem;
    margin-bottom: 0.1rem;
}

.footer-tagline {
    font-size: 0.85rem;
    opacity: 0.65;
}

.footer-socials a {
    margin-left: 1rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.footer-socials a:first-child {
    margin-left: 0;
}

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

.footer-bottom {
    text-align: center;
    margin-top: 0.75rem;
    opacity: 0.5;
    font-size: 0.8rem;
}

/* =========================================================
   LANDING PAGE
   ========================================================= */

.landing-page {
    position: relative;
    height: 100vh;         /* force exact viewport height */
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;      /* prevent accidental scrollbars */
    padding: 0;
}

.landing-hero {
    text-align: center;
}

.landing-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.landing-subtitle {
    font-size: 1.2rem;
    opacity: 0.75;
    margin-bottom: 2rem;
}

.landing-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.landing-hero.container {
    margin: 0 !important;
    padding: 0 !important;
}


/* =========================================================
   LANDING PAGE — AMBIENT VISUALIZER
   ========================================================= */

#ambient-visualizer {
    position: fixed;     /* was absolute */
    bottom: 80px;        /* sits just above footer */
    left: 0;
    width: 100%;
    height: 140px;
    pointer-events: none;
    opacity: 0.55;
    z-index: 5;          /* above background, below content */
}



/* =========================================================
   7. PAGE-SPECIFIC STYLES
   ========================================================= */
/* We'll use body classes like:
   <body class="page-home">, "page-audio", etc.
*/

/* -------------------------
   7A. HOME (index.php)
   ------------------------- */

body.page-home main {
    padding-top: 1rem;
}

.home-hero {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(0, 2.5fr);
    gap: 2.5rem;
    align-items: center;
}

.home-hero-heading {
    font-size: 2.6rem;
    margin-bottom: 0.6rem;
}

.home-hero-sub {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.home-hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.2rem;
}

.badge {
    padding: 0.25rem 0.65rem;
    border-radius: 999px;
    font-size: 0.8rem;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.04);
}

.home-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.home-hero-card {
    padding: 1.25rem;
    border-radius: var(--radius-lg);
    background: radial-gradient(circle at top left,
        rgba(108,123,255,0.18),
        rgba(255,255,255,0.03));
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-soft);
}

/* -------------------------
   7B. AUDIO (audio.php)
   ------------------------- */

body.page-audio {
    /* override if you want a unique BG image later */
}

/* Layout: visualizer + playlist + testimonials */
.audio-layout {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(0, 2.5fr);
    gap: 2rem;
}

/* Visualizer */
.visualizer-wrapper {
    width: 100%;
    height: 320px;
    overflow: hidden;
    position: relative;
    border-radius: var(--radius-lg);
    margin-bottom: 1.3rem;
    border: 1px solid var(--border-subtle);
    background: radial-gradient(circle at bottom,
        rgba(108,123,255,0.18),
        rgba(0,0,0,0.9));
}

#canvas_alt {
    position: absolute;
    inset: 0;
    width: 100% !important;
    height: 100% !important;
}

/* Audio controls */
.audio-controls {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.8rem;
}

.audio-time {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-variant-numeric: tabular-nums;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Sliders */
input[type="range"] {
    width: 100px;
    -webkit-appearance: none;
    background: transparent;
}
input[type="range"]::-webkit-slider-runnable-track {
    height: 4px;
    border-radius: 999px;
    background: rgba(255,255,255,0.2);
}
input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    margin-top: -5px;
    background: var(--accent);
    box-shadow: 0 0 0 4px rgba(108,123,255,0.28);
}
input[type="range"]::-moz-range-track {
    height: 4px;
    border-radius: 999px;
    background: rgba(255,255,255,0.2);
}
input[type="range"]::-moz-range-thumb {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--accent);
}

/* Playlist */
#playlist {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.listrow {
    padding: 0.6rem 0.75rem;
    border-radius: var(--radius-sm);
    background: rgba(255,255,255,0.03);
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--text-muted);
    transition: background 0.15s ease, color 0.15s ease,
                transform 0.12s ease;
}
.listrow:hover {
    background: rgba(255,255,255,0.09);
    color: var(--text);
    transform: translateY(-1px);
}
.listrow.now {
    background: var(--accent);
    color: #fff;
}

/* TESTIMONIAL SLIDER */
.testimonials {
    position: relative;
    overflow: hidden;
    padding-bottom: 2.5rem;
}

.testimonial-slide {
    display: none;
    animation: fadeIn 0.6s ease;
}

.testimonial-slide.active {
    display: block;
}

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

.testimonial-controls {
    display: flex;
    justify-content: center;
    gap: .75rem;
    margin-top: 1rem;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: .5rem;
    margin-top: 1rem;
}

.testimonial-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: background 0.2s ease;
}

.testimonial-dots .dot.active {
    background: var(--accent);
}


/* FULL-WIDTH BOTTOM VISUALIZER OVERLAY */
.visualizer-overlay {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;

    height: 220px;            /* adjust to taste */
    pointer-events: none;     /* click-through */
    z-index: 1;              

    overflow: hidden;
}

.visualizer-overlay canvas {
    width: 100% !important;
    height: 100% !important;
    display: block;
}



/* -------------------------
   7C. GEAR (gear.php)
   ------------------------- */

.gear-fullwidth {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    width: 100%;
    padding: 0 1rem;
}

/* Cards */
.gear-card {
    break-inside: avoid;
    display: block;
}


/* -------------------------
   7D. ABOUT (about.php)
   ------------------------- */

body.page-about {
}

.about-layout {
    display: grid;
    grid-template-columns: minmax(0, 2.1fr) minmax(0, 1.4fr);
    gap: 2rem;
    align-items: flex-start;
}

.bio-photo {
    width: 190px;
    height: 190px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255,255,255,0.6);
    box-shadow: var(--shadow-soft);
    margin-bottom: 1rem;
}

.about-text {
    font-size: 1rem;
    color: var(--text-muted);
}


/* =========================================================
   ABOUT PAGE — LEFT SIDEBAR TIMELINE LAYOUT
   ========================================================= */

.about-wrapper {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2rem;
}

/* Timeline column */
.timeline-sidebar {
    position: relative;
    padding-left: 1.75rem;
}

/* Vertical timeline line */
.timeline-sidebar::before {
    content: "";
    position: absolute;
    left: 0.55rem;
    top: 0;
    bottom: 0;
    width: 3px;
    background: rgba(255,255,255,0.15);
    border-radius: 3px;
}

/* Items */
.sidebar-timeline-item {
    position: relative;
    margin-bottom: 2rem;
}

/* The circle marker */
.sidebar-timeline-item .marker {
    position: absolute;
    left: -1.105rem;
    top: 0.3rem;
    width: 14px;
    height: 14px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(108,123,255,0.5);
}

/* Title, date, desc */
.sidebar-timeline-title {
    font-size: 1rem;
    font-weight: 600;
}

.sidebar-timeline-date {
    font-size: 0.8rem;
    opacity: 0.6;
    margin-bottom: 0.25rem;
}

.sidebar-timeline-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.sidebar-timeline-org {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 0.25rem;
    font-weight: 500;
}


/* MOBILE — timeline drops above content */
@media (max-width: 900px) {
    .about-wrapper {
        grid-template-columns: 1fr;
    }

    .timeline-sidebar {
        padding-left: 1.25rem;
        margin-bottom: 2rem;
    }
}



/* -------------------------
   7E. PROGRAMMING (programming.php)
   ------------------------- */

body.page-programming {
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.project-card {
    background: rgba(10,10,20,0.9);
    border-radius: var(--radius);
    border: 1px solid var(--border-subtle);
    padding: 1.25rem 1.3rem;
    box-shadow: var(--shadow-soft);
    transition: 0.16s ease;
}
.project-card:hover {
    border-color: var(--accent-soft);
    background: radial-gradient(circle at top,
        rgba(108,123,255,0.18),
        rgba(10,10,20,0.95));
    transform: translateY(-3px);
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-top: 0.6rem;
}
.project-tag {
    padding: 0.12rem 0.5rem;
    border-radius: 999px;
    font-size: 0.75rem;
    border: 1px solid rgba(255,255,255,0.2);
}

/* Project Card Image */
.project-preview {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    margin-bottom: 0.8rem;
    background: rgba(0,0,0,0.3);
}

/* GitHub language tag */
.project-lang {
    display: inline-block;
    padding: 0.25rem 0.6rem;
    font-size: 0.75rem;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
}

/* GitHub CTA footer inside card */
.project-link {
    margin-top: 0.75rem;
    font-size: 0.85rem;
    opacity: 0.75;
    transition: opacity 0.15s ease;
}

.project-card:hover .project-link {
    opacity: 1;
}

.skeleton {
    background: linear-gradient(90deg, #2a2a2a 25%, #3a3a3a 37%, #2a2a2a 63%);
    background-size: 400% 100%;
    animation: skeleton-loading 1.4s ease infinite;
}

@keyframes skeleton-loading {
    0% { background-position: 100% 0; }
    100% { background-position: -100% 0; }
}

.project-card .project-preview.loading {
    height: 180px;
    width: 100%;
    border-radius: 8px;
}


/* -------------------------
   7F. PROJECTS (projects.php)
   ------------------------- */

body.page-projects {
}

.projects-section {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

/* -------------------------
   7G. CONTACT (contact.php)
   ------------------------- */

/* =========================================================
   CONTACT FORM
   ========================================================= */

.contact-form .form-group {
    margin-bottom: 1.25rem;
    text-align: left;
}

.contact-form label {
    font-size: 0.9rem;
    opacity: 0.75;
    margin-bottom: 0.35rem;
    display: block;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(0,0,0,0.35);
    color: var(--text);
    font-size: 1rem;
    outline: none;
    transition: border 0.15s, background 0.15s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--accent);
    background: rgba(255,255,255,0.09);
}

.contact-form button {
    display: block;
    font-size: 1rem;
}

/* -------------------------
   7H. THANK YOU (thankyou.php)
   ------------------------- */

body.page-thankyou {
}

.thankyou-wrapper {
    min-height: calc(100vh - var(--nav-height) - 120px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.thankyou-card {
    max-width: 480px;
    text-align: center;
}

/* =========================================================
   8. RESPONSIVE BEHAVIOR
   ========================================================= */

@media (max-width: 980px) {
    .home-hero,
    .audio-layout,
    .gear-grid,
    .about-layout,
    .contact-layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .home-hero {
        gap: 1.6rem;
    }
}

@media (max-width: 780px) {
    .nav-main {
        display: none;
    }
    .nav-toggle {
        display: inline-flex;
    }
    .nav-mobile {
        /* opened state is handled by .open class */
    }

    .page {
        padding-top: 3.3rem;
    }
}

@media (max-width: 600px) {
    .container {
        padding: 0 1rem;
    }
    .page {
        padding-top: 3rem;
    }
    .page-title {
        font-size: 1.9rem;
    }
}

/* =========================================================
   9. DEBUG UTILITIES 
   ========================================================= */

.debug * {
    outline: 1px solid rgba(255,0,0,0.25);
}

/* =========================================================
   PAGE BACKGROUNDS 
   ========================================================= */

/* Shared background rules for all pages */
.page,
.landing-page {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed; /* subtle parallax */
}

/* LANDING / INDEX */
.landing-page {
    background-image:
        linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)),
        url("../images/FinleyAudio_home.webp");
}

/* ABOUT */
.page-about {
    background-image:
        linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)),
        url("../images/FinleyAudio_Glam02.webp");
}

/* CONTACT */
.page-contact {
    background-image:
        linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)),
        url("../images/FinleyAudio_Glam10.webp");
}

/* AUDIO */
.page-audio {
    background-image:
        linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)),
        url("../images/FinleyAudio_Glam01.webp");
}

/* GEAR */
.page-gear {
    background-image:
        linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)),
        url("../images/FinleyAudio_Glam11.webp");
}

/* PROGRAMMING */
.page-programming {
    background-image:
        linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)),
        url("../images/FinleyAudio_Glam03.webp");
}
.page::before,
.landing-page::before {
    content: "";
    position: fixed;
    inset: 0;
    background: radial-gradient(circle, rgba(0,0,0,0) 40%, rgba(0,0,0,0.6) 100%);
    pointer-events: none;
    z-index: -1;
}

