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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Loading state */
body:not(.loaded) {
    opacity: 0;
}

body.loaded {
    opacity: 1;
    transition: opacity 0.5s ease;
}

/* Image lazy loading optimization */
img {
    max-width: 100%;
    height: auto;
}

video {
    max-width: 100%;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 50px;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.navbar.scrolled {
    padding: 8px 50px;
    background: rgba(0, 0, 0, 0.98);
}

.nav-brand .logo {
    height: 45px;
    width: auto;
    object-fit: contain;
    transition: height 0.3s ease;
    border: none !important;
    background: transparent;
    border-radius: 0;
    box-shadow: none !important;
    outline: none !important;
    mix-blend-mode: screen; /* Helps blend white backgrounds */
}

.navbar.scrolled .nav-brand .logo {
    height: 40px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a:focus {
    color: #d4af37;
    outline: none;
}

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

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #d4af37;
    margin: 3px 0;
    transition: 0.3s;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    margin-top: 0;
    padding-top: 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.8), rgba(212,175,55,0.2));
    z-index: -1;
}

.hero-content {
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    margin-bottom: 10px;
    background: linear-gradient(45deg, #d4af37, #ffd700);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.3)); }
    to { filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.6)); }
}

.hero-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 400;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #d4af37;
    margin-bottom: 10px;
    font-weight: 500;
}

.hero-description {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 30px;
}

.hero-tags {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-tags span {
    padding: 10px 20px;
    border: 2px solid #d4af37;
    border-radius: 30px;
    font-size: 0.9rem;
    color: #d4af37;
    font-weight: 400;
    background: rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
}

.hero-tags span:hover {
    background: #d4af37;
    color: #000;
    transform: translateY(-2px);
}

.cta-button {
    background: linear-gradient(45deg, #d4af37, #ffd700);
    border: none;
    padding: 18px 45px;
    font-size: 18px;
    font-weight: 600;
    color: #000;
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.cta-button:hover,
.cta-button:focus {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.4);
    outline: none;
}

.cta-button:focus-visible {
    outline: 2px solid #d4af37;
    outline-offset: 3px;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 50px;
}

/* About Section */
.about {
    background: #111111;
}

.about h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 40px;
    color: #d4af37;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: center;
}

.about-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.bio-lead {
    font-size: 1.4rem;
    color: #d4af37;
    margin-bottom: 30px;
    font-weight: 500;
}

.bio-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #cccccc;
}

.mission-statement {
    margin-top: 40px;
    padding: 30px;
    border: 2px solid #d4af37;
    border-radius: 15px;
    background: rgba(212, 175, 55, 0.05);
    text-align: center;
}

.mission-statement h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #d4af37;
    margin-bottom: 15px;
}

/* Services Section */
.services {
    padding: 60px 0;
    background: #0a0a0a;
}

.services h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
    color: #d4af37;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: #d4af37;
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.1);
}

.service-card i {
    font-size: 3rem;
    color: #d4af37;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.service-card p {
    color: #cccccc;
    line-height: 1.6;
}

/* Section Subtitle */
.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #cccccc;
    margin-top: -20px;
    margin-bottom: 40px;
}

/* Merch Section */
.merch {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.merch h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
    color: #d4af37;
}

.merch-contact-box {
    max-width: 600px;
    margin: 40px auto;
    padding: 60px 40px;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    border-radius: 20px;
    text-align: center;
    border: 2px solid #d4af37;
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.2);
}

.merch-contact-box i {
    font-size: 4rem;
    color: #d4af37;
    margin-bottom: 20px;
}

.merch-contact-box h3 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 15px;
}

.merch-contact-box p {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 30px;
    line-height: 1.6;
}

.merch-contact-btn {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, #d4af37 0%, #ffd700 100%);
    color: #0a0a0a;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.merch-contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

/* Monthly Mixes Section */
.monthly-mixes {
    padding: 80px 0;
    background: linear-gradient(135deg, #111111 0%, #0a0a0a 100%);
}

.monthly-mixes h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
    color: #d4af37;
}

.latest-video-container {
    max-width: 900px;
    margin: 40px auto;
}

.latest-video {
    background: #000;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border: 2px solid #d4af37;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.latest-video:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.4);
}

.video-thumbnail {
    position: relative;
    display: block;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    overflow: hidden;
    background: #000;
}

.video-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-thumbnail:hover img {
    transform: scale(1.05);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 0, 0, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.play-button i {
    font-size: 2.5rem;
    color: #fff;
    margin-left: 5px;
}

.video-thumbnail:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
    background: rgba(255, 0, 0, 1);
    box-shadow: 0 8px 30px rgba(255, 0, 0, 0.5);
}

.video-title {
    padding: 20px;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    color: #fff;
    font-size: 1.2rem;
    text-align: center;
    font-weight: 500;
    border-top: 2px solid #d4af37;
}

.youtube-link {
    text-align: center;
    margin-top: 40px;
}

.youtube-btn {
    display: inline-block;
    padding: 15px 40px;
    background: #FF0000;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.youtube-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.4);
}

.youtube-btn i {
    margin-right: 10px;
}

.loading-spinner {
    text-align: center;
    padding: 60px 20px;
    color: #d4af37;
}

.loading-spinner i {
    font-size: 3rem;
    margin-bottom: 20px;
}

.loading-spinner p {
    font-size: 1.1rem;
    color: #ccc;
}

.no-videos {
    text-align: center;
    padding: 60px 20px;
    font-size: 1.2rem;
    color: #ccc;
}

/* Equipment Rental Section */
.equipment {
    padding: 60px 0;
    background: #111111;
}

.equipment h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
    color: #d4af37;
}

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.equipment-item {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.equipment-item:hover {
    border-color: #d4af37;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
}

.equipment-icon {
    font-size: 3.5rem;
    color: #d4af37;
    margin-bottom: 20px;
}

.equipment-item h4 {
    font-size: 1.4rem;
    color: #ffffff;
    margin-bottom: 15px;
}

.equipment-description {
    color: #cccccc;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    min-height: 50px;
}

.equipment-price {
    font-size: 1.8rem;
    color: #d4af37;
    font-weight: 600;
    margin-bottom: 20px;
}

.equipment-contact {
    font-size: 1.1rem;
    color: #d4af37;
    font-weight: 500;
    margin-bottom: 20px;
    font-style: italic;
}

.rental-btn {
    background: transparent;
    border: 2px solid #d4af37;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    color: #d4af37;
    cursor: pointer;
    border-radius: 30px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.rental-btn:hover,
.rental-btn:focus {
    background: #d4af37;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
    outline: none;
}

/* Collaborations Section - Smaller */
.collabs {
    padding: 60px 0;
    background: #0a0a0a;
}

.collabs h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
    color: #d4af37;
}

.collab-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.collab-item {
    padding: 20px 15px;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border: 1px solid #333;
    border-radius: 8px;
    text-align: center;
    font-size: 1rem;
    font-weight: 500;
    color: #ffffff;
    transition: all 0.3s ease;
}

.collab-item:hover {
    border-color: #d4af37;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.brand-partners {
    text-align: center;
    margin-top: 30px;
}

.brand-partners h3 {
    font-size: 1.5rem;
    color: #d4af37;
    margin-bottom: 20px;
}

.brands {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.brands span {
    font-size: 1rem;
    font-weight: 500;
    color: #ffffff;
    padding: 10px 20px;
    border: 1px solid #d4af37;
    border-radius: 8px;
    background: rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
}

.brands span:hover {
    background: #d4af37;
    color: #000;
    transform: translateY(-2px);
}

/* Contact Section */
.contact {
    padding: 60px 0;
    background: #0a0a0a;
}

.contact h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
    color: #d4af37;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h3 {
    font-size: 2rem;
    color: #d4af37;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 40px;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.contact-item i {
    color: #d4af37;
    margin-right: 15px;
    width: 20px;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #d4af37, #ffd700);
    color: #000;
    border-radius: 50%;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 10px;
    color: #ffffff;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #d4af37;
}

.contact-form button {
    background: linear-gradient(45deg, #d4af37, #ffd700);
    border: none;
    padding: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #000;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form button:hover,
.contact-form button:focus {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
    outline: none;
}

.contact-form button:focus-visible {
    outline: 2px solid #d4af37;
    outline-offset: 2px;
}

.contact-form button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #d4af37, #ffd700);
    color: #000;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

/* Footer */
.footer {
    background: #111111;
    padding: 40px 0 30px;
    text-align: center;
    border-top: 1px solid #222;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.footer-logo img {
    height: 50px;
    width: auto;
    border: none;
    outline: none;
    background: transparent;
    display: block;
}

.footer p {
    color: #999;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 50px 30px;
    }

    .about-content {
        gap: 30px;
    }

    .contact-content {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: right 0.3s ease;
        padding: 20px;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
    }

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

    .nav-menu li {
        width: 100%;
        text-align: center;
    }

    .nav-menu a {
        font-size: 1.2rem;
        display: block;
        padding: 10px;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .navbar {
        padding: 12px 20px;
    }

    .nav-brand .logo {
        height: 40px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content h2 {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-tags {
        gap: 15px;
    }

    .hero-tags span {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    .cta-button {
        padding: 15px 35px;
        font-size: 16px;
    }

    .about h2,
    .services h2,
    .contact h2,
    .collabs h2,
    .videos h2,
    .gallery h2,
    .merch h2,
    .equipment h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-top: -15px;
        margin-bottom: 30px;
    }

    .merch-grid,
    .equipment-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .merch-image {
        height: 250px;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 25px;
    }

    .about-image img {
        height: 350px;
    }

    .bio-lead {
        font-size: 1.2rem;
    }

    .bio-content p {
        font-size: 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card {
        padding: 30px 25px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-info h3 {
        font-size: 1.6rem;
    }

    .container {
        padding: 40px 20px;
    }

    .video-gallery {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 10px;
    }

    .video-item video {
        border-radius: 10px;
    }

    .videos .container {
        padding: 30px 20px;
    }

    .collab-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content h2 {
        font-size: 1.3rem;
    }

    .hero-tags {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .hero-tags span {
        width: 80%;
        text-align: center;
    }

    .about h2,
    .services h2,
    .contact h2,
    .collabs h2,
    .videos h2,
    .gallery h2,
    .merch h2,
    .equipment h2 {
        font-size: 1.8rem;
    }

    .merch-grid,
    .equipment-grid {
        gap: 20px;
    }

    .equipment-description {
        min-height: auto;
    }

    .about-image img {
        height: 300px;
    }

    .mission-statement {
        padding: 20px;
    }

    .mission-statement h3 {
        font-size: 1.5rem;
    }

    .brands {
        flex-direction: column;
        align-items: center;
    }

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

    .container {
        padding: 30px 15px;
    }

    .videos .container {
        padding: 25px 15px;
    }

    .video-gallery {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .cta-button {
        padding: 12px 30px;
        font-size: 14px;
    }

    .social-links a {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}

/* Videos Section */
.videos {
    padding: 50px 0;
    background: #0a0a0a;
}

.videos h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 35px;
    color: #d4af37;
}

.videos .container {
    padding: 40px 50px;
}

.video-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 700px;
    margin: 0 auto;
}

.video-item {
    text-align: center;
}

.video-item iframe {
    width: 100%;
    height: 210px;
    border-radius: 12px;
    border: none;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.video-item h4 {
    font-size: 1.1rem;
    color: #d4af37;
    margin: 12px 0 6px;
}

.video-item p {
    color: #cccccc;
    font-size: 0.85rem;
}

/* Gallery Section - Updated */
.gallery {
    padding: 60px 0;
    background: #111111;
}

.gallery h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
    color: #d4af37;
}

.gallery-tabs {
    display: none;
}

.barber-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    max-width: 800px;
    margin: 0 auto;
}

.barber-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
    background: #1a1a1a;
}

.barber-item:hover {
    transform: scale(1.02);
}

.barber-item img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.barber-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    padding: 30px 20px 20px;
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.barber-item:hover .barber-overlay {
    transform: translateY(0);
}

.barber-overlay h4 {
    font-size: 1.3rem;
    color: #d4af37;
    margin-bottom: 5px;
}

/* Video Gallery - Enhanced */
.video-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.video-item {
    text-align: center;
}

.video-item video {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 12px;
    background: #000;
    object-fit: contain;
}

.video-item h4 {
    font-size: 1.2rem;
    color: #d4af37;
    margin: 15px 0 8px;
}

.video-item p {
    color: #cccccc;
    font-size: 0.9rem;
}

/* Social Gallery - Smaller */
.social-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 600px;
    margin: 0 auto;
}

.social-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 280px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.social-item:hover {
    transform: scale(1.05);
}

.social-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.social-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-item:hover .social-overlay {
    opacity: 1;
}

.social-icons {
    display: flex;
    gap: 20px;
}

.social-icons i {
    font-size: 2.5rem;
    color: #d4af37;
    transition: transform 0.3s ease;
}

.social-icons i:hover {
    transform: scale(1.2);
}

/* Responsive Gallery */
@media (max-width: 768px) {
    .barber-gallery,
    .video-gallery,
    .social-gallery {
        grid-template-columns: 1fr;
    }

    .gallery-tabs {
        flex-direction: column;
        align-items: center;
    }

    .tab-btn {
        width: 200px;
    }

    /* Merch Contact Box */
    .merch-contact-box {
        padding: 40px 20px;
    }

    .merch-contact-box h3 {
        font-size: 1.5rem;
    }

    .merch-contact-box i {
        font-size: 3rem;
    }

    /* Monthly Mixes */
    .latest-video-container {
        margin: 20px auto;
    }

    .video-title {
        font-size: 1rem;
        padding: 15px;
    }

    .play-button {
        width: 60px;
        height: 60px;
    }

    .play-button i {
        font-size: 2rem;
    }
}








