/* style-home.css */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@700&family=Roboto:wght@400;700&display=swap');

:root {
    --text-color: #ffffff;
    --background-color: #000000;
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Roboto', sans-serif;
}

body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background-color: var(--background-color);
    color: var(--text-color);
    font-family: var(--font-body);
}

/* --- Hero Section with Video --- */
.hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

#bgvid {
    width: 100%;
    height: 100%;
    object-fit: cover; /* This makes the video cover the area without distortion */
}

/* Dark overlay for better text readability */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: -1;
}

.hero-content {
    text-align: center;
}

.artist-name {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 15vw, 10rem); /* Responsive font size */
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin: 0;
    padding-left: 0.2em; /* Adjusts for letter spacing on the last letter */
}

/* --- Scroll Down Indicator --- */
.scroll-down-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-color);
    font-family: var(--font-heading);
    letter-spacing: 0.3em;
    font-size: 0.8rem;
    writing-mode: vertical-lr; /* Vertical text */
    padding: 20px 0;
}

.scroll-down-indicator::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 30px;
    background: var(--text-color);
    animation: scroll-indicator-anim 2s infinite;
}

@keyframes scroll-indicator-anim {
    0% { transform: scaleY(0) translateY(-15px); }
    50% { transform: scaleY(1) translateY(0); }
    100% { transform: scaleY(0) translateY(15px); }
}

/* --- Releases Section --- */
.releases-section {
    padding: 100px 5%;
    background-color: #050505; /* Slightly different black */
}

.releases-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.release-item {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-color);
    padding: 25px 0;
    border-bottom: 1px solid #222;
    transition: background-color 0.3s ease;
}

.release-item:hover {
    background-color: #111;
}

.release-cover {
    width: 80px;
    height: 80px;
    object-fit: cover;
    margin-right: 25px;
}

.release-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.release-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.release-type {
    font-size: 1rem;
    color: #888;
}

.release-cta span {
    border: 2px solid var(--text-color);
    padding: 10px 25px;
    font-weight: 700;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.release-item:hover .release-cta span {
    background-color: var(--text-color);
    color: var(--background-color);
}


/* --- Re-using the Footer --- */
.site-footer {
    position: relative; /* Overwrites absolute positioning from landing pages */
    padding: 40px 0;
    background-color: #050505;
    text-align: center;
}

.social-links {
    display: inline-flex;
    gap: 25px;
}

.social-links a {
    display: inline-block;
    width: 24px;
    height: 24px;
    opacity: 0.6;
    transition: opacity 0.2s ease, transform 0.2s ease;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.social-links a:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* Social Icon SVGs - same as before */
.social-links a[aria-label="Instagram"]{background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath fill='%23ffffff' d='M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8z'/%3E%3C/svg%3E");}
.social-links a[aria-label="Spotify"]{background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 496 512'%3E%3Cpath fill='%23ffffff' d='M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm100.7 364.9c-4.2 6.8-14.1 9-22.1 4.7-62.2-38.1-139.4-46.7-230.9-25.5-8.4 1.9-17-.3-19.1-8.7-2.1-8.4 4.6-16.7 13-18.6 99.1-22.9 184.4-13.3 254.5 28.1 8 4.3 10.3 14.1 6.1 22zm18.3-64.2c-5.4 8.7-17 11.2-25.7 5.8-70.3-43.2-181.4-57-268.6-31.2-10.2 3-20.3-1.6-23.3-11.8-3-10.2 1.6-20.3 11.8-23.3 97.4-28.1 218.9-12.9 299.1 35.8 8.7 5.4 11.2 17 5.7 25.7zM388.4 233.7c-6.8 10.2-20.3 12.9-31.2 6.1-84.3-51.5-221.7-66.2-310.9-36.2-12.1 4-25.7-1.4-29.7-13.5-4-12.1 1.4-25.7 13.5-29.7 100.8-33.3 249.2-17.5 344.5 39.8 11.1 6.7 13.7 20.3 6.8 31.1z'/%3E%3C/svg%3E");}
.social-links a[aria-label="TikTok"]{background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath fill='%23ffffff' d='M448 209.9a210.1 210.1 0 0 1-122.8-39.3V349.4A162.6 162.6 0 1 1 185 188.3V298.1a64.1 64.1 0 1 0 128.3 0V209.9a210.3 210.3 0 0 1 134.7-90.3z'/%3E%3C/svg%3E");}
.social-links a[aria-label="YouTube"]{background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 576 512'%3E%3Cpath fill='%23ffffff' d='M549.7 124.1c-6.3-23.7-24.8-42.3-48.3-48.6C458.8 64 288 64 288 64S117.2 64 74.6 75.5c-23.5 6.3-42 24.9-48.3 48.6-11.4 42.9-11.4 132.3-11.4 132.3s0 89.4 11.4 132.3c6.3 23.7 24.8 42.3 48.3 48.6C117.2 448 288 448 288 448s170.8 0 213.4-11.5c23.5-6.3 42-24.9 48.3-48.6 11.4-42.9 11.4-132.3 11.4-132.3s0-89.4-11.4-132.3zM232.6 340V172l144 84-144 84z'/%3E%3C/svg%3E");}
