@import url('https://fonts.googleapis.com/css2?family=Mina:wght@400;700&family=Sedgwick+Ave&family=Sedgwick+Ave+Display&display=block');

* {
    box-sizing: border-box;
}

body,
html {
    margin: 0;
    padding: 0;
    font-family: "Mina", sans-serif;
    color: white;
    background: black;
    scrollbar-color: #3700ce #020106;
    scrollbar-width: thin;
    overflow-x: hidden;
    max-width: 100vw;
}

html {
    height: 100%;
    overflow: hidden;
}

body {
    height: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

/* Main content wrapper to push footer down */
.header-container~* {
    flex: 1 0 auto;
}

a {
    color: white;
    text-decoration: none;
}

.sedgwick-ave-display-regular {
    font-family: "Sedgwick Ave Display", cursive;
    font-weight: 400;
    font-style: normal;
}

.sedgwick-ave-regular {
    font-family: "Sedgwick Ave", cursive;
    font-weight: 400;
    font-style: normal;
}

.mina-regular {
    font-family: "Mina", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.mina-bold {
    font-family: "Mina", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.header-logo img,
.nav-menu a,
.section .header {
    font-family: 'Sedgwick Ave Display', cursive;
}

.header-logo img:hover,
.header-logo img:focus {
    box-shadow: 0 0 20px #0A031C;
    transform: scale(1.1);
}

.header-logo img {
    height: 100px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 10px #0A031C);
    margin: 10px;
    margin-bottom: 0;
    animation: logoFadeIn 0.8s ease-out 0.2s backwards;
}

.header-logo img:hover,
.header-logo img:active {
    filter: drop-shadow(0 0 20px #0A031C);
}

.header-logo img:active {
    box-shadow: 0 0 30px #0A031C;
}

/* Header and Menu */
.header-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10, 3, 28, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0.5rem 2rem;
    box-sizing: border-box;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.header-container.scrolled {
    background: rgba(10, 3, 28, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3), 0 0 30px rgba(79, 0, 209, 0.2);
    padding: 0.3rem 2rem;
}

.header-container.scrolled .header-logo img {
    height: 70px;
    transform: scale(0.9);
}

.header-container.hidden {
    transform: translateY(-100%);
}

.header-logo {
    font-size: 1.5em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
}

.nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    font-size: 1.1em;
    padding: 0.75rem 1.5rem;
    position: relative;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    display: inline-block;
    border-radius: 8px;
    background: transparent;
    animation: navItemFadeIn 0.6s ease-out backwards;
}

.nav-menu li:nth-child(1) a { animation-delay: 0.1s; }
.nav-menu li:nth-child(2) a { animation-delay: 0.2s; }
.nav-menu li:nth-child(3) a { animation-delay: 0.3s; }

.nav-menu a::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 8px;
    padding: 2px;
    background: linear-gradient(135deg, #4f00d1, #00c3e7);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #4f00d1, #00c3e7);
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(79, 0, 209, 0.5);
}

.nav-menu a:hover {
    color: #00c3e7;
    text-shadow: 0 0 10px rgba(0, 195, 231, 0.5);
    transform: translateY(-2px);
}

.nav-menu a:hover::before {
    opacity: 1;
}

.nav-menu a:hover::after {
    width: 70%;
}

/* Mobile Menu Button */
/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
    position: relative;
}

.mobile-menu-btn span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: white;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Mobile Menu Active State (Hamburger Animation) */
.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Mobile Menu Styles */
@media screen and (max-width: 768px) {

    /* Prevent horizontal scroll */
    body {
        overflow-x: hidden;
    }

    .header-container {
        padding: 0.5rem 1.5rem;
    }

    .header-container.scrolled {
        padding: 0.3rem 1.5rem;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 100vw;
        height: 100vh;
        background: linear-gradient(135deg, rgba(10, 3, 28, 0.98), rgba(0, 0, 0, 0.98));
        backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 1000;
        padding: 0;
        margin: 0;
        overflow-y: auto;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu a {
        font-size: 2em;
        margin: 1.5rem 0;
        padding: 0.5rem 2rem;
        width: 100%;
        text-align: center;
        position: relative;
        transition: all 0.3s ease;
    }

    .nav-menu a::before {
        display: none;
    }

    .nav-menu a::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%) scaleX(0);
        width: 80%;
        height: 2px;
        background: linear-gradient(90deg, transparent, #00c3e7, transparent);
        transition: transform 0.3s ease;
    }

    .nav-menu a:hover::after {
        transform: translateX(-50%) scaleX(1);
    }

    .nav-menu a:hover {
        color: #00c3e7;
        text-shadow: 0 0 20px rgba(0, 195, 231, 0.5);
        transform: none;
    }
}

/* Top Fold Section */
.top-fold {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)), url(images/bg/king-bg.jpg) no-repeat center center fixed;
    background-size: cover;
    height: 100vh;
    display: flex;
    position: relative;
    background-position-y: top;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.top-fold::after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to bottom, transparent, #000);
}

.top-fold .content {
    text-align: center;
    z-index: 2;
    max-width: 1200px;
    padding: 2rem;
}

.top-fold .header {
    font-family: 'Sedgwick Ave Display', cursive;
    font-size: 6em;
    margin: 0;
    background: linear-gradient(to right, #fee737, #fde000, #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(253, 224, 0, 0.3);
    animation: fadeInUp 1s ease-out;
    line-height: 1.1;
}

.top-fold .description {
    font-family: 'Mina', sans-serif;
    font-size: 1.8em;
    color: #e0e0e0;
    margin: 1rem 0 2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    animation: fadeInUp 1s ease-out 0.3s backwards;
    font-weight: 300;
    letter-spacing: 1px;
}

.top-fold .hero-text {
    font-family: 'Sedgwick Ave', cursive;
    font-size: 2.5em;
    margin-bottom: 2rem;
    color: #fff;
    text-shadow: 0 0 20px rgba(79, 0, 209, 0.8);
    animation: fadeInUp 1s ease-out 0.6s backwards;
}

/* Neon CTA Button */
.top-fold .button {
    font-size: 1.2em;
    padding: 15px 40px;
    background: transparent;
    border: 2px solid #00c3e7;
    color: #00c3e7;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: bold;
    box-shadow: 0 0 10px rgba(0, 195, 231, 0.3), inset 0 0 10px rgba(0, 195, 231, 0.3);
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease-out 0.9s backwards;
    margin-top: 20px;
}

.top-fold .button:hover {
    background: #00c3e7;
    color: #000;
    box-shadow: 0 0 30px rgba(0, 195, 231, 0.8), inset 0 0 20px rgba(0, 195, 231, 0.8);
    transform: translateY(-3px);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes headerSlideDown {
    from {
        opacity: 0;
        transform: translateY(-100%);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes navItemFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes logoFadeIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.main-site {
    background: linear-gradient(#0A031C, black);
    background-size: cover;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    background-position-y: top;
}

/* Parallax Sections */
.parallax {
    height: 250px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.parallax-1 {
    background-image: url('images/bg/knight-royalty-city.jpg');
}

.parallax-2 {
    background-image: url('images/bg/royalty-knight.jpg');
}

.parallax-3 {
    background-image: url('images/bg/top-fold-bg.jpg');
}

/* General Section Styles */
.section {
    padding: 0;
    background: linear-gradient(black, #0A031C);
}

.section .content {
    padding: 20px;
    text-align: center;
    background: linear-gradient(black, #0A031C);
    backdrop-filter: blur(10px);
    margin: 2em 0;
}

.section .header {
    font-size: 2.5em;
    margin: 20px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7), -1px -1px 17px #4a02ffe6;
}

.section .description {
    font-size: 1.5em;
    margin-bottom: 2em;
    text-shadow: -1px -1px 17px #4a02ffe6;
}

/* Artists Section */
.artists {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.artist-profile {
    margin: 20px;
    text-align: center;
}

.artist-profile img,
.artist-profile-main img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s;
}

.artist-profile img:hover,
.artist-profile-main img:hover {
    transform: scale(1.1);
}

.artist-profile .name,
.artist-profile-main .name {
    font-size: 2em;
    margin-top: 10px;
    text-shadow: -1px -1px 17px #4a02ffe6;
    font-weight: bold;
    letter-spacing: 0.3em;
}

.artist-profile .bio {
    font-size: 1.2em;
    max-width: 22em;
    text-align: left;
    margin: 1em 0;
    color: #e4e6ff;
    line-height: 1.4em;
    text-shadow: -1px -1px 17px #4a02ffe6;
}

.artist-profile-main .bio {
    font-size: 1.2em;
    max-width: 51em;
    text-align: left;
    margin: 1em 0;
    color: #e4e6ff;
    line-height: 1.4em;
    text-shadow: -1px -1px 17px #4a02ffe6;
}

.artist-profile-main .bio p {
    line-height: 2.2em;
}

/* Newsletter Section */
/* Join the Movement Section */
.join-movement {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, rgba(10, 3, 28, 0.95), rgba(0, 0, 0, 0.95));
    backdrop-filter: blur(10px);
}

.join-content {
    max-width: 900px;
    margin: 0 auto;
}

.join-description {
    font-size: 1.2em;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin: 2rem auto;
    max-width: 700px;
}

.join-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Sedgwick Ave Display', cursive;
    font-size: 4em;
    background: linear-gradient(135deg, #00c3e7, #4f00d1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1em;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media screen and (max-width: 768px) {
    .join-stats {
        gap: 2rem;
    }

    .stat-number {
        font-size: 3em;
    }
}

/* Footer */
.footer {
    background: linear-gradient(to top, rgba(10, 3, 28, 0.95), rgba(10, 3, 28, 0.8));
    backdrop-filter: blur(10px);
    text-align: center;
    padding: 0.25rem 0.5rem;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    flex-shrink: 0;
    min-height: 35px;
}

/* Desktop footer - even more compact */
@media screen and (min-width: 769px) {
    .footer {
        min-height: 30px;
        padding: 0.2rem 0.5rem;
    }
}

.footer p {
    margin: 0;
    font-size: 0.75em;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.5px;
    line-height: 1;
}

.footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #00c3e7;
}

.footer .up-arrow {
    position: absolute;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
    font-size: 1.2em;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .up-arrow:hover {
    color: #00c3e7;
    border-color: #00c3e7;
    box-shadow: 0 0 15px rgba(0, 195, 231, 0.3);
    transform: translateY(-50%) translateY(-3px);
}

/* Glowing Dark Indigo Buttons */
.button {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1em;
    color: white;
    background-color: darkindigo;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    transition: background-color 0.3s, transform 0.3s;
}

.button:hover {
    background-color: darkslateblue;
    transform: scale(1.1);
}

/* CTA Button - Hero Style */
.cta-button {
    font-size: 1.2em;
    padding: 15px 40px;
    background: transparent;
    border: 2px solid #00c3e7;
    color: #00c3e7;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: bold;
    box-shadow: 0 0 10px rgba(0, 195, 231, 0.3), inset 0 0 10px rgba(0, 195, 231, 0.3);
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #00c3e7;
    color: #000;
    box-shadow: 0 0 30px rgba(0, 195, 231, 0.8), inset 0 0 20px rgba(0, 195, 231, 0.8);
    transform: translateY(-3px) scale(1);
}

/* Responsive CSS */

@media screen and (max-width: 768px) {
    .header-logo img {
        height: 60px;
    }

    .nav-menu {
        flex-direction: column;
        align-items: center;
    }

    .nav-menu a {
        font-size: 1.1em;
        padding: 8px 15px;
    }

    .top-fold .header {
        font-size: 2.5em;
    }

    .top-fold .description,
    .top-fold .hero-text {
        font-size: 1.2em;
    }

    .artist-profile-main .bio p {
        line-height: 2em;
        font-size: 1.1em;
    }

    .music iframe {
        width: 90%;
        height: 300px;
    }
}

/* Music Hero Section */
.music-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)), url('/images/bg/top-fold-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.music-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(79, 0, 209, 0.2), transparent 70%);
    pointer-events: none;
}

.music-hero-content {
    text-align: center;
    z-index: 1;
    animation: fadeInUp 1s ease-out;
}

.music-hero-title {
    font-family: 'Sedgwick Ave Display', cursive;
    font-size: 5em;
    margin: 0 0 1rem 0;
    background: linear-gradient(135deg, #fff, #00c3e7, #4f00d1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 20px rgba(0, 195, 231, 0.3);
    animation: fadeInUp 1s ease-out 0.2s both;
}

.music-hero-subtitle {
    font-size: 1.8em;
    color: #ccc;
    margin: 0;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 300;
    animation: fadeInUp 1s ease-out 0.4s both;
}

@media screen and (max-width: 768px) {
    .music-hero {
        min-height: 50vh;
    }

    .music-hero-title {
        font-size: 3em;
    }

    .music-hero-subtitle {
        font-size: 1.2em;
    }
}

/* Music Page Redesign */
.music-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.youtube-video-container {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.youtube-video-container:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(79, 0, 209, 0.4);
    border-color: rgba(79, 0, 209, 0.5);
    background: rgba(255, 255, 255, 0.08);
}

.youtube-video-container iframe {
    border-radius: 12px;
    width: 100%;
    aspect-ratio: 16/9;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.video-title {
    font-family: 'Sedgwick Ave Display', cursive;
    font-size: 1.4em;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    margin: 0;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media screen and (max-width: 480px) {
    .header-logo img {
        height: 100px;
        margin-left: 1em;
    }

    .header-logo {
        font-size: 1.2em;
    }

    .nav-menu a {
        font-size: 1em;
        padding: 6px 10px;
    }

    .top-fold .header {
        font-size: 2.3em;
    }

    .top-fold .description {
        font-size: 1.4em;
    }

    .top-fold .hero-text {
        font-size: 1.6em;
    }

    .artist-profile img,
    .artist-profile-main img {
        width: 150px;
        height: 150px;
    }

    .artist-profile .name,
    .artist-profile-main .name {
        font-size: 1.5em;
    }

    .artist-profile .bio,
    .artist-profile-main .bio {
        font-size: 1em;
    }

    .artist-profile-main .bio p {
        line-height: 1.8em;
        font-size: 0.9em;
        margin-bottom: 5px;
    }

    .music iframe {
        width: 95%;
        margin-top: 20px;
    }
}

/* Section Title */
.section-title {
    font-family: 'Sedgwick Ave Display', cursive;
    font-size: 4em;
    margin: 0;
    padding-top: 3rem;
    margin-bottom: 1rem;
    text-align: center;
    background: linear-gradient(to right, #fff, #aaa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

/* Featured Artists Section */
.featured-artists {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    padding: 1rem 2rem 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.artist-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    width: 300px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.artist-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.03), transparent);
    transform: translateX(-100%);
    transition: 0.5s;
}

.artist-card:hover::before {
    transform: translateX(100%);
}

.artist-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(79, 0, 209, 0.3);
}

.artist-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
}

.artist-card:hover img {
    border-color: #00c3e7;
    box-shadow: 0 0 20px rgba(0, 195, 231, 0.3);
}

.artist-card h3 {
    font-family: 'Sedgwick Ave Display', cursive;
    font-size: 1.8em;
    margin: 0 0 0.5rem 0;
    color: #fff;
}

.artist-card p {
    font-size: 1em;
    color: #aaa;
    line-height: 1.6;
}

/* Responsive Adjustments for Artists */
@media screen and (max-width: 768px) {
    .featured-artists {
        gap: 2rem;
    }

    .artist-card {
        width: 100%;
        max-width: 350px;
    }
}

/* Contact Page Redesign */
.contact-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.contact-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    font-size: 1.2em;
    font-weight: bold;
    text-decoration: none;
    color: #fff;
    border: 2px solid #4f00d1;
    border-radius: 50px;
    background: transparent;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(79, 0, 209, 0.3);
}

.contact-button:hover {
    background: #4f00d1;
    box-shadow: 0 0 40px rgba(79, 0, 209, 0.6), 0 0 80px rgba(79, 0, 209, 0.4);

    .top-fold .description {
        font-size: 1.4em;
    }

    .top-fold .hero-text {
        font-size: 1.6em;
    }

    .artist-profile img,
    .artist-profile-main img {
        width: 150px;
        height: 150px;
    }

    .artist-profile .name,
    .artist-profile-main .name {
        font-size: 1.5em;
    }

    .artist-profile .bio,
    .artist-profile-main .bio {
        font-size: 1em;
    }

    .artist-profile-main .bio p {
        line-height: 1.8em;
        font-size: 0.9em;
        margin-bottom: 5px;
    }

    .music iframe {
        width: 95%;
        margin-top: 20px;
    }
}

/* Section Title */
.section-title {
    font-family: 'Sedgwick Ave Display', cursive;
    font-size: 4em;
    margin: 0;
    padding-top: 3rem;
    margin-bottom: 1rem;
    text-align: center;
    background: linear-gradient(to right, #fff, #aaa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

/* Featured Artists Section */
.featured-artists {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    padding: 1rem 2rem 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.artist-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    width: 300px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.artist-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.03), transparent);
    transform: translateX(-100%);
    transition: 0.5s;
}

.artist-card:hover::before {
    transform: translateX(100%);
}

.artist-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(79, 0, 209, 0.3);
}

.artist-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
}

.artist-card:hover img {
    border-color: #00c3e7;
    box-shadow: 0 0 20px rgba(0, 195, 231, 0.3);
}

.artist-card h3 {
    font-family: 'Sedgwick Ave Display', cursive;
    font-size: 1.8em;
    margin: 0 0 0.5rem 0;
    color: #fff;
}

.artist-card p {
    font-size: 1em;
    color: #aaa;
    line-height: 1.6;
}

/* Responsive Adjustments for Artists */
@media screen and (max-width: 768px) {
    .featured-artists {
        gap: 2rem;
    }

    .artist-card {
        width: 100%;
        max-width: 350px;
    }
}

/* Contact Page Redesign */
.contact-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.contact-card {
    background: rgba(0, 0, 0, 0.15);
    z-index: 1;
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 4rem;
    text-align: center;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    animation: float 6s ease-in-out infinite;
}

.contact-card h2 {
    font-family: 'Sedgwick Ave Display', cursive;
    font-size: 3em;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #fff, #aaa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-card p {
    font-size: 1.2em;
    color: #ccc;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.contact-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    font-size: 1.2em;
    font-weight: bold;
    text-decoration: none;
    color: #fff;
    border: 2px solid #4f00d1;
    border-radius: 50px;
    background: transparent;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(79, 0, 209, 0.3);
}

.contact-button:hover {
    background: #4f00d1;
    box-shadow: 0 0 40px rgba(79, 0, 209, 0.6), 0 0 80px rgba(79, 0, 209, 0.4);
    transform: translateY(-2px);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* 3D Visualizer Canvas */
canvas {
    display: block;
    position: fixed;

    .artist-profile-main .bio p {
        line-height: 1.8em;
        font-size: 0.9em;
        margin-bottom: 5px;
    }

    .music iframe {
        width: 95%;
        margin-top: 20px;
    }
}

/* Section Title */
.section-title {
    font-family: 'Sedgwick Ave Display', cursive;
    font-size: 4em;
    margin: 0;
    padding-top: 3rem;
    margin-bottom: 1rem;
    text-align: center;
    background: linear-gradient(to right, #fff, #aaa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

/* Featured Artists Section */
.featured-artists {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    padding: 1rem 2rem 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.artist-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    width: 300px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.artist-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.03), transparent);
    transform: translateX(-100%);
    transition: 0.5s;
}

.artist-card:hover::before {
    transform: translateX(100%);
}

.artist-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(79, 0, 209, 0.3);
}

.artist-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
}

.artist-card:hover img {
    border-color: #00c3e7;
    box-shadow: 0 0 20px rgba(0, 195, 231, 0.3);
}

.artist-card h3 {
    font-family: 'Sedgwick Ave Display', cursive;
    font-size: 1.8em;
    margin: 0 0 0.5rem 0;
    color: #fff;
}

.artist-card p {
    font-size: 1em;
    color: #aaa;
    line-height: 1.6;
}

/* Responsive Adjustments for Artists */
@media screen and (max-width: 768px) {
    .featured-artists {
        gap: 2rem;
    }

    .artist-card {
        width: 100%;
        max-width: 350px;
    }
}

/* Contact Page Redesign */
.contact-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.contact-card {
    background: rgba(0, 0, 0, 0.15);
    z-index: 1;
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 4rem;
    text-align: center;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    animation: float 6s ease-in-out infinite;
}

.contact-card h2 {
    font-family: 'Sedgwick Ave Display', cursive;
    font-size: 3em;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #fff, #aaa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-card p {
    font-size: 1.2em;
    color: #ccc;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.contact-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    font-size: 1.2em;
    font-weight: bold;
    text-decoration: none;
    color: #fff;
    border: 2px solid #4f00d1;
    border-radius: 50px;
    background: transparent;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(79, 0, 209, 0.3);
}

.contact-button:hover {
    background: #4f00d1;
    box-shadow: 0 0 40px rgba(79, 0, 209, 0.6), 0 0 80px rgba(79, 0, 209, 0.4);
    transform: translateY(-2px);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* 3D Visualizer Canvas */
canvas {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
}

/* Artists Page Background */
.artists-page {
    position: relative;
    overflow: hidden;
}

.artists-page .content {
    position: relative;
    z-index: 1;
}

/* Artists Page Animations */
.artists-page .header.animate-fade-in {
    animation: fadeInUp 1s ease-out 0.2s both;
}

.artists-page .description.animate-fade-in {
    animation: fadeInUp 1s ease-out 0.4s both;
}

.artists-page .artists.animate-fade-in {
    animation: fadeInUp 1s ease-out 0.6s both;
}

/* Contact Page Animations */
.contact-card h2.animate-fade-in {
    animation: fadeInUp 1s ease-out 0.2s both;
}

.contact-card p.animate-fade-in {
    animation: fadeInUp 1s ease-out 0.4s both;
}

.contact-card .contact-button.animate-fade-in {
    animation: fadeInUp 1s ease-out 0.6s both;
}
