/*
Theme Name: Single Page Artist
Description: Premium single-page artist site
Version: 2.0
*/

/* -----------------------
   RESET & BASE
------------------------ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    scroll-behavior: smooth;
    background: #fff;
}

/* -----------------------
   HEADER
------------------------ */
#site-header {
    position: fixed;
    top: 10;
    width: 100%;
    padding: 14px 30px;
    z-index: 1000;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

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

/* -----------------------
   LOGO (CLEAN & PREMIUM)
------------------------ */
.text-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

/* Left word */
.logo-zh {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    letter-spacing: 0.5px;
    color: #fff;
}

/* Elegant separator (not text) */
.logo-zh::after {
    content: "";
    display: inline-block;
    height: 22px;
    width: 1px;
    background: rgba(255, 255, 255, 0.35);
    margin-left: 14px;
}

/* Right word */
.logo-vago {
    font-family: 'Pacifico', cursive;
    /* font-family: 'verdana', cursive; */
    font-size: 1.6rem;
    color: #ffb347;
    line-height: 1;
}

/* Subtle hover (no scaling chaos) */
.text-logo:hover {
    opacity: 0.9;
}

/* -----------------------
   NAVIGATION
------------------------ */
#main-nav ul {
    list-style: none;
    display: flex;
    gap: 26px;
}

#main-nav ul li a {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
    position: relative;
    padding-bottom: 4px;
    transition: color 0.3s ease;
}

#main-nav ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    background: #ffb347;
    transition: width 0.3s ease;
}

#main-nav ul li a:hover {
    color: #ffb347;
}

#main-nav ul li a:hover::after {
    width: 100%;
}

/* -----------------------
   SECTIONS (GLOBAL)
------------------------ */
section {
    padding: 120px 20px;
    min-height: 100vh;
    text-align: center;
}

/* -----------------------
   HERO
------------------------ */
#hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    color: #ffb347;
}

#hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5));
}

#hero > * {
    position: relative;
    z-index: 1;
}

#hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    letter-spacing: 4px;
    margin-bottom: 20px;
}

#hero p {
    font-size: 1.3rem;
    max-width: 720px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Buttons */
.hero-actions {
    margin-top: 40px;
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    font-family: 'Poppins', sans-serif;
    padding: 14px 36px;
    border-radius: 999px;
    font-weight: 600;
    letter-spacing: 1px;
    text-decoration: none;
    transition: transform 0.25s ease, background 0.25s ease;
}

.btn.primary {
    background: #ffb347;
    color: #111;
}

.btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(89, 95, 5, 0.801);
}

.btn.ghost {
    border: 2px solid #ffb347;
    color: #ffb347;
    background: transparent;
}

.btn.ghost:hover {
    background: #ffb347;
    color: #111;
}

/* -----------------------
   ABOUT SECTION
------------------------ */
#about {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: 120px 20px;
    text-align: center;
    color: #fff;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Gradient overlay for better readability */
#about .about-overlay {
    background: linear-gradient(rgba(0,0,0,0.9), rgba(0,0,0,0.9));
    padding: 60px 20px;
    border-radius: 20px;
    max-width: 900px;
    width: 100%;
}

/* Portrait image */
.about-portrait-wrap {
    display: inline-block;
    margin-bottom: 30px;
    padding: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
}

.about-portrait-wrap .portrait {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-portrait-wrap:hover .portrait {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.35);
}

#about h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2rem, 5vw, 2.6rem);
    margin-bottom: 20px;
    color: #ffb347;
}

#about p {
    /* font-family: 'verdana', cursive; */
    font-family: 'Pacifico', cursive;
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* -----------------------
   MUSIC SECTION
------------------------ */
#music {
    position: relative;
    background: url('YOUR_IMAGE_URL_HERE') center/cover no-repeat;
    color: #fff;
    padding: 120px 20px;
    text-align: center;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

#music::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 0;
}

.music-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    z-index: 1;
}

#music h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2rem, 5vw, 2.6rem);
    margin-bottom: 35px;
}

#music ul,
#more-music {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 0 auto;
    padding: 0;
}

#music li.music-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    padding: 18px;
    border-radius: 14px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#music li.music-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.35);
}

#music li img {
    width: 90px;
    height: 90px;
    border-radius: 12px;
    object-fit: cover;
    flex-shrink: 0;
}

#music li h3 {
    flex: 1;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    text-align: left;
    margin-bottom: 10px;
    line-height: 1.4;
}

.music-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-left: 10px;
    flex-shrink: 0;
}

.music-links a {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s ease;
}

.music-links a:hover i.fab.fa-youtube {
    color: #FF0000;
}

.music-links a:hover i.fab.fa-bandcamp {
    color: #629AA9;
}

.music-links a:hover i.fab.fa-tiktok {
    color: #000;
}

.music-links a:hover {
    background: rgba(255,255,255,0.2);
    transform: scale(1.1);
}

#show-more-music {
    margin: 40px auto 0;
    padding: 12px 32px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    background: #ffb347;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

#show-more-music:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 12px 25px rgba(89, 95, 5, 0.801);
}

#more-music {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.6s ease, opacity 0.4s ease;
}

#more-music.is-open {
    max-height: 3000px;
    opacity: 1;
    margin-top: 25px;
}

/* -----------------------
   LICENSING & COLLABORATION
------------------------ */
#licensing {
    position: relative;
    background: url('YOUR_IMAGE_URL_HERE') center/cover no-repeat;
    background-size: cover;
    color: #fff;
    text-align: center;
    padding: 100px 20px;
    overflow: hidden;
}

#licensing::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.9));
    z-index: 0;
}

#licensing .licensing-overlay {
    position: relative;
    z-index: 1;
}

#licensing h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2rem, 5vw, 2.8rem);
    margin-bottom: 20px;
}

#licensing p {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 35px;
    color: #ddd;
}

#licensing .btn.primary {
    display: inline-block;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
    background: #ffb347;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

#licensing .btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(255, 179, 71, 0.7);
}

#licensing .licensing-social {
    margin-top: 60px;
}

#licensing .licensing-social h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
    color: #fff;
}

#licensing .social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

#licensing .social-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    transition: all 0.3s ease;
    background: rgba(255,255,255,0.1);
}

#licensing .social-icon.youtube:hover { 
    background: #ff0000; 
    transform: translateY(-4px) scale(1.1);
}

#licensing .social-icon.instagram:hover { 
    background: linear-gradient(45deg, #feda75, #d62976, #962fbf, #4f5bd5); 
    transform: translateY(-4px) scale(1.1);
}

#licensing .social-icon.twitter:hover { 
    background: #1da1f2; 
    transform: translateY(-4px) scale(1.1);
}

#licensing .social-icon.bandcamp:hover { 
    background: #629aa9; 
    transform: translateY(-4px) scale(1.1);
}

#licensing .social-icon.facebook:hover { 
    background: #1877f2; 
    transform: translateY(-4px) scale(1.1);
}

#licensing .social-icon.tiktok:hover { 
    background: linear-gradient(135deg, #69C9D0, #EE1D52); 
    transform: translateY(-4px) scale(1.1);
}

#licensing .social-icon i {
    font-size: 1.5rem;
}

/* -----------------------
   FOOTER
------------------------ */
footer {
    background: #111;
    color: #fff;
    padding: 25px 20px;
    text-align: center;
    font-size: 0.9rem;
}

/* -----------------------
   MOBILE & RESPONSIVE
------------------------ */
@media (max-width: 992px) {
    section {
        padding: 100px 15px;
    }

    #hero h1 {
        font-size: clamp(2rem, 7vw, 3.5rem);
    }

    #hero p {
        font-size: 1.1rem;
        max-width: 90%;
    }

    #about h2 {
        font-size: clamp(1.8rem, 6vw, 2.4rem);
    }

    #about p {
        font-size: 1rem;
    }

    #music h2,
    #licensing h2 {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }

    #licensing p {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    #site-header .container {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    #main-nav ul {
        flex-direction: column;
        gap: 14px;
    }

    #music ul,
    #more-music {
        grid-template-columns: 1fr;
    }

    #about .about-portrait-wrap .portrait {
        width: 140px;
        height: 140px;
    }

    .about-portrait-wrap {
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    #site-header {
        padding: 12px 20px;
    }

    #main-nav ul li a {
        font-size: 0.8rem;
        letter-spacing: 1px;
    }

    #hero {
        padding: 80px 15px;
    }

    .hero-actions {
        flex-direction: column;
        gap: 16px;
    }

    #about .about-overlay {
        padding: 40px 15px;
        border-radius: 15px;
    }

    #about .about-portrait-wrap .portrait {
        width: 120px;
        height: 120px;
    }

    #music li.music-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
        padding: 12px;
    }

    #music li img {
        width: 100px;
        height: 100px;
    }

    .music-links {
        flex-direction: row;
        margin-top: 8px;
        gap: 10px;
        justify-content: center;
    }

    .music-links a {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }

    #show-more-music {
        padding: 10px 28px;
        font-size: 0.9rem;
    }

    #licensing .btn.primary {
        padding: 10px 28px;
        font-size: 1rem;
    }

    /* -----------------------
   MOBILE NAV TOGGLE
------------------------ */
#nav-toggle {
    display: none; /* already in your CSS, keeps hidden on desktop */
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 22px;
    cursor: pointer;
    z-index: 1001; /* above nav */
}

#nav-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background: #fff;
    border-radius: 3px;
    transition: all 0.3s ease;
}

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

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

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

/* Show nav when toggle active (small screens) */
@media (max-width: 768px) {
    #main-nav {
        display: none; /* hidden by default */
    }

    #main-nav.active {
        display: block;
        margin-top: 12px;
    }

    #nav-toggle {
        display: flex; /* visible on mobile */
    }
}

/*-----------------------------------------------------------------------
### MAIN PAGE ###
------------------------------------------------------------------------*/

#artists {
    padding: 100px 20px;
    text-align: center;
    background: #f4f4f4;
}

#artists h2 {
    font-size: 2.8rem;
    margin-bottom: 40px;
}

.artists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.artist-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.artist-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

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

.artist-card h3 {
    margin: 15px 0;
    font-size: 1.4rem;
    color: #111;
}
