/* ============================================
   TuneTube - Premium Redesign CSS
   Pixel-perfect clone of Wix original + elevated
   ============================================ */

/* === CSS Reset & Base === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --purple: #7B42BC;
    --purple-dark: #5A2DB8;
    --purple-deep: #2D1B4E;
    --purple-light: #9B6DD7;
    --purple-glow: rgba(123, 66, 188, 0.4);
    --white: #FFFFFF;
    --black: #000000;
    --grey-dark: #1a1a1a;
    --grey-text: #999999;
    --font-main: 'Montserrat', sans-serif;
    --transition-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--black);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* === HEADER === */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: box-shadow 0.3s ease, background 0.3s ease;
}

.header.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.header.transparent {
    background: transparent;
    border-bottom: none;
}

.header.transparent .logo-tune {
    color: var(--purple);
}

.header.transparent .logo-tube {
    color: var(--white);
}

.header.transparent .nav-link {
    color: var(--white);
}

.header.transparent .nav-link.active {
    color: var(--purple-light);
}

.header.transparent .nav-link.active::after {
    background: var(--purple-light);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 40px;
}

/* Logo */
.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 0.85;
}

.logo-tune {
    font-size: 22px;
    font-weight: 800;
    color: var(--purple);
    letter-spacing: 6px;
}

.logo-tube {
    font-size: 22px;
    font-weight: 900;
    color: var(--black);
    letter-spacing: 6px;
    margin-left: 10px;
}

/* Nav */
.nav {
    display: flex;
    gap: 40px;
}

.nav-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--black);
    position: relative;
    transition: color 0.3s ease;
    padding: 4px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--purple);
    border-radius: 1px;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-link:hover::after {
    transform: scaleX(1);
}

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

.nav-link.active {
    color: var(--purple);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--purple);
    border-radius: 1px;
    transform: scaleX(1);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--black);
    transition: all 0.3s ease;
}

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

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

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

/* Mobile Nav */
.mobile-nav {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--white);
    z-index: 999;
    padding: 24px 40px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.12);
    flex-direction: column;
    gap: 16px;
    backdrop-filter: blur(10px);
}

.mobile-nav.active {
    display: flex;
}

.mobile-nav-link {
    font-size: 16px;
    font-weight: 600;
    color: var(--black);
    padding: 10px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: color 0.3s ease;
}

.mobile-nav-link:last-child {
    border-bottom: none;
}

.mobile-nav-link.active {
    color: var(--purple);
}

/* === HERO SECTION === */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.hero-bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    transition: transform 0.1s linear;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.15) 0%,
        rgba(0,0,0,0.35) 40%,
        rgba(0,0,0,0.45) 70%,
        rgba(0,0,0,0.3) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    animation: heroFadeIn 1.2s var(--transition-smooth) forwards;
}

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

.hero-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.hero-tune {
    font-size: 80px;
    font-weight: 800;
    color: var(--purple);
    letter-spacing: 20px;
    line-height: 1;
    text-shadow: 2px 4px 12px rgba(0,0,0,0.4);
}

.hero-tube {
    font-size: 80px;
    font-weight: 900;
    color: rgba(255,255,255,0.85);
    letter-spacing: 20px;
    line-height: 1;
    margin-left: 30px;
    text-shadow: 2px 4px 12px rgba(0,0,0,0.4);
}

.hero-tagline {
    font-size: 22px;
    font-weight: 600;
    font-style: italic;
    letter-spacing: 2px;
    margin-bottom: 40px;
    text-shadow: 1px 2px 6px rgba(0,0,0,0.5);
}

.btn-contact {
    display: inline-block;
    padding: 18px 70px;
    background: var(--white);
    color: var(--black);
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 3px;
    border-radius: 40px;
    transition: all 0.4s var(--transition-smooth);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.btn-contact:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.4);
    background: var(--purple);
    color: var(--white);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

.scroll-mouse {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255,255,255,0.6);
    border-radius: 13px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-wheel {
    width: 4px;
    height: 10px;
    background: rgba(255,255,255,0.8);
    border-radius: 2px;
    animation: scrollWheelAnim 1.8s infinite;
}

@keyframes scrollWheelAnim {
    0% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(12px); }
}

/* === FOR LABELS SECTION === */
.for-labels-section {
    padding: 100px 0 60px;
    background: var(--white);
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.section-title {
    font-size: 56px;
    font-weight: 900;
    color: var(--black);
    line-height: 1.1;
    margin-bottom: 28px;
    letter-spacing: -1px;
}

.section-desc {
    font-size: 17px;
    color: #444;
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 500px;
}

.btn-purple {
    display: inline-block;
    padding: 16px 48px;
    background: var(--purple);
    color: var(--white);
    font-family: var(--font-main);
    font-size: 15px;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.4s var(--transition-smooth);
    box-shadow: 0 4px 20px var(--purple-glow);
}

.btn-purple:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(123, 66, 188, 0.55);
    background: var(--purple-dark);
}

/* Artist Grid - matching Wix collage layout */
.artist-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    gap: 12px;
}

.artist-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    transition: transform 0.4s ease;
}

.artist-card:hover {
    transform: scale(1.03);
}

.artist-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.artist-card-large {
    grid-row: span 1;
    height: 260px;
}

.artist-card-small {
    height: 260px;
}

.artist-card-medium {
    height: 220px;
}

.artist-card-dark {
    height: 220px;
}

.artist-card-promo {
    grid-column: span 2;
    height: 200px;
}

/* Spotify Embed */
.spotify-embed {
    max-width: 600px;
    margin: 40px auto 0;
    padding: 0 40px;
}

/* === FOR BRANDS SECTION === */
.for-brands-section {
    padding: 100px 0;
    background: var(--purple);
    position: relative;
    overflow: hidden;
}

.brands-container {
    align-items: start;
}

.brands-title {
    font-size: 56px;
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 28px;
    letter-spacing: -1px;
}

.brands-desc {
    font-size: 17px;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 500px;
}

.btn-white {
    display: inline-block;
    padding: 16px 48px;
    background: var(--white);
    color: var(--black);
    font-family: var(--font-main);
    font-size: 15px;
    font-weight: 600;
    border-radius: 30px;
    border: 2px solid var(--white);
    transition: all 0.4s var(--transition-smooth);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    background: transparent;
    color: var(--white);
}

/* Brands Grid - matching Wix collage layout */
.brands-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 12px;
}

.brand-photo {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    transition: transform 0.4s ease;
}

.brand-photo:hover {
    transform: scale(1.03) rotate(-1deg);
}

.brand-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brand-photo-1 {
    height: 220px;
    transform: rotate(-2deg);
}

.brand-photo-2 {
    height: 220px;
    transform: rotate(2deg);
}

.brand-photo-3 {
    height: 200px;
    transform: rotate(1deg);
}

.brand-photo-4 {
    height: 200px;
    transform: rotate(-1deg);
}

.brand-photo-5 {
    grid-column: span 2;
    height: 180px;
    transform: rotate(-1deg);
}

/* === WISHLIST / BRAND WALL SECTION === */
.wishlist-section {
    background: var(--purple);
    position: relative;
    overflow: hidden;
}

/* Brand Wall - tilted images matching Wix */
.brand-wall {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    padding: 60px 0 0;
    overflow: hidden;
    position: relative;
    min-height: 450px;
}

.brand-wall-item {
    flex-shrink: 0;
    overflow: hidden;
    box-shadow: 8px 8px 30px rgba(0,0,0,0.25);
    transition: transform 0.5s ease;
}

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

.brand-wall-item:hover {
    transform: scale(1.05) !important;
    z-index: 10;
}

.brand-wall-1 {
    width: 260px;
    height: 380px;
    transform: rotate(-6deg) translateY(20px);
    border-radius: 8px;
    margin-right: -20px;
    z-index: 1;
}

.brand-wall-2 {
    width: 260px;
    height: 340px;
    transform: rotate(-3deg) translateY(-10px);
    border-radius: 8px;
    margin-right: -20px;
    z-index: 2;
}

.brand-wall-3 {
    width: 260px;
    height: 400px;
    transform: rotate(0deg) translateY(10px);
    border-radius: 8px;
    margin-right: -20px;
    z-index: 3;
}

.brand-wall-4 {
    width: 280px;
    height: 380px;
    transform: rotate(3deg) translateY(-20px);
    border-radius: 8px;
    margin-right: -20px;
    z-index: 2;
}

.brand-wall-5 {
    width: 260px;
    height: 360px;
    transform: rotate(5deg) translateY(10px);
    border-radius: 8px;
    z-index: 1;
}

/* Wishlist Banner */
.wishlist-banner {
    background: var(--purple);
    padding: 50px 40px 80px;
    text-align: center;
}

.wishlist-content {
    max-width: 700px;
    margin: 0 auto;
    background: var(--purple-dark);
    border-radius: 12px;
    padding: 40px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.wishlist-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--white);
    line-height: 1.4;
    text-align: left;
}

.btn-submit-now {
    display: inline-block;
    padding: 14px 36px;
    background: transparent;
    color: var(--white);
    font-family: var(--font-main);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    border: 2px solid var(--white);
    border-radius: 30px;
    transition: all 0.4s var(--transition-smooth);
    white-space: nowrap;
    flex-shrink: 0;
}

.btn-submit-now:hover {
    background: var(--white);
    color: var(--purple-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

/* === FOOTER === */
.footer {
    background: var(--grey-dark);
    padding: 50px 40px;
    text-align: center;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 16px;
    line-height: 0.85;
}

.footer-tune {
    font-size: 32px;
    font-weight: 800;
    color: var(--purple);
    letter-spacing: 8px;
}

.footer-tube {
    font-size: 32px;
    font-weight: 900;
    color: var(--white);
    letter-spacing: 8px;
    margin-left: 14px;
}

.footer-copyright {
    font-size: 13px;
    color: var(--grey-text);
    margin-top: 8px;
}

/* === CHAT WIDGET === */
.chat-widget {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
}

.chat-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--purple);
    color: var(--white);
    border: none;
    border-radius: 30px;
    font-family: var(--font-main);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 20px var(--purple-glow);
    transition: all 0.3s ease;
}

.chat-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px var(--purple-glow);
}

/* === ANIMATIONS === */
[data-animate] {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s var(--transition-smooth);
}

[data-animate="fade-right"] {
    transform: translateX(-40px);
}

[data-animate="fade-left"] {
    transform: translateX(40px);
}

[data-animate="fade-up"] {
    transform: translateY(40px);
}

[data-animate="rotate-in"] {
    transform: rotate(10deg) scale(0.9);
    opacity: 0;
}

[data-animate].visible {
    opacity: 1;
    transform: translateX(0) translateY(0) rotate(0) scale(1);
}

/* Brand wall items are animated via JS observer - no data-animate needed */

/* === FOR LABELS PAGE === */
.labels-page-hero {
    position: relative;
    width: 100%;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 60px;
}

.labels-page-hero .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.labels-page-hero .hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.labels-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 80px 40px;
    max-width: 800px;
}

.labels-hero-title {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 40px;
    text-shadow: 2px 4px 12px rgba(0,0,0,0.4);
}

.btn-join {
    display: inline-block;
    padding: 18px 60px;
    background: var(--purple);
    color: var(--white);
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
    border-radius: 40px;
    transition: all 0.4s var(--transition-smooth);
    box-shadow: 0 4px 20px var(--purple-glow);
}

.btn-join:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(123, 66, 188, 0.55);
    background: var(--purple-dark);
}

/* Benefits Grid */
.benefits-section {
    padding: 80px 40px;
    background: var(--white);
}

.benefits-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.benefit-card {
    text-align: center;
    padding: 40px 24px;
    border-radius: 16px;
    background: #f8f5fc;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(123, 66, 188, 0.15);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: var(--purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon svg {
    width: 28px;
    height: 28px;
    fill: white;
}

.benefit-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--black);
}

.benefit-desc {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

/* === SUBMIT REQUEST PAGE === */
.submit-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 100px 40px;
}

.submit-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.submit-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.submit-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(45,27,78,0.92), rgba(123,66,188,0.85));
}

.submit-form-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 600px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 20px;
    padding: 48px;
}

.submit-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
}

.submit-subtitle {
    font-size: 16px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 36px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 10px;
    color: var(--white);
    font-family: var(--font-main);
    font-size: 15px;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255,255,255,0.4);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--purple-light);
    background: rgba(255,255,255,0.15);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-group select {
    appearance: none;
    cursor: pointer;
}

.form-group select option {
    background: var(--purple-deep);
    color: var(--white);
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: var(--purple);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.4s var(--transition-smooth);
    box-shadow: 0 4px 20px var(--purple-glow);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(123, 66, 188, 0.55);
    background: var(--purple-dark);
}

.form-success {
    display: none;
    text-align: center;
    color: var(--white);
}

.form-success h3 {
    font-size: 28px;
    margin-bottom: 12px;
}

.form-success p {
    font-size: 16px;
    color: rgba(255,255,255,0.8);
}

/* === RESPONSIVE === */
@media (max-width: 968px) {
    .section-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .section-title {
        font-size: 42px;
    }

    .brands-title {
        font-size: 42px;
    }

    .hero-tune, .hero-tube {
        font-size: 52px;
        letter-spacing: 12px;
    }

    .hero-tube {
        margin-left: 18px;
    }

    .hero-tagline {
        font-size: 18px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .brand-wall {
        min-height: 300px;
        padding: 30px 0 0;
    }

    .brand-wall-item {
        width: 160px !important;
        height: 220px !important;
    }

    .wishlist-content {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }

    .wishlist-title {
        text-align: center;
        font-size: 20px;
    }

    .artist-grid {
        gap: 8px;
    }

    .artist-card-large,
    .artist-card-small {
        height: 180px;
    }

    .artist-card-medium,
    .artist-card-dark {
        height: 160px;
    }

    .artist-card-promo {
        height: 140px;
    }

    .brands-grid {
        gap: 8px;
    }

    .brand-photo-1,
    .brand-photo-2 {
        height: 160px;
    }

    .brand-photo-3,
    .brand-photo-4 {
        height: 150px;
    }

    .brand-photo-5 {
        height: 130px;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav {
        display: none;
    }

    .header-inner {
        padding: 12px 24px;
    }

    .hero-tune, .hero-tube {
        font-size: 38px;
        letter-spacing: 10px;
    }

    .hero-tube {
        margin-left: 14px;
    }

    .hero-tagline {
        font-size: 15px;
    }

    .btn-contact {
        padding: 14px 50px;
        font-size: 14px;
    }

    .section-title {
        font-size: 36px;
    }

    .brands-title {
        font-size: 36px;
    }

    .section-desc,
    .brands-desc {
        font-size: 15px;
    }

    .spotify-embed {
        padding: 0 20px;
    }

    .brand-wall {
        min-height: 200px;
    }

    .brand-wall-item {
        width: 120px !important;
        height: 170px !important;
    }

    .labels-hero-title {
        font-size: 32px;
    }

    .submit-form-wrapper {
        padding: 32px 24px;
    }

    .submit-title {
        font-size: 28px;
    }

    .for-labels-section,
    .for-brands-section {
        padding: 60px 0;
    }

    .section-container {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .hero-tune, .hero-tube {
        font-size: 28px;
        letter-spacing: 6px;
    }

    .hero-tube {
        margin-left: 10px;
    }

    .hero-tagline {
        font-size: 13px;
        letter-spacing: 1px;
    }

    .btn-contact {
        padding: 12px 40px;
        font-size: 13px;
    }

    .section-title {
        font-size: 28px;
    }

    .brands-title {
        font-size: 28px;
    }

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

    .artist-card-promo {
        grid-column: span 1;
    }

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

    .brand-photo-5 {
        grid-column: span 1;
    }

    .brand-wall-item {
        width: 90px !important;
        height: 130px !important;
    }

    .brand-wall {
        min-height: 160px;
    }

    .footer-tune, .footer-tube {
        font-size: 24px;
    }

    .wishlist-title {
        font-size: 18px;
    }
}
