body {
    margin: 0px;
    padding: 0px;
    font-family: Arial, sans-serif;
}

/* Whole page container */
.site {
    min-height: 100vh;
}

/* Header row: left links, banner, right links */
.header {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px 0px 0px;
    gap: 80px; /* space between left links, banner, right links */
}

/* Banner image */
.banner-img {
    max-width: 800px;   /* tweak to match your banner size */
    height: auto;
    
}

/* Side nav columns */
.nav-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-size: 28px;    /* tweak to match Photoshop text */
    font-weight: 700;
}

.nav-left {
    text-align: left;
}

.nav-right {
    text-align: right;
}

/* Links style */
.nav-links a {
    color: #000;
    text-decoration: none;
    letter-spacing: 1px;
}

.nav-links a:hover {
    text-decoration: underline;
}

/* Reels stacked and centered under header */
.reels {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.reel {
    max-width: 50%;
    height: auto;
    display: block;
}

.albumcover {
    max-width: 50%;  /* Adjust 50% to 30%, 400px, etc., for desired size */
    height: auto;    /* Prevents stretching */
    display: center;
    margin: 0 auto;
}
.cover-item {
    display: flex;
    align-items: center;  /* Vertically centers text with image */
    gap: 20px;            /* Space between image and text */
    margin: 20px auto;    /* Centers the whole item */
}

.cover-text {
    font-style: italic;
    margin: 0;
    font-size: 1.1em;     /* Slightly larger for emphasis */
    color: #333;          /* Adjust to match your site's palette */
}

/* Mobile layout */
@media (max-width: 600px) {
  .header {
    flex-direction: column;   /* stack items instead of one wide row */
    gap: 16px;
    padding: 20px 10px;
  }

  .nav-links {
    flex-direction: row;      /* put HOME / MUSIC / FILM / ABOUT in a row */
    justify-content: center;
    text-align: center;
    flex-wrap: wrap;          /* allow wrapping to a second line if needed */
    gap: 16px;
    font-size: 18px;          /* smaller so they fit */
  }

  .banner-img {
    max-width: 100%;          /* full width on mobile */
  }


}