styles.css

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #f7f7f7;
  color: #111;
}

header {
  text-align: center;
  padding: 20px 10px 10px;
}

h1 {
  font-size: 3rem;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

nav {
  text-align: center;
  padding-bottom: 40px;
}

nav a {
  text-decoration: none;
  color: #111;
  margin: 0 15px;
  font-size: 1.1rem;
}

nav a:hover {
  text-decoration: underline;
}

main {
  max-width: 800px;
  margin: auto;
  padding: 20px;
}

footer {
  text-align: center;
  padding: 40px;
  font-size: 0.9rem;
  color: #666;
}

.hero {
  text-align: center;
}

.headshot {
  width: 260px;
  max-width: 80%;
  border-radius: 6px;
  margin-bottom: 30px;
}
.headshot {
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.gallery img {
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.resume {
  max-width: 800px;
  margin: auto;
}

.resume h3 {
  margin-top: 40px;
}

.resume ul {
  list-style: none;
  padding: 0;
}

.resume li {
  margin-bottom: 10px;
}

.resume li strong {
  font-weight: 600;
}

.download-btn {
  display: inline-block;
  margin: 20px 0 40px;
  padding: 10px 20px;
  border: 1px solid #111;
  text-decoration: none;
  color: #111;
}

.download-btn:hover {
  background: #111;
  color: #fff;
}

.about {
  max-width: 800px;
  margin: auto;
}

.about p {
  line-height: 1.6;
  margin-bottom: 24px;
}

.contact {
  max-width: 800px;
  margin: auto;
  text-align: center;
}

.contact a {
  color: #111;
  text-decoration: none;
}

.contact a:hover {
  text-decoration: underline;
}

.links {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.links li {
  margin: 12px 0;
  font-size: 1.1rem;
}

.about-headshots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.about-headshots img {
  width: 200px;
  max-width: 80%;
  border-radius: 6px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

/* Lightbox modal */
.lightbox {
  display: none;
  position: fixed;
  z-index: 999;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.9);
}

.lightbox-img {
  display: block;
  margin: auto;
  max-width: 90%;
  max-height: 80vh;
  border-radius: 6px;
}

.close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover {
  color: #ccc;
}

/* Gallery Container */
.gallery-container {
  display: flex;
  gap: 40px;
  flex-wrap: wrap; /* Stacks columns on smaller screens */
  margin-top: 30px;
  justify-content: center;
}

/* Each column */
.gallery-column {
  flex: 1 1 300px; /* Minimum 300px per column, grow if space */
  max-width: 450px;
}

/* Images inside column */
.gallery-column img {
  width: 100%;
  border-radius: 6px;
  margin-bottom: 20px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
  cursor: pointer;
}

/* Column headings */
.gallery-column h3 {
  text-align: center;
  margin-bottom: 20px;
}

footer {
  text-align: center;
  padding: 40px 20px;
  color: #666;
}

.footer-links {
  margin-top: 10px;
}

.footer-links a {
  display: inline-block;
  margin: 0 10px;
  color: inherit;
  text-decoration: none;
  vertical-align: middle;
}

.footer-links a svg {
  width: 24px;
  height: 24px;
  fill: #111;
  transition: fill 0.3s;
}

.footer-links a:hover svg {
  fill: #ff4c00; /* hover color, change if you want */
}

.press {
  max-width: 900px;
  margin: auto;
  padding: 20px;
}


.press-articles ul {
  list-style: none;
  padding: 0;
}

.press-articles li {
  margin-bottom: 18px;
}

.press-articles a {
  color: #111;
  text-decoration: none;
}

.press-articles a:hover {
  text-decoration: underline;
}

.press-articles li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.press-logo {
  width: 200px;  /* Adjust size as needed */
  height: auto;
  object-fit: contain;
}

.press-logo:hover {
  transform: scale(1.05);
  transition: transform 0.2s;
}

.press-pullquotes {
  margin-top: 40px;
  text-align: center;
  font-style: italic;
  color: #555;
}

.press-pullquotes h3 {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #111;
  font-weight: 600;
}

.press-pullquotes .quote {
  font-size: 0.85rem;
  margin: 10px auto;
  max-width: 600px;
  line-height: 1.4;
}

/* Dropdown container */
nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  background-color: #fff;
  padding: 10px 0;
}

/* Style buttons for dropdowns */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropbtn {
  background: none;
  border: none;
  font: inherit;
  cursor: pointer;
  color: #111;
  padding: 8px 12px;
}

.dropbtn:hover {
  color: #ff4c00; /* accent color on hover */
}

/* Dropdown content (hidden by default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #fff;
  min-width: 160px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
  z-index: 1000;
  border-radius: 6px;

  /* fix hover gap */
  top: 100%;        /* place immediately below button */
  left: 0;
}

/* Links inside dropdown */
.dropdown-content a {
  display: block;
  padding: 10px 16px;
  text-decoration: none;
  color: #111;
}

.dropdown-content a:hover {
  background-color: #f4f4f4;
  color: #ff4c00;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-content {
  display: block;
}

.play-page {
  max-width: 900px;
  margin: auto;
  padding: 20px;
}

.play-intro p {
  margin-bottom: 18px;
  line-height: 1.6;
}

.play-details ul {
  list-style: disc inside;
  margin: 12px 0 24px 0;
  padding: 0;
}

.play-details li {
  margin-bottom: 10px;
}

.play-reviews .review {
  font-style: italic;
  margin: 18px 0;
  color: #444;
  border-left: 3px solid #ff4c00;
  padding-left: 12px;
}

.play-images img {
  width: 100%;
  max-width: 420px;
  margin: 12px;
  border-radius: 6px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

.play-links ul {
  list-style: none;
  padding: 0;
}

.play-links li {
  margin-bottom: 10px;
}

.play-links a {
  color: #111;
  text-decoration: none;
}

.play-links a:hover {
  text-decoration: underline;
}

/* --- Gallery Layouts --- */

.play-images img {
  width: 100%;
  height: auto;
  border-radius: 6px;
}

/* Image + Text side by side */
.image-text-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 3rem;
}

/* Flip order when desired */
.image-text-row.reverse {
  grid-template-columns: 1fr 1fr;
}

.image-text {
  font-size: 1rem;
  line-height: 1.6;
}

/* Two images in a row */
.two-up {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

/* Three images in a row */
.three-up {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .image-text-row,
  .two-up,
  .three-up {
    grid-template-columns: 1fr;
  }
}

.play-title {
  font-size: 2.4rem;
  margin-bottom: 2rem;
}

.play-title span {
  font-weight: normal;
  font-size: 1.1rem;
  display: block;
  margin-top: 0.3rem;
  color: #666;
}

/* HERO LAYOUT */

.play-hero {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
  align-items: center;
}

.play-hero-image img {
  width: 100%;
  border-radius: 6px;
}

/* MOBILE */

@media (max-width: 800px) {
  .play-hero {
    grid-template-columns: 1fr;
  }
}

a {
  color: #5a3e2b;
  text-decoration: none;
  border-bottom: 1px solid #aaa;
}

a:hover {
  color: #000;
  border-bottom-color: #000;
}

.play-details {
  margin: 4rem 0;
}

.detail-item {
  margin-bottom: 2.5rem;
  max-width: 700px;
}

.detail-item h3 {
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}

.detail-item p {
  margin: 0.3rem 0;
}

.media-feature {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}

.press-logo {
  width: 120px;
  height: auto;
}

/* Mobile */

@media (max-width: 700px) {
  .media-feature {
    flex-direction: column;
  }
}

/* IMAGE GRIDS */

.two-up,
.three-up {
  display: grid;
  gap: 1.5rem;
  margin: 3rem 0;
}

.two-up {
  grid-template-columns: repeat(2, 1fr);
}

.three-up {
  grid-template-columns: repeat(3, 1fr);
}

.two-up img,
.three-up img {
  width: 100%;
  height: auto;
  border-radius: 6px;
}

/* MOBILE */

@media (max-width: 800px) {
  .two-up,
  .three-up {
    grid-template-columns: 1fr;
  }
}

/* PROGRAM + NOTES BOXES */

/* container for program */
.fc-program {
  max-width: 900px;
  margin: 4rem auto 2rem;
}

/* entire program box */
.program-box {
  padding: 1.5rem 2rem;
  border: 1px solid #ccc;
  background: #fafafa;
  border-radius: 8px;
  font-family: Georgia, serif;
  color: #222;
  margin-bottom: 3rem;
}

/* each labeled line */
.program-line {
  display: flex;
  gap: 1rem;
  margin: 0.4rem 0;
  font-size: 1rem;
  line-height: 1.4;
}

/* left column label */
.program-label {
  font-weight: bold;
  min-width: 170px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

/* supporting text */
.program-value {
  flex: 1;
}

/* subtle section header in the program box */
.program-box h3 {
  margin-top: 1.2rem;
  font-size: 1.1rem;
  font-style: italic;
  border-top: 1px solid #ddd;
  padding-top: 0.6rem;
}

/* notes box */
.note-box {
  border: 1px solid #bbb;
  padding: 1.6rem 2rem;
  border-radius: 8px;
  background: #fff;
  max-width: 900px;
  margin: 2rem auto;
  font-family: Georgia, serif;
  color: #222;
}

/* note headers */
.note-box h2 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

/* note paragraphs */
.note-box p {
  margin-bottom: 0.9rem;
  line-height: 1.7;
}

.video-banner {
  position: relative;
  display: block;
  width: 100%;
}

.video-banner img {
  width: 100%;
  height: auto;
  display: block;
}

/* Common overlay style */
.video-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-transform: uppercase;
  font-size: 1.5rem;
  letter-spacing: 0.12em;
  background: rgba(0,0,0,0); /* transparent by default */
  transition: opacity 0.3s ease, background 0.3s ease, font-size 0.3s ease;
}

/* Default text visible initially */
.video-text.default-text {
  opacity: 1;
}

/* Play icon hidden initially */
.video-text.play-icon {
  opacity: 0;
  font-size: 3rem;
}

/* Hover behavior */
.video-banner:hover .video-text.default-text {
  opacity: 0;
}

.video-banner:hover .video-text.play-icon {
  opacity: 1;
  background: rgba(0,0,0,0.55);
}


/* Artist statement video code change */

.hero-video-full {
  position: relative;
  width: 100%;
  height: 100vh; /* full viewport height */
  overflow: hidden;
}

/* Fullscreen background video */
.hero-video-full .hero-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
}

/* Overlay container for the text */
.hero-video-full .hero-overlay {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%; /* right half of the screen */
  height: 100%;
  display: flex;
  align-items: center; /* vertical centering */
  justify-content: center;
  z-index: 2;
  padding: 2rem;
}

/* Text block with translucent white background */
.hero-video-full .hero-overlay .text-block {
  background: rgba(255, 255, 255, 0.603); /* semi-transparent white box */
  padding: 2rem;
  border-radius: 0;
  color: black; /* black text */
  max-width: 100%;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2); /* optional subtle shadow for contrast */
}

/* Headings & paragraph styles */
.hero-video-full .hero-overlay h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero-video-full .hero-overlay p {
  font-size: 1.25rem;
  line-height: 1.6;
}

/* Responsive: stack text on small screens */
@media (max-width: 1024px) {
  .hero-video-full .hero-overlay {
    width: 100%;
    padding: 1rem;
  }

  .hero-video-full .hero-overlay .text-block {
    width: 100%;
  }

  .hero-video-full .hero-overlay h1 {
    font-size: 2rem;
  }

  .hero-video-full .hero-overlay p {
    font-size: 1rem;
  }
}


