/* --- RESET & BASIC SETUP --- */
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
}

body {
    background-image: url('BackgroundTile.png');
    background-repeat: repeat;
    background-color: #11001c;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* --- HEADER & NAVIGATION --- */
.site-header {
    width: 100%;
    height: 140px; 
    background-image: url('HeaderBackground.png');
    background-size: 100% 100%; 
    background-position: center;
    display: flex;
    align-items: center;
    padding: 0 40px; /* Even padding on both sides keeps elements locked inside */
    border-bottom: 3px solid #000;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.7);
    z-index: 10;
}

/* This will automatically distribute your buttons across the space safely */
.nav-container {
    display: flex;
    flex: 1; 
    justify-content: space-around; /* Distributes buttons with equal space around them */
    align-items: center;
    height: 100%;
    max-width: 65%; /* Prevents the button layout from encroaching on your logo space */
}

.nav-btn {
    display: inline-block;
    position: relative;
    height: 42px; /* Scales button text height aggressively */
}

.nav-btn img {
    height: 100%;
    width: auto;
    display: block;
}

.nav-btn .btn-hover {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.1s ease-in-out;
}

.nav-btn:hover .btn-hover {
    opacity: 1;
}

/* Logo Alignment & Scale Expansion */
.logo-container {
    display: flex;
    align-items: center;
    height: 100%;
    margin-left: auto; /* Keeps it snapped to the right side */
}

.header-logo {
    height: 150px; /* Increased scale so it dominates the right side of the bar */
    width: auto;
    object-fit: contain;
}

/* --- MAIN CONTENT FRAME --- */
.main-content {
    flex: 1;
    display: flex;
    justify-content: center;
    padding: 0 20px; /* Removed top padding entirely to bring it flush against the header */
}

.artist-frame {
    background-color: #FFFFFF;
    width: 100%;
    max-width: 800px;
    padding: 40px;
    color: #000000;
    font-family: "Arial", sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.8);
}

/* Clears default heading margins that were pushing the box down */
.artist-frame h1 {
    margin-top: 0; 
    font-family: "Arial Black", "Impact", sans-serif;
    text-transform: uppercase;
    margin-bottom: 25px;
    font-size: 2rem;
    letter-spacing: -1px;
}

.artist-frame p {
    margin-bottom: 20px;
}