/**
 * FEEL GOOD FAKTORY - Main Stylesheet
 * Independent Music Label - Montreal
 * 
 * Table of Contents:
 * 1. Reset & Base Styles
 * 2. Custom Scrollbar
 * 3. Accessibility
 * 4. Navigation
 * 5. Grid Layout
 * 6. Interactive Elements
 * 7. Panels & Overlays
 * 8. Typography
 * 9. Hero Section
 * 10. Featured Artists
 * 11. Services
 * 12. Components (Lists, Links, etc.)
 * 13. Footer
 * 14. Responsive Design
 */

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', 'Arial', sans-serif;
    background: rgb(15, 15, 15);
    color: #efefef;
    overflow-x: hidden;
    line-height: 1.5;
}

/* ============================================
   2. CUSTOM SCROLLBAR
   ============================================ */
::-webkit-scrollbar {
    width: 16px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: #BA3333;
}

::-webkit-scrollbar-thumb {
    background: #000;
    border-radius: 0px;
}

::-webkit-scrollbar-thumb:hover {
    background: #000;
}

body::-webkit-scrollbar-thumb {
    background: rgb(37, 37, 37);
}

body::-webkit-scrollbar-track {
    background: rgb(15, 15, 15);
}

body::-webkit-scrollbar-thumb:hover {
    background: rgb(37, 37, 37);
}

/* ============================================
   3. ACCESSIBILITY
   ============================================ */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #ff3d3d;
    color: #1a1a1a;
    padding: 8px;
    text-decoration: none;
    z-index: 100;
    font-weight: 600;
}

.skip-link:focus {
    top: 0;
}

/* Focus indicators for keyboard navigation */
*:focus-visible {
    outline: 2px solid #ff3d3d;
    outline-offset: 2px;
}

/* ============================================
   4. NAVIGATION
   ============================================ */
.nav-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 50;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #2a2a2a;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.nav-bar.visible {
    transform: translateY(0);
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: 900;
    color: #ff3d3d;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.nav-logo:hover,
.nav-logo:focus {
    transform: scale(1.1);
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
    text-align: right;
}

.nav-links a {
    color: #efefef;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover,
.nav-links a:focus {
    color: #ff3d3d;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ff3d3d;
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a:focus::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #efefef;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s ease;
}

.mobile-menu-btn:hover,
.mobile-menu-btn:focus {
    color: #ff3d3d;
}

/* ============================================
   5. GRID LAYOUT
   ============================================ */
.main-container {
    min-height: 100vh;
    position: relative;
    padding-top: 0;
    padding-left: 10vw;
    padding-right: 10vw;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 45vh;
    gap: 0;
    border-left: 2px solid rgb(42, 42, 42);
    border-right: 2px solid rgb(42, 42, 42);
}

/* ============================================
   6. INTERACTIVE ELEMENTS
   ============================================ */
.box {
    position: relative;
    overflow: hidden;
    border: 1px solid #2a2a2a;
    background: #1a1a1a;
    transition: all 0.3s ease;
}

.box.clickable {
    cursor: pointer;
}

.box.clickable:hover,
.box.clickable:focus,
.box.clickable:focus-within {
    border-color: #ff3d3d;
    transform: scale(1.01);
    z-index: 2;
}

.box.clickable:hover .hover-indicator {
    opacity: 1;
    transform: scale(1.1) rotate(90deg);
}

.hover-indicator {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 5;
    pointer-events: none;
}

.hover-indicator svg {
    width: 100%;
    height: 100%;
    stroke: #ff3d3d;
    stroke-width: 2;
    fill: none;
}

.box-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 50px;
    text-align: center;
    z-index: 2;
}

/* ============================================
   7. PANELS & OVERLAYS
   ============================================ */
.slide-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ff3d3d;
    color: #1a1a1a;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 40px 20px 20px 20px;
    text-align: center;
    z-index: 15;
    transition: transform 0.5s cubic-bezier(0.4, 0.0, 0.2, 1);
    pointer-events: none;
    overflow-y: auto;
    overflow-x: hidden;
}

.panel-full-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 14;
    pointer-events: none;
    filter: brightness(0.35) saturate(1.3);
}

.box.active {
    z-index: 20;
}

.box.active .slide-panel {
    pointer-events: all;
    transform: translate(0, 0);
}

/* Panel animation directions */
.slide-panel.slide-from-right {
    transform: translateX(100%);
}

.slide-panel.slide-from-left {
    transform: translateX(-100%);
}

.slide-panel.slide-from-top {
    transform: translateY(-100%);
}

.slide-panel.slide-from-bottom {
    transform: translateY(100%);
}

/* Close button */
.close-panel {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(26, 26, 26, 0.2);
    border: 2px solid #1a1a1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 25;
}

.close-panel:hover,
.close-panel:focus {
    background: #1a1a1a;
    transform: rotate(90deg);
    outline: 2px solid #ff3d3d;
}

.close-panel::before,
.close-panel::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    background: #1a1a1a;
    transition: background 0.3s ease;
}

.close-panel:hover::before,
.close-panel:hover::after,
.close-panel:focus::before,
.close-panel:focus::after {
    background: #ff3d3d;
}

.close-panel::before {
    transform: rotate(45deg);
}

.close-panel::after {
    transform: rotate(-45deg);
}

/* ============================================
   8. TYPOGRAPHY
   ============================================ */
h1 {
    font-size: clamp(5rem, 14vw, 16rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 0.8;
    margin: 0;
    color: #ffffff;
}

h2 {
    font-size: clamp(3rem, 8vw, 10rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 0.85;
    margin-bottom: 25px;
}

h3 {
    font-size: clamp(2.5rem, 6vw, 6rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
    line-height: 0.9;
}

h4 {
    font-size: clamp(1.8rem, 3.5vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 15px;
}

.subtitle {
    font-size: clamp(1.8rem, 3.5vw, 3.5rem);
    font-weight: 100;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    opacity: 0.4;
    margin-top: 25px;
}

.body-text {
    font-size: clamp(1.2rem, 2vw, 1.8rem);
    line-height: 1.6;
    font-weight: 300;
    max-width: 100%;
}

.slide-panel .body-text,
.slide-panel h3,
.slide-panel h4 {
    color: #1a1a1a;
}

/* ============================================
   9. HERO SECTION
   ============================================ */
.hero {
    grid-column: span 4;
    background: linear-gradient(135deg, #252525 0%, #1a1a1a 100%);
    border: none;
    grid-row: span 1;
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.logo-box {
    border: 10px solid #efefef;
    padding: 40px 90px;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.logo-box:hover {
    border-width: 20px;
    padding: 30px 80px;
    border-color: #ff3d3d;
    transform: scale(1.05) rotate(-2deg);
}

.score-lines {
    position: absolute;
    width: 100%;
    height: 30px;
    background: repeating-linear-gradient(
        to bottom,
        transparent,
        transparent 5px,
        rgba(255, 61, 61, 0.15) 5px,
        rgba(255, 61, 61, 0.15) 6px
    );
}

.score-lines.top {
    top: 0;
}

.score-lines.bottom {
    bottom: 0;
}

/* ============================================
   10. FEATURED ARTISTS
   ============================================ */
.featured {
    grid-column: span 2;
    grid-row: span 2;
    background: #252525;
}

.artist-banner {
    width: 100%;
    height: 180px;
    background-size: cover;
    background-position: center;
    margin-bottom: 15px;
    border-radius: 4px;
    transition: transform 0.3s ease;
}

.artist-banner:hover {
    transform: scale(1.02);
}

.artist-logo {
    font-size: clamp(3.5rem, 7vw, 7rem);
    font-weight: 900;
    color: #ff3d3d;
    margin: 20px 0;
    line-height: 0.85;
    letter-spacing: -0.03em;
}

.artist-logo-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    margin: 20px 0;
}

.album-cover {
    width: 100%;
    max-width: 350px;
    height: auto;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 4px;
    margin: 20px auto;
    display: block;
    transition: transform 0.3s ease;
}

.album-cover:hover {
    transform: scale(1.05);
}

.release-highlight {
    background: rgba(0,0,0,0.2);
    padding: 35px;
    margin: 25px 0;
    max-width: 100%;
    width: 100%;
    border-radius: 8px;
    border: 2px solid rgba(26, 26, 26, 0.3);
}

.release-highlight h4 {
    margin-bottom: 20px;
}

.release-highlight .body-text {
    font-size: clamp(1rem, 1.6vw, 1.4rem);
}

/* Project tabs */
.project-tabs {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    z-index: 5;
}

.project-tab {
    padding: 10px 24px;
    background: rgba(239, 239, 239, 0.1);
    border: 2px solid rgba(239, 239, 239, 0.2);
    color: #efefef;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 25px;
}

.project-tab:hover,
.project-tab:focus {
    background: rgba(239, 239, 239, 0.2);
    border-color: rgba(239, 239, 239, 0.4);
}

.project-tab.active {
    background: #ff3d3d;
    color: #1a1a1a;
    border-color: #ff3d3d;
}

.click-more-info {
    display: inline-block;
    margin-top: 20px;
    padding: 0;
    color: rgba(239, 239, 239, 0.5);
    font-weight: 300;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 100%;
    max-width: 100%;
    margin: 30px 0;
}

.panel-image {
    width: 100%;
    height: 180px;
    background-size: cover;
    background-position: center;
    filter: grayscale(20%);
    transition: filter 0.3s ease, transform 0.3s ease;
    border-radius: 4px;
}

.panel-image:hover {
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* ============================================
   11. SERVICES
   ============================================ */
.mission {
    grid-column: span 2;
    background: #1f1f1f;
}

.mission h2,
.about h2,
.collaborators h2,
.contact h2 {
    hyphens: manual;
    word-break: break-word;
    font-size: 6vw;
}

.about {
    grid-column: span 2;
    background: #1a1a1a;
}

.about-content-wrapper {
    max-width: 800px;
    width: 100%;
}

.service {
    grid-column: span 1;
    background: #202020;
    position: relative;
}

.service .box-content {
    padding: 10px;
}

.service h3 {
    hyphens: manual;
    word-break: break-word;
    font-size: 2.5vw;
}

.service:nth-child(6) {
    background: #1d1d1d;
}

.service:nth-child(7) {
    background: #232323;
}

.service:nth-child(8) {
    background: #1b1b1b;
}

.service-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.5s ease, transform 8s ease;
    z-index: 0;
    filter: grayscale(50%) brightness(0.3);
    transform: scale(1);
}

.service:hover .service-bg-image {
    opacity: 1;
    transform: scale(1.1);
}

.service-icon {
    width: clamp(60px, 10vw, 100px);
    height: clamp(60px, 10vw, 100px);
    margin-bottom: 25px;
    opacity: 0.8;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.box.clickable:hover .service-icon,
.box.clickable:focus .service-icon {
    opacity: 1;
    transform: scale(1.1);
}

.service-icon svg {
    width: 100%;
    height: 100%;
    stroke: #efefef;
    fill: none;
    stroke-width: 1.5;
}

/* ============================================
   12. COMPONENTS
   ============================================ */

/* Call-to-action links */
.cta-link {
    display: inline-block;
    color: #ff3d3d;
    text-decoration: none;
    font-size: clamp(1.2rem, 2vw, 1.8rem);
    font-weight: 700;
    position: relative;
    margin-top: 25px;
    padding-bottom: 10px;
    transition: color 0.3s ease;
}

.cta-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #ff3d3d;
    transition: all 0.4s ease;
}

.cta-link:hover::after,
.cta-link:focus::after {
    width: 0;
    left: 50%;
}

.cta-link:hover,
.cta-link:focus {
    color: #efefef;
}

.slide-panel .cta-link {
    color: #1a1a1a;
}

.slide-panel .cta-link::after {
    background: #1a1a1a;
}

.slide-panel .cta-link:hover,
.slide-panel .cta-link:focus {
    color: #efefef;
}

.slide-panel .cta-link:hover::after,
.slide-panel .cta-link:focus::after {
    background: #efefef;
}

/* Social links */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(26, 26, 26, 0.3);
    border: 2px solid rgba(26, 26, 26, 0.5);
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.social-link:hover,
.social-link:focus {
    background: #1a1a1a;
    color: #ff3d3d;
    border-color: #1a1a1a;
    transform: translateY(-2px);
}

/* Streaming links */
.streaming-links {
    display: flex;
    gap: 12px;
    margin-top: 25px;
    flex-wrap: wrap;
    justify-content: center;
}

.stream-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #1a1a1a;
    border: 2px solid #1a1a1a;
    color: #ff3d3d;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.stream-link:hover,
.stream-link:focus {
    background: #efefef;
    color: #1a1a1a;
    border-color: #efefef;
    transform: translateY(-2px);
}

/* Lists */
.detail-list {
    list-style: none;
    text-align: center;
    width: 100%;
    max-width: 700px;
}

.detail-list li {
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    font-size: clamp(1.1rem, 1.6vw, 1.4rem);
    font-weight: 300;
    transition: all 0.3s ease;
    position: relative;
    cursor: default;
}

.detail-list li:hover,
.detail-list li:focus {
    color: #efefef;
    opacity: 1;
}

.slide-panel .detail-list li {
    border-bottom-color: rgba(26, 26, 26, 0.2);
}

/* Collaborators */
.collaborators {
    grid-column: span 2;
    background: #1a1a1a;
}

.collab-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 100%;
    max-width: 700px;
    margin-top: 30px;
}

.collab-name {
    font-size: clamp(1rem, 1.5vw, 1.3rem);
    font-weight: 600;
    opacity: 0.7;
    padding: 18px 20px;
    background: rgba(239, 239, 239, 0.04);
    border: 1px solid rgba(239, 239, 239, 0.33);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
    cursor: default;
}

.collab-name:hover {
    opacity: 1;
    border-color: #fff;
    background: rgba(255, 61, 61, 0.1);
}

/* Contact */

.contact {
	grid-column: span 2;
	background: #1a1a1a;
	color: #efefef;
	border: 1px solid #2a2a2a;
	cursor: pointer;
	transition: all 0.5s ease;
}

.contact:hover {
	border-color: #ff3d3d;
}

.contact.active {
	background: #ff3d3d;
	color: #1a1a1a;
	border-color: #ff3d3d;
}

.contact h2,
.contact .body-text {
	color: inherit;
	transition: color 0.5s ease;
}

.email-link {
	font-size: clamp(2rem, 2.5vw, 3.5rem);
	font-weight: 800;
	margin-top: 30px;
	color: #1a1a1a;
	text-decoration: none;
	display: inline-block;
	transition: all 0.5s ease;
	position: relative;
	padding-bottom: 10px;
	opacity: 0;
	max-height: 0;
	overflow: hidden;
	max-height: 0px;
	height: 0px;
	margin: 0px;
}

.contact.active .email-link {
	opacity: 1;
	max-height: 200px;
	margin-top: 30px;
	height: auto;
}

.email-link::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: #1a1a1a;
	transition: all 0.4s ease;
}

.email-link:hover::after,
.email-link:focus::after {
	width: 0;
	left: 50%;
}

.email-link:hover,
.email-link:focus {
	color: #efefef;
}

/* ============================================
13. FOOTER
============================================ */
.footer {
	background: rgba(0,0,0,0);
	color: #666;
	padding: 80px 10px;
	text-align: center;
	border-top: 1px solid #2a2a2a;
	position: relative;
	z-index: 1;
}

.footer-content {
	max-width: 1400px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 40px;
}

.footer-content > div {
    width: 25%;
}

.footer-text:nth-child(3) {
    text-align: right;
}


.footer-logo-box {
	/* border: 2px solid #ff3d3d;
	padding: 20px 40px; */
}

.footer-logo {
	font-size: clamp(2rem, 2vw, 2rem);
	font-weight: 900;
	color: #ff3d3d;
    text-align: left;
}

.footer-text {
	font-size: clamp(1rem, 1.5vw, 1.2rem);
	opacity: 0.6;
	font-weight: 400;
}

/* ============================================
14. RESPONSIVE DESIGN
============================================ */
@media (max-width: 1200px) {
    .main-container {
            padding-left: 5vw;
            padding-right: 5vw;
    }
	.grid-container {
		grid-template-columns: repeat(2, 1fr);
		grid-auto-rows: 40vh;
	}

	.hero {
		grid-column: span 2;
	}

	.featured {
		grid-column: span 2;
		grid-row: span 2;
	}

	.mission,
	.about,
	.collaborators,
	.contact {
		grid-column: span 2;
	}

	.service {
		grid-column: span 1;
	}

	.nav-links {
		gap: 20px;
	}

    .collab-name {
        font-size: 1.5em;
    }

    h2 {
        font-size: 6em !important;
    }

    h3 {
        font-size: 3.5em !important;
    }

    .body-text {
        font-size: clamp(1rem, 4vw, 1.8rem);
    }
    
    .footer-content {
        gap: 20px;
    }

    .footer-logo {
        text-align: center;
    }
    .footer-text:nth-child(3) {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .main-container {
        padding-left: 0vw;
        padding-right: 0vw;
    }

	.grid-container {
		grid-template-columns: 1fr;
		grid-auto-rows: 60vh;
	}

	.hero,
	.featured,
	.mission,
	.about,
	.service,
	.collaborators,
	.contact {
		grid-column: span 1;
		grid-row: span 1;
	}

	.box-content,
	.slide-panel {
		padding: 10px;
	}

	.collab-grid,
	.image-grid {
		grid-template-columns: 1fr;
	}

	.footer-content {
		flex-direction: column;
		text-align: center;
	}

	.nav-bar {
		padding: 15px 20px;
	}

	.nav-links {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: rgba(26, 26, 26, 0.98);
		flex-direction: column;
		padding: 20px;
		gap: 15px;
		border-top: 1px solid #2a2a2a;
		display: none;
	}

	.nav-links.mobile-open {
		display: flex;
	}

	.mobile-menu-btn {
		display: block;
	}

	.nav-logo {
		font-size: 1.2rem;
	}

	.project-tabs {
		flex-direction: column;
	}

	.streaming-links,
	.social-links {
		flex-direction: column;
		width: 100%;
	}

	.stream-link,
	.social-link {
		width: 100%;
		justify-content: center;
	}

    .body-text {
        font-size: 1.6em;
        line-height: 1.4em;
    }

	h2 {
		font-size: 7rem !important;
	}

	h3 {
		font-size: 5rem !important;
        margin-bottom: 1em;
	}

    .detail-list li {
        font-size: 2rem;
    }

	.artist-banner {
		height: 140px;
	}
	
	.slide-panel {
	    padding: 4rem 1rem;
	}
}

@media (max-width: 480px) {
	.grid-container {
		grid-auto-rows: 50vh;
	}

	.body-text {
		font-size: clamp(1rem, 4vw, 1.8rem);
	}

    .footer-logo {
        text-align: center;
    }
    .footer-text:nth-child(3) {
        text-align: center;
    }
}

@media (max-height: 600px) {

	.box-content,
	.slide-panel {
		padding: 10px;
	}

	.artist-logo {
		font-size: clamp(2.5rem, 6vw, 5rem);
		margin: 15px 0;
	}

	.artist-banner {
		height: 100px;
		margin-bottom: 10px;
	}
}

/* ============================================
15. PERFORMANCE OPTIMIZATIONS
============================================ */

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {

	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
}

/* Hardware acceleration for smoother animations */
.box,
.slide-panel,
.service-bg-image,
.logo-box {
	will-change: transform;
}

.box:not(:hover),
.slide-panel:not(.box.active .slide-panel),
.service-bg-image:not(.service:hover .service-bg-image),
.logo-box:not(:hover) {
	will-change: auto;
}