/* The container acts as the 'frame' */
.image-box {
    width: 300px;         /* Set whatever width you want */
    height: 200px;        /* Set whatever height you want */    /* Trims the image edges when it expands */
    border-radius: 8px;   /* Optional: rounds the corners of the frame */
}

/* Base image styling */
.image-box img {
    transition: transform 0.3s ease; /* Makes the zoom smooth instead of instant */
}

/* What happens on hover */
.image-box:hover img {
    transform: scale(1.1); /* Zooms the image in by 10% */
}

body {
    background-color: #121214; /* Uses a sleek, dark charcoal hex code */
    color: #f9f9fb;            /* Changes text to off-white so it's readable */
}

/* 1. The Container: Centering everything perfectly */
.image-box {
    display: flex;
    justify-content: center;  /* Centers horizontally */
    align-items: center;      /* Centers vertically */
    width: 100%;              /* Takes up full width to find the true middle */
    overflow: hidden;         /* Keeps the zoom effect contained */
    padding: 20px;            /* Optional: adds some breathing room around it */
}

/* 2. The Base Image Style */
.centered-image {
    display: block;
    transition: transform 0.3s ease; /* Makes the zoom perfectly smooth */
}

/* 3. The Hover Effect: Targeted correctly */
.image-box:hover .centered-image {
    transform: scale(1.1); /* Zooms in by 10% without moving from the center */
}

/* 4. Clean up the link container */
.image-link {
    display: inline-block;
    text-decoration: none;
}


/* 1. Main Header Container: Stacks the logo row on top of the menu row */
.site-header {
    display: flex;
    flex-direction: column; /* Forces vertical stacking (Logo top, Menu bottom) */
    align-items: center;    /* Centers both rows horizontally on the screen */
    width: 100%;
    padding: 20px 0;        /* Adds space above the logo and below the menu */
}

/* 2. Logo Row Styling */
.logo-container {
    margin-bottom: 15px;    /* Adds a clean gap between the logo and the menu bar */
}

/* 3. The Menu Bar: Turns the vertical list into a horizontal line */
.menu-list {
    display: flex;          /* Places the list items side-by-side */
    justify-content: center;/* Keeps them centered under the logo */
    list-style: none;       /* Removes default bullet points */
    padding: 0;
    margin: 0;
    gap: 40px;              /* Perfect, even spacing between your menu items */
}

/* 4. Menu Links Styling: Making them look professional */
.menu-link {
    text-decoration: none;  /* Removes the default underline */
    color: #f9f9fb;         /* Soft white (adjust based on your background) */
    font-family: sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 1px;    /* Slight tracking for a clean look */
    transition: color 0.3s ease;
}

/* Optional: Subtle color shift when you hover over a link */
.menu-link:hover {
    color: #e94560;         /* Changes color smoothly on hover */
}

/* The Main Info Card Container */
.info-box {
    max-width: 650px;         /* Prevents text lines from getting too wide to read comfortably */
    margin: 40px auto;        /* Centers the entire box horizontally on the page */
    background-color: #1e1e24;/* Slightly lighter than your main background to create depth */
    border: 1px solid #2d2d34;/* Soft subtle border so the box doesn't look harsh */
    border-radius: 12px;      /* Smooth, modern rounded corners */
    padding: 40px;            /* Generous internal spacing so the text has room to breathe */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25); /* Soft shadow underneath for a 3D effect */
}

/* Typography Styling */
.info-box h2 {
    color: #ffffff;
    font-family: sans-serif;
    font-size: 2rem;
    margin-top: 0;            /* Removes default top margin to align with padding */
    margin-bottom: 15px;
}

.bio-intro {
    font-family: sans-serif;
    font-size: 1.2rem;
    line-height: 1.6;
    color: #e4e4e7;           /* Crisp, highly readable off-white text */
    font-weight: 500;
}

/* Subtle Divider Line */
.box-divider {
    border: 0;
    height: 1px;
    background-color: #2d2d34;
    margin: 25px 0;
}

/* Quick Facts List Styling */
.facts-list {
    list-style: none;         /* Removes default ugly bullets */
    padding: 0;
    margin: 0 0 25px 0;
    font-family: sans-serif;
    font-size: 1rem;
    color: #a1a1aa;           /* Slightly muted gray for secondary text */
}

.facts-list li {
    margin-bottom: 10px;      /* Spacing between each fact row */
}

.facts-list strong {
    color: #ffffff;           /* Makes the titles (like "Location:") pop out */
}

.bio-text {
    font-family: sans-serif;
    font-size: 1.05rem;
    line-height: 1.7;         /* Increased line height makes long paragraphs way easier to read */
    color: #d4d4d8;
    margin-bottom: 0;         /* Flushes paragraph to the bottom padding */
}


/* 1. Full screen overlay that covers the entire website */
.age-gate-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(11, 15, 25, 0.95); /* Deep dark background */
    backdrop-filter: blur(8px);               /* Blurs out the portfolio behind it */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;                           /* Ensures it sits on top of everything else */
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

/* 2. The Warning Box itself */
.age-gate-box {
    background-color: #1e1e24;
    border: 1px solid #2d2d34;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    max-width: 450px;
    width: 90%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.age-gate-box h2 {
    color: #ffffff;
    font-family: sans-serif;
    margin-top: 0;
    font-size: 1.8rem;
}

.age-gate-box p {
    color: #a1a1aa;
    font-family: sans-serif;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* 3. Button Layout & Styles */
.age-gate-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.age-gate-buttons button {
    padding: 12px 24px;
    font-family: sans-serif;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.btn-yes {
    background-color: #e94560; /* Vibrant accent color */
    color: #ffffff;
}

.btn-yes:hover {
    background-color: #ff5c77;
}

.btn-no {
    background-color: #2d2d34;
    color: #a1a1aa;
}

.btn-no:hover {
    background-color: #3f3f46;
    color: #ffffff;
}

/* 4. A helper class to smoothly hide the gate via JavaScript */
.age-gate-overlay.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none; /* Allows users to click on elements behind it once hidden */
}


/* 1. THE GRID SYSTEM */
.portfolio-grid {
    display: grid;
    /* Automatically creates columns that are at least 300px wide, 
       and splits the remaining screen space perfectly and evenly */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px; /* The perfect, even spacing between your grid items */
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

/* 2. THE CARD FRAME */
.portfolio-item {
    position: relative; /* Crucial for positioning the text overlay correctly */
    border-radius: 8px;
    overflow: hidden;   /* Keeps the image zoom effect from bleeding out */
    background-color: #1e1e24; /* Fallback background */
    aspect-ratio: 4 / 3;       /* Forces all portfolio cards to be the exact same uniform shape */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Make sure the link fills the whole card */
.portfolio-item a {
    display: block;
    width: 100%;
    height: 100%;
}

/* 3. THE IMAGE */
.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Crops and fills the frame perfectly without distortion */
    transition: transform 0.4s ease; /* Makes the zoom action incredibly buttery */
}

/* 4. THE INTERACTIVE TEXT OVERLAY */
.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 15, 25, 0.85); /* Dark tint overlay on hover */
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0; /* Hidden by default */
    transition: opacity 0.3s ease;
    padding: 20px;
    text-align: center;
}

.project-overlay h3 {
    color: #ffffff;
    font-family: sans-serif;
    font-size: 1.3rem;
    margin: 0;
    transform: translateY(15px); /* Starts slightly lower for a subtle "slide-up" effect */
    transition: transform 0.3s ease;
}

/* 5. THE HOVER TRIGGERS */
/* When the card is hovered, zoom the image slightly */
.portfolio-item:hover img {
    transform: scale(1.08);
}

/* When the card is hovered, fade in the dark overlay */
.portfolio-item:hover .project-overlay {
    opacity: 1;
}

/* When the card is hovered, smoothly lift the text title up */
.portfolio-item:hover .project-overlay h3 {
    transform: translateY(0);
}

/* 1. The Full-Screen Lightbox Backdrop */
.lightbox {
    display: none;             /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(11, 15, 25, 0.95); /* Deep dark background tint */
    backdrop-filter: blur(5px);               /* Blurs out the grid behind it */
    z-index: 100000;                          /* Sits cleanly above everything, even the age gate */
    justify-content: center;
    align-items: center;
    cursor: zoom-out;                         /* Gives a visual cue that clicking closes it */
}

/* 2. The Enlarged Image Inside the Lightbox */
.lightbox-content {
    max-width: 85%;
    max-height: 85%;
    border-radius: 6px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    cursor: default;                          /* Keeps default pointer over the image itself */
    
    /* Smooth pop-in animation */
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

/* Triggered by JS when opened */
.lightbox.active .lightbox-content {
    transform: scale(1);
}

/* 3. The Close Button (X) */
.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #ffffff;
    font-size: 50px;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.2s ease;
}

.lightbox-close:hover {
    color: #e94560; /* Highlight color on hover */
}




/* 1. Section Divider Line */
.section-divider {
    border: 0;
    height: 1px;
    background-color: #2d2d34; /* Soft line matching your info box border */
    max-width: 1200px;
    margin: 60px auto; /* Generous spacing before the new section starts */
}

/* 2. Section Header Styling */
.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 35px auto;
    font-family: sans-serif;
}

.section-header h2 {
    color: #ffffff;
    font-size: 2rem;
    margin-bottom: 10px;
}

.section-header p {
    color: #a1a1aa; /* Secondary muted text color */
    font-size: 1.05rem;
}

/* 3. The Commission Badge (The secret sauce to make it look professional) */
.commission-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #e94560; /* Your sharp accent brand color */
    color: #ffffff;
    font-family: sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* 4. Optional: Give commission cards a subtle accent glow on hover */
.commission-card {
    border: 1px solid #2d2d34;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-item.commission-card:hover {
    border-color: #e94560; /* Card frame highlights to accent color on hover */
    box-shadow: 0 4px 20px rgba(233, 69, 96, 0.15);
}


/* The Main Contact Card Container */
.contact-info-box {
    max-width: 650px;         /* Keeps reading length comfortable */
    margin: 40px auto;        /* Centers the box on your page layout */
    background-color: #1e1e24;/* Matches your main card depth color */
    border: 1px solid #2d2d34;/* Soft, subtle frame border */
    border-radius: 12px;      /* Modern rounded corners */
    padding: 40px;            /* Breathing room for all inner text */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

/* Typography Rules */
.contact-info-box h2 {
    color: #ffffff;
    font-family: sans-serif;
    font-size: 2rem;
    margin-top: 0;
    margin-bottom: 15px;
}

.contact-intro {
    font-family: sans-serif;
    font-size: 1.15rem;
    line-height: 1.6;
    color: #e4e4e7;
}

/* Matching Clean Divider Lines */
.box-divider {
    border: 0;
    height: 1px;
    background-color: #2d2d34;
    margin: 25px 0;
}

/* Contact Methods List Layout */
.contact-methods-list {
    list-style: none;         /* Removes default browser bullet points */
    padding: 0;
    margin: 0;
    font-family: sans-serif;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #d4d4d8;
}

.contact-methods-list li {
    margin-bottom: 12px;      /* Clean gap between individual communication options */
}

.contact-methods-list strong {
    color: #ffffff;           /* Highlights the label headings */
    display: inline-block;
    width: 180px;             /* Perfectly aligns the text descriptions in a neat column row */
}

/* Interactive Direct Email Link */
.contact-inline-link {
    color: #e94560;           /* Uses your vibrant portfolio brand accent color */
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease, text-decoration 0.2s ease;
}

.contact-inline-link:hover {
    color: #ff5c77;           /* Brightens up smoothly on hover */
    text-decoration: underline; /* Standard subtle hover confirmation */
}

.contact-highlight {
    color: #ffffff;
}

.contact-subtext {
    color: #a1a1aa;           /* Slightly muted gray to indicate secondary status info */
    font-style: italic;
}

.contact-footnote {
    font-family: sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #a1a1aa;
    margin-bottom: 0;
}

/* 1. THE TWO-COLUMN FLEX CONTAINER */
.commission-container {
    display: flex;
    flex-direction: row;      /* Forces left and right columns side-by-side */
    gap: 40px;                /* Beautiful even space between the image and text box */
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 20px;
    align-items: flex-start;  /* Prevents columns from stretching unevenly */
}

/* 2. LEFT SIDE: THE IMAGE BOX */
.commission-sheet-box {
    flex: 1;                  /* Takes up exactly half the container width */
    position: relative;
    background-color: #1e1e24;
    border: 1px solid #2d2d34;
    border-radius: 12px;
    overflow: hidden;
    cursor: zoom-in;          /* Changes mouse cursor to a magnifying glass */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.sheet-img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

/* Zoom hint text that overlays the bottom of the image */
.sheet-zoom-hint {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(11, 15, 25, 0.8);
    color: #a1a1aa;
    text-align: center;
    padding: 10px 0;
    font-family: sans-serif;
    font-size: 0.9rem;
    transition: color 0.2s ease, background 0.2s ease;
}

.commission-sheet-box:hover .sheet-img {
    transform: scale(1.02);   /* Soft subtle pop on hover */
}

.commission-sheet-box:hover .sheet-zoom-hint {
    background: rgba(11, 15, 25, 0.95);
    color: #ffffff;
}

/* 3. RIGHT SIDE: THE DETAILS CARD */
.commission-details-box {
    flex: 1;                  /* Takes up the other half of the layout width */
    background-color: #1e1e24;
    border: 1px solid #2d2d34;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    font-family: sans-serif;
}

/* Status Badges */
.commission-details-box h2 {
    color: #ffffff;
    font-size: 1.8rem;
    margin-top: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.status-badge {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 700;
}

.status-badge.open {
    background-color: #10b981; /* Premium solid emerald green */
    color: #ffffff;
}

.commission-desc {
    color: #d4d4d8;
    line-height: 1.6;
    font-size: 1.05rem;
}

/* Matching Dividers */
.box-divider {
    border: 0;
    height: 1px;
    background-color: #2d2d34;
    margin: 25px 0;
}

/* Buttons and Links Group Layout */
.commission-links-group h3, 
.commission-info-list h3 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-top: 0;
    margin-bottom: 15px;
}

.comm-btn {
    display: block;
    text-align: center;
    padding: 14px;
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    margin-bottom: 12px;
    transition: background 0.2s ease, transform 0.1s ease;
}

.primary-btn {
    background-color: #e94560; /* Your core crisp red/pink accent color */
    color: #ffffff;
}

.primary-btn:hover {
    background-color: #ff5c77;
}

.secondary-btn {
    background-color: #2d2d34;
    color: #e4e4e7;
    border: 1px solid #3f3f46;
}

.secondary-btn:hover {
    background-color: #3f3f46;
    color: #ffffff;
}

.comm-btn:active {
    transform: scale(0.98); /* Satisfying physical button-down compress feel */
}

/* Info List Items */
.commission-info-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #d4d4d8;
    line-height: 1.7;
}

.commission-info-list li {
    margin-bottom: 12px;
}

.commission-info-list strong {
    color: #ffffff;
}

.inline-link {
    color: #e94560;
    text-decoration: none;
    font-weight: 500;
}

.inline-link:hover {
    text-decoration: underline;
}

/* 4. RESPONSIVE LAYOUT BREAKPOINT (For Mobile Phones) */
@media (max-width: 768px) {
    .commission-container {
        flex-direction: column; /* Stacks the sheet image directly on top of the text details */
        gap: 25px;
    }
    
    .commission-sheet-box, 
    .commission-details-box {
        width: 100%;            /* Forces cards to stretch full screen width on mobile */
    }
}


/* Lightbox Background Mask */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    display: none; /* Kept hidden until active */
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

/* Class triggered via JavaScript to show lightbox */
.lightbox-overlay.display-active {
    display: flex;
}

/* Lightbox Image Dimensions */
.lightbox-image {
    max-width: 90%;
    max-height: 85vh;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    object-fit: contain;
}

/* Close Button Icon */
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #ffffff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.2s ease;
}

.lightbox-close:hover {
    color: #cccccc;
}



/* Apply to your buttons, links, or portfolio items */
.menu-link, .comm-btn {
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.menu-link:hover {
    color: #e94560;
    letter-spacing: 2px; /* Subtle typographic expansion on hover */
}


/* Card Setup Wrapper Frame */
.tilt-card-parent {
    perspective: 1000px; /* Gives the container 3D structural depth */
}

.tilt-card {
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    transform-style: preserve-3d;
}

/* Subtle, sophisticated 3D pitch shift when hovered */
.tilt-card-parent:hover .tilt-card {
    transform: rotateX(6deg) rotateY(-6deg) scale(1.03);
    box-shadow: 
        -10px 15px 30px rgba(0,0,0,0.5), 
        0 0 40px rgba(233, 69, 96, 0.15); /* Adds a localized glow matching your accent */
}



/* --- CORE VARIABLE ARCHITECTURE & STYLING RESET --- */
body.landing-body {
    margin: 0;
    padding: 0;
    background-color: #0b0f19;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    line-height: 1.7;
    
    /* Fluid Ambient Mesh Background Layering */
    background-image: 
        radial-gradient(at 0% 0%, rgba(233, 69, 96, 0.15) 0px, transparent 55%),
        radial-gradient(at 100% 0%, rgba(111, 66, 193, 0.12) 0px, transparent 55%),
        radial-gradient(at 50% 100%, rgba(26, 115, 232, 0.08) 0px, transparent 50%);
    background-attachment: fixed;
    background-size: 200% 200%;
    animation: ambientShift 25s ease infinite alternate;
}

@keyframes ambientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 50% 100%; }
}

/* TYPOGRAPHY ASSIGNMENTS */
h1, h2, h3, h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    letter-spacing: -0.5px;
}

/* KINETIC SCROLL PROGRESS DESIGN */
.scroll-progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: transparent;
    z-index: 100005;
}
.scroll-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #e94560, #ff5c77);
    width: 0%;
    transition: width 0.1s ease-out;
}

/* FADE IN LOAD SEQUENCE ANCHOR */
.animated-fade-in {
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(25px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- OBSIDIAN GLASSMORPHISM COMPONENT LAYOUTS --- */
.obsidian-glass-panel {
    background-color: rgba(30, 30, 36, 0.65);
    backdrop-filter: blur(20px) saturate(160%);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.3s ease;
}

/* --- HEADER NAVIGATION GLASS TINTING --- */
.site-glass {
    position: sticky;
    top: 0;
    background-color: rgba(11, 15, 25, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 9999;
}

/* --- HERO CORE VISUAL STYLING --- */
.hero-section {
    min-height: 85vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}
.hero-content {
    max-width: 850px;
}
.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 20px;
}
.neon-glow-text {
    text-shadow: 0 0 15px rgba(233, 69, 96, 0.25), 0 0 40px rgba(233, 69, 96, 0.15);
}
.hero-subtitle {
    font-size: 1.25rem;
    color: #d4d4d8;
    margin-bottom: 35px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}
.hero-cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    align-items: center;
}

/* --- SECTIONS INTERACTION SPACING --- */
.landing-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}
.section-title-area {
    text-align: center;
    margin-bottom: 50px;
}
.section-title-area h2 {
    font-size: 2.2rem;
    margin-bottom: 12px;
}
.section-title-area p {
    color: #a1a1aa;
    font-size: 1.05rem;
}

/* INTERACTIVE PORTFOLIO GRID HOVER WRAPPERS */
.kinetic-border-box {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.kinetic-border-box::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid transparent;
    border-radius: 8px;
    transition: border-color 0.3s ease;
    z-index: 2;
}
.kinetic-border-box:hover::before {
    border-color: #e94560; /* Lights up a clean frame border on item frame hover */
}

.center-action-link {
    text-align: center;
    margin-top: 40px;
}
.inline-link-arrow {
    color: #e94560;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: color 0.2s ease, transform 0.2s ease;
    display: inline-block;
}
.inline-link-arrow:hover {
    color: #ff5c77;
    transform: translateX(5px); /* Gentle linear forward kick nudge on hover state */
}

/* --- SERVICES CARD FLEX DESIGN LAYOUT --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.service-card {
    padding: 40px 30px;
    text-align: center;
}
.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(233, 69, 96, 0.3);
}
.service-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}
.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #ffffff;
}
.service-card p {
    color: #d4d4d8;
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* --- BIO PANEL BLOCK MODIFICATIONS --- */
.bio-teaser-section {
    max-width: 900px;
    margin: 40px auto 100px auto;
    padding: 0 20px;
}
.wide-bio-panel {
    padding: 50px;
    text-align: center;
}
.wide-bio-panel h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}
.wide-bio-panel p {
    color: #e4e4e7;
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.8;
}

/* --- PREMIUM INTERACTIVE FOOTER SYSTEM --- */
.site-footer {
    max-width: 1160px;
    margin: 0 auto 40px auto;
    padding: 50px;
    border-radius: 16px;
}
.footer-wrap {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    align-items: flex-start;
    flex-wrap: wrap;
}
.footer-pitch {
    flex: 2;
    min-width: 300px;
}
.footer-pitch h3 {
    font-size: 1.6rem;
    margin-top: 0;
    margin-bottom: 15px;
}
.footer-pitch p {
    color: #a1a1aa;
    margin-bottom: 25px;
    max-width: 500px;
}
.footer-btn {
    display: inline-block;
    max-width: 180px;
    text-align: center;
}
.footer-directory {
    flex: 1;
    min-width: 180px;
}
.footer-directory h4 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-top: 0;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.footer-directory ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-directory li {
    margin-bottom: 12px;
}
.footer-directory a {
    color: #a1a1aa;
    text-decoration: none;
    transition: color 0.2s ease;
}
.footer-directory a:hover {
    color: #e94560;
}
.footer-copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 40px;
    padding-top: 25px;
    text-align: center;
    color: #71717a;
    font-size: 0.9rem;
}

/* --- TOTAL MOBILE VIEWPORT RESPONSIVENESS OVERRIDES --- */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.4rem;
    }
    .hero-subtitle {
        font-size: 1.1rem;
    }
    .hero-cta-group {
        flex-direction: column;
        gap: 15px;
    }
    .hero-cta-group .comm-btn {
        width: 100%;
    }
    .wide-bio-panel {
        padding: 30px;
    }
    .footer-wrap {
        flex-direction: column;
        gap: 40px;
    }
}


/* Custom Green Commission Success Button */
.comm-btn.success-btn {
    background-color: #10b981; /* Premium solid emerald green */
    color: #ffffff;            /* Crisp white text for readability */
    border: 1px solid #059669; /* Slightly darker green border for crisp depth */
}

/* Hover state behavior */
.comm-btn.success-btn:hover {
    background-color: #059669; /* Smoothly darkens when cursor approaches */
    border-color: #047857;
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.3); /* Soft, vibrant ambient green glow */
}


/* 1. ALLOW THE MAIN PAGE TO SCROLL */
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  min-height: 100vh; /* Changed from height: 100vh to min-height */
  overflow-x: hidden; /* Prevents awkward side-scrolling */
  overflow-y: auto;   /* FORCES THE VERTICAL SCROLLBAR TO WORK */
  background-color: #030712; 
}

/* 2. KEEP ONLY THE BACKGROUND LOCKED IN PLACE */
.aurora-bg {
  position: fixed; /* Changed from absolute to fixed */
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden; /* Keeps the massive blurry wave edges hidden */
  filter: blur(100px);
  opacity: 0.65;
  z-index: -1; /* Pushes it behind all your scrollable text/images */
}

/* --- SOCIALS SECTION STRUCTURES --- */
.socials-container {
    max-width: 1000px;
    margin: 60px auto;
    padding: 0 20px;
}

.socials-intro {
    text-align: center;
    margin-bottom: 50px;
}

.socials-intro h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.socials-intro p {
    color: #a1a1aa;
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.05rem;
}

/* THE 2x2 DYNAMIC SOCIALS GRID */
.socials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(440px, 1fr));
    gap: 25px;
}

/* INDIVIDUAL PANEL LINKS STRUCTURE */
.social-card {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 30px;
    text-decoration: none;
    color: #ffffff;
    box-sizing: border-box;
}

/* Card Framing Highlighting Behavior */
.social-card:hover {
    border-color: rgba(255, 42, 81, 0.3); /* Custom crimson flash framing */
}

.social-icon {
    font-size: 2.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    flex-shrink: 0;
}

.social-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.social-info h3 {
    margin: 0;
    font-size: 1.4rem;
}

.social-info p {
    margin: 0;
    color: #d4d4d8;
    font-size: 0.95rem;
    line-height: 1.5;
}

.social-handle {
    font-family: monospace;
    color: #ff2a51; /* RashJudgement energetic brand highlight color */
    font-size: 0.9rem;
    margin-top: 4px;
    letter-spacing: 0.5px;
}

/* --- MOBILE STACKS MODIFICATIONS --- */
@media (max-width: 768px) {
    .socials-grid {
        grid-template-columns: 1fr; /* Drop to 1 full-width column layout block on mobile screens */
    }
    .social-card {
        padding: 20px;
        gap: 15px;
    }
    .social-icon {
        width: 55px;
        height: 55px;
        font-size: 2rem;
    }
    .socials-intro h1 {
        font-size: 2rem;
    }
}

/* --- FORCE SOCIALS GRID TYPOGRAPHY OVERRIDES --- */

/* Force card titles to use Plus Jakarta Sans */
.social-card h3 {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    letter-spacing: -0.5px !important;
}

/* Force card descriptions to use Inter */
.social-card p {
    font-family: 'Inter', sans-serif !important;
    font-weight: 400 !important;
    color: #d4d4d8 !important; /* Soft premium gray text */
    line-height: 1.5 !important;
}

/* Force handles to use clean code styling */
.social-card .social-handle {
    font-family: monospace !important;
    color: #ff2a51 !important; /* Your signature vibrant brand red */
    font-size: 0.9rem !important;
    letter-spacing: 0.5px !important;
}


/* --- MOBILE NAVIGATION BAR REPAIR STRUCTURING --- */
@media (max-width: 768px) {
    /* 1. Turn the header from a side-by-side row into a centered vertical stack */
    .site-header {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 20px 10px;
        gap: 15px; /* Adds consistent breathing room between logo and menu box */
    }

    /* 2. Scale down your large logo image sizing so it doesn't hog screen depth */
    .logo-container img {
        width: 130px !important;
        height: auto !important;
    }

    /* 3. Allow the links list to wrap cleanly onto a second line if needed */
    .menu-list {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px 20px; /* 15px vertical space between rows, 20px horizontal space */
        padding: 0;
        margin: 0;
        width: 100%;
    }

    /* 4. Optimize the text links so they act as large, clickable touch targets */
    .menu-link {
        font-size: 0.95rem !important;
        padding: 6px 10px;
        display: inline-block;
    }
}


/* Utility class to smoothly hide the age gate */
.age-gate-overlay.hidden {
    opacity: 0;
    pointer-events: none; /* Prevents users from clicking things through the invisible box */
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}