﻿


/* ================================
   GLOBAL RESET
   ================================ */
body, h1, h2, h3, h4, h5, h6, p, ul {
  margin: 0;
  padding: 0;
}

/* ================================
   RESET / BASE
   ================================ */
* {
  box-sizing: border-box;
}

/* ================================
   TYPOGRAPHY
   ================================ */
body {
  background-color: #336699;
  color: white;
  font-family: Trebuchet, Arial, Verdana, "Segoe UI", sans-serif;
  line-height: 1.6;
}

/* Paragraph rhythm (your "1.5 returns") */
p {
  margin-top: 0;
  margin-bottom: 1.5em;
}

/* ================================
   HEADINGS
   ================================ */
h1, h2, h3, h4, h5, h6 {
  color: white;
  margin-bottom: 0.5em;}


/* ===== HEADER (WHITE NAV BAR) ===== */
header {
  background-color: white;
  height: 75px;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 3px 6px rgba(0,0,0,0.20);
}

.header-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

/* ===== LOGO ===== */
.logo {
  height: 75px;
  width: auto;
  display: block;
}

/* ===== NAV MENU ===== */
.nav-menu {
  list-style: none;
  display: flex;
  gap: 22px;
  margin-left: auto;
  height: 75px;
  align-items: center;
}

.nav-menu li a {
  color: #336699;
  font-weight: bold;
  font-size: 18px;
  text-transform: uppercase;
  text-decoration: none;
  line-height: 75px;
  transition: opacity 0.2s ease;
}

.nav-menu li a:hover {
  opacity: 0.7;
}

.nav-menu li a:visited {
  color: #336699;
}

/* ===== HAMBURGER (MOBILE) ===== */
.hamburger {
  display: none;
  font-size: 32px;
  cursor: pointer;
  color: #990000;
}

/* ===== HERO BANNER ===== */
.full-width-image {
  width: 100%;
  margin: 0;
  padding: 0;
}

.full-width-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center top;
  display: block;
}


/* ===== MAIN CONTENT ===== */
main {
  padding: 60px 40px;
  max-width: 1200px;
  margin: 0 auto;
  color: white;
}

/* ===== Booking page demo thumbnails ===== */
.demo-table {
  table-layout: fixed;
}

.demo-table img {
  max-width: 260px;
  width: 100%;
  height: auto;
  display: block;
}

/* ===== RESPONSIVE DESIGN (NAV ONLY) ===== */
@media (max-width: 768px) {
  main {
    padding: 40px 24px;
  }

  
.nav-menu {
    display: none;
    flex-direction: column;
    background-color: white;
    position: fixed;
    top: 75px;
    right: 20px;
    padding: 12px 16px;
    border: 2px solid #990000;
    border-radius: 8px;
    width: min(90vw, 260px);

    height: auto;
    max-height: none;
    overflow: visible;

    z-index: 2000;
}


  .nav-menu li a {
    line-height: normal;
    padding: 10px 0;
    color: #990000;
    display: block;
    width: 100%;
  }

  .nav-menu.active {
    display: flex;
  }

  .hamburger {
    display: block;
  }
}

/* =================================
   RECORDINGS – Album Hover Overlay
   + 250×250 Uniform Tiles
   ================================= */

/* OPTIONAL grid wrapper for neat rows */

.albums-grid > .album-card{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 18px;
  align-items: start;
}


/* Album tile (250×250 uniform size) */
main .album {
  width: 250px;
  height: 250px;
  position: relative;
  display: inline-block; /* If you use .albums-grid, you can switch this to 'block' and remove the margin */
  margin: 16px;          /* Remove this when using .albums-grid; let the grid gap handle spacing */
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  background: #111;      /* fallback behind image */
}

/* Cover image fills tile without distortion */
main .album img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* Hover overlay with track list (hidden by default) */
main .album .songs {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.10), rgba(0,0,0,0.78));
  color: #fff;
  padding: 12px;
  overflow-y: auto;
  scroll-behavior: smooth;

  opacity: 0;
  transition: opacity 0.22s ease;
  pointer-events: none;
}

/* Reveal overlay on hover/focus */
main .album:hover .songs,
main .album:focus-within .songs {
  opacity: 1;
  pointer-events: auto;
}

/* Overlay typography (tightened for fit) */
main .album .songs h3 {
  margin: 0 0 6px;
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: 0.2px;
  text-shadow: 0 1px 2px rgba(0,0,0,.55);
}

main .album .songs p {
  margin: 2px 0;
  font-size: 13px;
  line-height: 1.2;
  word-break: break-word;
}

/* Subtle bottom fade to hint scrollability */
main .album .songs::after {
  content: "";
  position: sticky;
  display: block;
  height: 22px;
  bottom: 0;
  margin-top: 8px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.85));
  pointer-events: none;
}

/* Slightly smaller tiles on very small screens */
@media (max-width: 420px) {
  main .album {
    width: 220px;
    height: 220px;
  }
  main .album .songs h3 { font-size: 15px; }
  main .album .songs p  { font-size: 12.5px; }
}

/* =================================
   PayPal button styling
   ================================= */

/* Keep the PayPal form OUTSIDE the .album element */
.paypal-button {
  margin: 6px 16px 24px; /* adjust to taste */
  text-align: center;
}

.paypal-btn {
  appearance: none;
  border: 0;
  padding: 0.55rem 0.9rem;
  border-radius: 6px;
  background: #ffffff; /* You can change to your brand color if you prefer */
color: rgb(33, 66, 99);
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: filter 0.2s ease, transform 0.02s ease;
}

.paypal-btn:hover { filter: brightness(0.95); }
.paypal-btn:active { transform: translateY(1px); }




/* ================================
   Keep cover + button together
   and style PayPal button (white/blue)
   ================================ */

/* Wrap EACH album in this container so the grid treats it as ONE item */
.album-card {
  width: 250px;                   /* same as .album tile */
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

/* If you're using the .albums-grid wrapper, let gap handle spacing */
.albums-grid > .album-card {
  margin: 0;                      /* grid gap already set in your CSS */
}

/* PayPal area under the tile */
.album-card .paypal-button {
  display: block;
  margin: 10px 0 24px;            /* space under the 250×250 cover */
  text-align: center;             /* center the button under the cover */
}

/* Brand style: white rounded rectangle with blue text */
.paypal-btn, .album-card .paypal-button input[type=submit], .album-card .paypal-button button[type=submit] {
  -webkit-appearance: none;
  appearance: none;
  border: 2px solid #ffffff;      /* red border */
  background: #fff;               /* white background */
  color: #336699;                 /* blue text */
  padding: 0.55rem 1rem;
  font-weight: 700;
  border-radius: 8px;             /* rounded rectangle (not a pill/hotdog) */
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: background .15s ease, color .15s ease, border-color .15s ease, transform .02s ease;
}

/* Hover / active states */
.paypal-btn:hover {
  background: #336699;            /* invert on hover */
  color: #fff;
}
.paypal-btn:active { transform: translateY(1px); }

/* Safety: hide any legacy PayPal image buttons if left in by mistake */
.album-card .paypal-button input[type=image] { display: none !important; }



/* ================================
   PM GEAR – TWO COLUMN LAYOUT
   ================================ */

.gear-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2rem;
  align-items: start;
}

/* Left column (TEMP visual debug) */

.gear-thumbs {
  background: #000; /* black */
  min-height: 200px;
}

.gear-thumbs img {
  display: block;
  width: 100%;
  height: auto;
}

/* Right column (TEMP visual debug) */
.gear-details {
  background: rgba(0, 0, 255, 0.15);
  min-height: 200px;
}

/* Mobile: stack columns */
@media (max-width: 768px) {
  .gear-layout {
    grid-template-columns: 1fr;
  }
}



/* =================================
   PHOTO LIGHTBOX – polished version
   ================================= */

.lightbox{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.82);
  display:none;
  align-items:center;
  justify-content:center;
  padding: 22px;
  z-index: 9999;
}
.lightbox:target{ display:flex; }  /* CSS-only open via hash [1](https://www.cssscript.com/lightbox-gallery-image-showcase/)[2](https://tympanus.net/codrops/2011/12/26/css3-lightbox/) */


/* click-outside-to-close layer */
.lb-bg{
  position: fixed;
  inset: 0;
  display:block;
  cursor: zoom-out;
  z-index: 0;
}


/* the card that holds image + UI */
.lb-card{
  position: relative;
  z-index: 1;                 /* above .lb-bg */
  width: min(92vw, 1100px);   /* makes images feel more consistent in size */
  margin: 0;
}

/* image scales to consistent box width, preserves aspect ratio */
.lb-card img{
  width: 100%;
  height: auto;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 12px 38px rgba(0,0,0,0.45);
  display:block;
}

/* controls */
.lb-close, .lb-prev, .lb-next{
  position:absolute;
  text-decoration:none;
  color:#fff;
  background: rgba(255,255,255,0.16);
  padding: 10px 12px;
  border-radius: 10px;
  line-height: 1;
  backdrop-filter: blur(6px);
  z-index: 2;
}
.lb-close{ top: 10px; right: 10px; font-size: 16px; }
.lb-prev, .lb-next{
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  padding: 12px 14px;
}
.lb-prev{ left: -56px; }
.lb-next{ right: -56px; }

.lb-close:hover,
.lb-prev:hover,
.lb-next:hover{
  background: rgba(255,255,255,0.24);
}

/* caption */
.lb-caption{
  text-align: center;
  margin-top: 10px;
  font-size: 13px;
  opacity: 0.88;
}

/* responsive: arrows move inside on smaller screens */
@media (max-width: 980px){
  .lb-prev{ left: 12px; }
  .lb-next{ right: 12px; }
}


/* ===== PHOTO GALLERY GRID (RESTORED) ===== */
.gallery-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.gallery-thumb{
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.07);
  display: block;
}

.gallery-thumb img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .22s ease, filter .22s ease;
}

.gallery-thumb:hover img{
  transform: scale(1.06);
  filter: saturate(1.10) contrast(1.04);
}

@media (max-width: 980px){
  .gallery-grid{
    grid-template-columns: repeat(3, 1fr);
  }
}


@media (max-width: 680px){
  .gallery-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ================================
   VIDEOS PAGE – YouTube Grid
   ================================ */

.videos-page{
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0; /* main already has padding */
}

/* The grid itself */
.video-grid{
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: start;
}

/* Force 4 columns on wide desktop */
@media (min-width: 1100px){
  .video-grid{
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Card styling */
.video-card{
  display: block;
  text-decoration: none;
  color: inherit;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.10);
  transition: transform .12s ease, box-shadow .12s ease;
}

.video-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.16);
}

/* Thumbnail (16:9 without aspect-ratio) */
.thumb{
  position: relative;
  width: 100%;
  background: #000;
  padding-top: 56.25%;
  overflow: hidden;
}

.thumb img{
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border: 0;
}

/* Play overlay */
.thumb:after{
  content:"";
  position:absolute;
  left:14px;
  bottom:14px;
  width:56px;
  height:56px;
  border-radius:50%;
  background: rgba(0,0,0,.60);
}
.thumb:before{
  content:"";
  position:absolute;
  left:34px;
  bottom:30px;
  width:0; height:0;
  border-left:14px solid #fff;
  border-top:9px solid transparent;
  border-bottom:9px solid transparent;
  z-index: 1;
}

/* Title area */
.info{
  padding: .65rem 1rem .85rem;
}

/* Song title text (you said you prefer this, no h3 needed) */
.song-title{
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: #214263;
  line-height: 1.25;
  text-align: center;
}


/* ===== Calendar / Gig Table ===== */

.gig-table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  margin: 1.5rem 0 2.5rem 0;
}

.gig-table th,
.gig-table td {
  padding: 0.65rem 0.75rem;
  vertical-align: top;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.gig-table thead th {
  border-bottom: 2px solid rgba(255,255,255,0.3);
  font-weight: 700;
}

.gig-table tbody tr:nth-child(even) {
  background: rgba(255,255,255,0.04);
}

/* Logo column (desktop/tablet only) */
.gig-table .col-logo {
  width: 201px;
}

.gig-table .col-logo img {
  max-width: 200px;
  height: auto;
  display: block;
}

/* Improve readability of the Info column */
.gig-table td:last-child {
  line-height: 1.35;
}

/* ===== Mobile ===== */
@media (max-width: 640px) {
  .gig-table .col-logo {
    display: none;
  }

  .gig-table th,
  .gig-table td {
    padding: 0.5rem 0.55rem;
  }
}

