:root {
    --bg-color: #0A0A0A;
    --text-color: #FFFFFF;
    --font-heading: 'Bebas Neue', sans-serif;
    --font-body: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    line-height: 1.6;
}

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background-color: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: background-color 0.3s;
}

.logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    letter-spacing: 2px;
    user-select: none;
    cursor: pointer;;

    width: auto;
    height: 3.5rem;

    text-decoration: none;
    color: inherit;
}

.main-nav ul {
    list-style: none;
    display: flex;
}

.main-nav ul li {
    margin-left: 2rem;
}

.main-nav ul li a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.main-nav ul li a:hover {
    color: #a0a0a0;
}

.hamburger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.hamburger-menu span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--text-color);
    margin: 5px 0;
    transition: all 0.3s ease;
}

.hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    width: 110%;
    height: 100%;
    z-index: 1;
}

.hero-video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    animation: fadeIn 1.5s ease-in-out;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(4rem, 12vw, 10rem);
    letter-spacing: 5px;
    margin: 0;
}

.hero .slogan {
    font-size: clamp(1rem, 4vw, 1.8rem);
    margin-bottom: 2rem;
    font-weight: 400;
}

.cta-button {
    display: inline-block;
    background: transparent;
    border: 2px solid var(--text-color);
    color: var(--text-color);
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    letter-spacing: 2px;
    transition: background-color 0.3s, color 0.3s;
}

.cta-button:hover {
    background-color: var(--text-color);
    color: var(--bg-color);
}

.content-section {
    padding: 6rem 5%;
    max-width: 1200px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    
    border-top: 1px solid #222; 
}

.content-section.visible {
    opacity: 1;
    transform: translateY(0);
}

#artists {
    border-top: none;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    letter-spacing: 3px;
}

.artist-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 11rem;
}

.artist-grid > div {
    flex: 0 0 calc(33.333% - 1rem);
    box-sizing: border-box;
}

.artist-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    color: var(--text-color);
    transition: transform 0.3s ease;
}

.artist-card:hover {
    transform: scale(1.05);
}

.artist-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 3px solid #222222;
    transition: border-color 0.3s ease;
}

.artist-card:hover img {
    border-color: var(--text-color);
}

.artist-card h3 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin: 0;
}

.release-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.release-grid > div {
    flex: 0 0 calc(33.333% - 1rem);
    box-sizing: border-box;
}

.release-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    margin-bottom: 1rem;
    transition: filter 0.3s;
}

.release-card {
    text-align: center;
}

.release-card img {
    width: 50%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    margin-bottom: 1rem;
    transition: filter 0.3s;
}

.release-card:hover img {
    filter: brightness(0.8);
    cursor: pointer;
}

.release-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
}

.release-card p {
    font-size: 0.9rem;
    color: #aaa;
    margin-bottom: 1rem;
}

.play-button {
    background: var(--bg-color);
    border: 1px solid var(--text-color);
    color: var(--text-color);
    padding: 0.5rem 1.5rem;
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 700;
    transition: background-color 0.3s, color 0.3s;
}

.play-button:hover {
    background-color: var(--text-color);
    color: var(--bg-color);
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 1rem;
}

.media-item {
    position: relative;
    cursor: pointer;
}

.media-item img {
    width: 100%;
    display: block;
}

.media-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    color: var(--text-color);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 4rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.media-item:hover .media-overlay {
    opacity: 1;
}


/* CONTACT */
.contact-container {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact-container p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.email-link {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--text-color);
    text-decoration: none;
    display: inline-block;
    margin-bottom: 3rem;
    transition: color 0.3s;
}

.email-link:hover {
    color: #ccc;
}

.social-links-contact a {
    color: #aaa;
    text-decoration: none;
    margin: 0 1rem;
    font-weight: 700;
    transition: color 0.3s;
}

.social-links-contact a:hover {
    color: var(--text-color);
}

.main-footer-bottom {
    padding: 2rem 5%;
    border-top: 1px solid #222;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: #aaa;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: #777;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    margin-left: 1.5rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--text-color);
}

@media (max-width: 768px) {
    .main-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--bg-color);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translateX(100%);
        transition: transform 0.4s ease-in-out;
    }

    .main-nav.active {
        transform: translateX(0);
    }
    
    .main-nav ul {
        flex-direction: column;
        text-align: center;
    }

    .main-nav ul li {
        margin: 1.5rem 0;
    }
    
    .main-nav ul li a {
        font-size: 1.5rem;
    }

    .hamburger-menu {
        display: block;
    }
    
    .hamburger-menu.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .hamburger-menu.active span:nth-child(2) {
        opacity: 0;
    }
    .hamburger-menu.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}

.faded-preview {
    mask-image: linear-gradient(black, transparent);
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.see-more-container {
    text-align: center;
    margin-top: 3rem;
}

.see-more-button {
    display: inline-block;
    background: transparent;
    border: 1px solid #555;
    border-radius: 10px;
    color: #aaa;
    padding: 0.75rem 2rem;
    text-decoration: none;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}

.see-more-button:hover {
    background-color: var(--text-color);
    border-color: var(--text-color);
    color: var(--bg-color);
}

.page-header {
    padding: 8rem 5% 4rem;
    text-align: center;
}

.page-header h1 {
    font-family: var(--font-heading);
    font-size: 4rem;
    letter-spacing: 3px;
    margin-bottom: 2rem;
}

.back-link {
    color: #aaa;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s;
}

.back-link:hover {
    color: var(--text-color);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.social-links-contact a {
  margin-right: 1rem;
  font-size: 2rem;
  color: var(--text-color);
  transition: color 0.3s;
}
.social-links-contact a:hover {
  color: #aaa;
}
.artist-detail {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 10rem;
}
.artist-detail img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
}
.social-links-contact {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}
.social-links-contact a {
  margin-right: 1rem;
  font-size: 2rem;
  color: var(--text-color);
  transition: color 0.3s;
}
.social-links-contact a:hover {
  color: #aaa;
}
#artist-bio {
    margin-top: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}
@media (max-width: 768px) {
    #artist-bio {
        padding: 0 1rem;
    }
}

html, body {
  height: 100%;
  margin: 0;
}

body {
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

.no-inhert {
    color: inherit;
}