/* --- CSS Variables for the Color Palette --- */
:root {
    --color-gold: #d4af37; /* A rich metallic gold */
    --color-gold-light: #f3e5ab;
    --color-bg-dark: #0a0a0a; /* Deep black */
    --color-bg-medium: #141414;
    --color-text-light: #ffffff;
    --color-text-muted: #cccccc;
}

/* --- Reset and Base Styles --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--color-bg-dark);
    color: var(--color-text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* --- Typography & Reusable Components --- */
h1, h2, h3 {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--color-gold);
}

.section-subtitle {
    text-align: center;
    color: var(--color-text-muted);
    margin-bottom: 3rem;
}

.section-padding {
    padding: 80px 0;
}

.bg-dark {
    background-color: var(--color-bg-medium);
}

/* Using the texture image background */
.bg-textured {
    background-image: url('texture-bg.jpg'); /* Ensure this image exists */
    background-size: cover;
    background-position: center;
    background-blend-mode: multiply;
    background-color: rgba(0,0,0,0.8);
}

/* Gold Button Style */
.btn {
    display: inline-block;
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease-in-out;
}

.btn-gold {
    background: linear-gradient(45deg, var(--color-gold), var(--color-gold-light));
    color: var(--color-bg-dark);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.btn-gold:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
}

/* --- Navigation --- */
.navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 100;
    background: linear-gradient(to bottom, rgba(0,0,0,0.8), transparent);
}

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

.logo-text {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--color-gold);
    letter-spacing: 3px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--color-text-light);
}

.nav-links a:hover {
    color: var(--color-gold);
}

/* --- Hero Section --- */
.hero-section {
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background-image: url('hero-bg.jpg'); /* Ensure this image exists */
    background-size: cover;
    background-position: center;
}

/* Dark overlay to ensure text is readable on the background image */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main-logo {
    width: 250px; /* Adjust size of your logo here */
    height: auto;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
}

.artist-name {
    font-size: 4rem;
    margin-bottom: 10px;
    /* Makes the text look metallic */
    background: linear-gradient(to right, var(--color-gold), var(--color-gold-light), var(--color-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tagline {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: var(--color-text-muted);
}

/* --- Streaming Section --- */
.streaming-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.stream-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    transition: 0.4s ease;
}

.stream-card i {
    font-size: 3rem;
    margin-bottom: 15px;
    color: var(--color-text-light);
    transition: 0.4s ease;
}

.stream-card span {
    font-weight: 600;
}

/* Hover effects for specific brands */
.stream-card:hover {
    background: var(--color-gold);
    border-color: var(--color-gold);
    transform: translateY(-10px);
}
.stream-card:hover i, .stream-card:hover span {
    color: var(--color-bg-dark);
}

/* --- Video Section --- */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
    justify-content: center;
}

/* Makes YouTube embeds responsive */
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 2px solid rgba(212, 175, 55, 0.1);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* --- Footer --- */
.footer-section {
    background: #050505;
    padding: 50px 0;
    text-align: center;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-logo {
    color: var(--color-gold);
    margin-bottom: 20px;
}

.social-links {
    margin-bottom: 20px;
}

.social-links a {
    font-size: 1.5rem;
    margin: 0 15px;
    color: var(--color-text-muted);
}

.social-links a:hover {
    color: var(--color-gold);
}

.copyright {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
    .nav-links {
        display: none; /* Hiding navbar links on small screens for simplicity */
    }
    .nav-container {
        justify-content: center;
    }
    
    .artist-name {
        font-size: 2.5rem;
    }
    
    .main-logo {
        width: 180px;
    }

    .video-grid {
        grid-template-columns: 1fr; /* Stack videos on mobile */
    }
}