:root {
    --primary-color: #FFB800; /* Rockin' Amber */
    --primary-hover: #EAB308;
    --bg-main: #000000;
    --bg-sec: #0A0A0A;
    --text-main: #FFFFFF;
    --text-sec: #A8A29E;
    --border-color: rgba(255, 255, 255, 0.1);
    --font-head: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    --trans: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    background-color: var(--bg-main);
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--trans);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Utilities */
.brush-bg {
    position: relative;
    display: inline-block;
    padding: 10px 45px;
    margin: 1.5rem 0;
    z-index: 1;
}

.brush-bg::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    height: 140%;
    background: var(--primary-color);
    z-index: -1;
    clip-path: polygon(2% 15%, 98% 10%, 96% 85%, 5% 90%);
    border-radius: 5px;
}

.center { text-align: center; }
.mb-5 { margin-bottom: 3rem; }
.mt-3 { margin-top: 1.5rem; }

/* Navigation - Redesigned */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 1rem 0;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--trans);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 40px;
    width: auto;
    transition: var(--trans);
}

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

.nav-link {
    color: var(--text-sec);
    font-weight: 600;
    font-family: var(--font-head);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.85rem;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-color);
}

.nav-cta {
    padding: 0.6rem 1.5rem;
    font-size: 0.85rem;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    color: var(--text-main);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--trans);
}

.mobile-menu-btn:hover {
    color: var(--primary-color);
}

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: var(--bg-main);
    z-index: 2000;
    padding: 2rem;
    transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4rem;
}

.close-menu {
    background: transparent;
    border: none;
    color: var(--text-main);
    font-size: 1.8rem;
    cursor: pointer;
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.mobile-nav-link {
    font-family: var(--font-head);
    font-size: 2.5rem;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--text-main);
    letter-spacing: -1px;
}

.mobile-nav-link:hover {
    color: var(--primary-color);
}

.mobile-menu-footer {
    margin-top: auto;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.w-full { width: 100%; }

/* Hero Section - Refined */
.hero {
    position: relative;
    padding-top: 160px;
    padding-bottom: 120px;
    min-height: 95vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at center, #151515 0%, #000 100%);
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('img/Hero.webp') center/cover no-repeat;
    opacity: 0.25;
    z-index: 0;
    filter: grayscale(100%) contrast(110%) brightness(0.8);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 850px;
}

.hero-logo {
    width: 100%;
    max-width: 650px;
    height: auto;
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 20px rgba(0,0,0,0.5));
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: var(--primary-color);
    font-family: var(--font-head);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 6px;
    margin-bottom: 2.5rem;
}

.hero-desc {
    color: var(--text-sec);
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Sections */
.section-pad {
    padding: 8rem 0;
}

@media (max-width: 768px) {
    .section-pad {
        padding: 4rem 0;
    }
}

.section-heading {
    font-family: var(--font-head);
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 900;
    text-transform: uppercase;
    color: var(--text-main);
    line-height: 0.9;
    letter-spacing: -2px;
    margin-bottom: 1.5rem;
}

.section-subheading {
    color: var(--text-sec);
    font-size: 1.25rem;
    max-width: 750px;
    margin: 0 auto 5rem auto;
}

/* Service Cards */
.service-list {
    display: flex;
    flex-direction: column;
}

.service-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    padding: 8rem 0;
    border-top: 1px solid var(--border-color);
}

.service-card:last-child {
    padding-bottom: 0;
}

.service-card.reverse .service-info { order: 2; }
.service-card.reverse .service-portfolio { order: 1; }

.service-title {
    font-family: var(--font-head);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 0.95;
    margin-bottom: 1.5rem;
}

.service-price-wrapper { margin-bottom: 2.5rem; }

.service-price {
    font-family: var(--font-head);
    font-size: 1.5rem;
    font-weight: 800;
    color: #000;
}

.service-desc {
    color: var(--text-sec);
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 3rem;
}

/* Service Images - Rockin' Single Layout */
.service-image {
    overflow: hidden;
    border-radius: 24px;
    aspect-ratio: 1/1; /* Square for high impact */
    box-shadow: 0 20px 50px rgba(0,0,0,0.8);
    border: 1px solid rgba(255,255,255,0.05);
    background-color: var(--bg-sec);
}

@media (max-width: 768px) {
    .service-image {
        aspect-ratio: 4/3;
    }
}

.service-image.port-drum {
    aspect-ratio: 4/5; /* Taller for drum kit perspective */
}

.service-image img,
.service-video,
.service-image iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: none;
    transition: transform 0.8s cubic-bezier(0.2, 1, 0.2, 1);
}

.service-image.port-drum img {
    object-position: top;
}

.service-image:hover img {
    transform: scale(1.1);
}

/* Community Video Grid */
.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.video-card {
    background: var(--bg-sec);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
    transition: var(--trans);
}

.video-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
}

.video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 9/16; /* Unifying all to match portrait/shorts look */
    max-width: 350px;
    margin: 0 auto;
    background: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border: none;
}

.video-info {
    padding: 1.5rem;
    text-align: left;
}

.video-info h5 {
    font-family: var(--font-head);
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.video-info p {
    font-size: 0.9rem;
    color: var(--text-sec);
}

/* Profile Section Refinement */
.profil-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    align-items: center;
}

.profil-text h3 {
    font-family: var(--font-head);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
    color: var(--primary-color);
    line-height: 1;
}

.profil-text p {
    font-size: 1.25rem;
    color: var(--text-sec);
    margin-bottom: 2rem;
}

.profil-img {
    width: 100%;
    border-radius: 24px;
    filter: grayscale(30%);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1.1rem 2.2rem;
    border-radius: 50px;
    font-weight: 800;
    font-family: var(--font-head);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: var(--trans);
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: #25D366;
    color: #FFF;
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.3);
    background-color: #1FAF55;
}

.btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: #000;
}

/* Footer - Redesigned with Best Practices */
.footer {
    background-color: #000;
    padding: 100px 0 50px 0;
    border-top: 1px solid var(--border-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 80px;
}

.footer-brand .footer-logo {
    height: 60px;
    margin-bottom: 1.5rem;
}

.footer-brand p {
    color: var(--text-sec);
    font-size: 1.1rem;
    max-width: 300px;
}

.footer-title {
    font-family: var(--font-head);
    text-transform: uppercase;
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-main);
    letter-spacing: 2px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: var(--text-sec);
    transition: var(--trans);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-link {
    width: 45px;
    height: 45px;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--text-sec);
    transition: var(--trans);
}

.social-link:hover {
    background-color: var(--primary-color);
    color: #000;
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 50px;
    border-top: 1px solid var(--border-color);
}

.footer-bottom p {
    color: var(--text-sec);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .footer-grid { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
    .footer-brand p { max-width: 100%; margin: 0 auto; }
    .social-links { justify-content: center; }
    .service-card, .profil-content { grid-template-columns: 1fr; gap: 4rem; text-align: center; }
    .service-card.reverse .service-info { order: 1; }
    .service-card.reverse .service-portfolio { order: 2; }
    .hero-logo { max-width: 90%; }
    .video-grid { grid-template-columns: 1fr; }
    .service-title { font-size: 3rem; }
    .profil-text h3 { font-size: 3rem; }
}

@media (max-width: 768px) {
    .nav-links { 
        display: none; 
    }
    
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(20px);
        padding: 2rem;
        gap: 1.5rem;
        border-bottom: 1px solid var(--border-color);
        z-index: 1000;
        animation: slideDown 0.3s ease-out;
    }

    @keyframes slideDown {
        from { opacity: 0; transform: translateY(-10px); }
        to { opacity: 1; transform: translateY(0); }
    }
    .mobile-menu-btn { display: block; }
    .nav-cta span { display: none; }
    .nav-cta { padding: 0.6rem 0.8rem; border-radius: 50%; width: 45px; height: 45px; }
    .hero { padding-top: 120px; padding-bottom: 60px; }
    .hero-subtitle { letter-spacing: 3px; font-size: 1rem; margin-bottom: 1.5rem; }
    .hero-desc { font-size: 1rem; margin-bottom: 2rem; }
    .hero-btns { display: flex; flex-direction: column; gap: 1rem; }
    .hero-btns .btn { width: 100%; margin: 0 !important; }
    .section-heading { font-size: 2.8rem; }
    .section-subheading { font-size: 1rem; margin-bottom: 3rem; }
    .service-card { gap: 2rem; padding: 4rem 0; }
    .brush-bg { padding: 8px 30px; }
    .service-price { font-size: 1.2rem; }
}

@media (max-width: 480px) {
    .section-heading { font-size: 2.2rem; }
    .service-title { font-size: 2.2rem; }
    .profil-text h3 { font-size: 2.2rem; }
    .container { width: 92%; }
}
