/* GLOBAL RESETS & VARS */
:root {
  --bg-color: #ffffff;
  --text-color: #333333;
  --accent-teal: #4db6ac;
  --accent-teal-hover: #3b9b91;
  --link-color: #4b6f8f;
  --link-hover: #2d5a78;
  --dark-bg: #1a1a1a;
  --font-serif: 'Georgia', serif;
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Fira Sans', serif;
  color: var(--text-color);
  background-color: var(--bg-color);
  line-height: 1.6;
}

a {
  color: var(--link-color);
  text-decoration: none;
}

a:hover,
 a:focus {
  color: var(--link-hover);
  text-decoration: underline;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background-color: #000;
  color: #fff;
}

.navbar .logo a {
  color: #fff;
  font-weight: bold;
  letter-spacing: 2px;
  font-family: 'Fira Sans', serif;
  text-decoration: none;
  font-size: 1.1rem;
}

.nav-links {
  list-style: none;
  display: flex;
  font-family: 'Fira Sans', serif;
  align-items: center;
  gap: 24px;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 1px;
  font-weight: 600;
}

.btn-outline {
  border: 2px solid #ffffff;
  padding: 8px 16px;
}

/* HERO WITH VIDEO BACKGROUND */
.hero {
  position: relative;
  height: 55vh;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--dark-bg);
}

.hero-video {
  position: absolute;
filter: blur(4px);
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45); /* Dark overlay matching screenshot */
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: #ffffff;
}

.hero-content .tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.hero-content h1 {
  font-size: 3.5rem;
  letter-spacing: 4px;
  margin: 0 0 25px 0;
}

/* BUTTONS */
.btn-teal {
  display: inline-block;
  background-color: var(--accent-teal);
  color: #ffffff !important;
  padding: 12px 32px;
  text-decoration: none;
  letter-spacing: 1.5px;
  font-weight: bold;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
}

.btn-teal:hover {
  background-color: var(--accent-teal-hover);
}

/* Black button with white text used across site */
.btn-black {
  display: inline-block;
  background: #000;
  color: #fff !important;
  padding: 0.8rem 1.2rem;
  text-decoration: none;
  font-family: "Fira Sans", sans-serif;
  font-weight: 600;
  border: 1px solid #000;
  transition: background 0.2s ease, color 0.2s ease;
}

.btn-black:hover,
.btn-black:focus {
  background: #fff;
  color: #000 !important;
}

/* MAIN LAYOUT */
.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}

.page-padding {
  padding-top: 60px;
}

.section {
  margin-bottom: 60px;
}

.bio-content {
  font-family: 'PT Serif', serif;
  font-size: 1.0rem;
  text-align: center;
  color: #444;
}

.information-tag {
  font-family: 'Fira Sans', serif;
  font-size: 1.0rem;
  text-align: left;
  color: #444;
  margin-left: 60px;
  margin-right: 60px;
  margin-bottom: 10px;
}

.media-tag {
  font-family: 'Fira Sans', serif;
  font-size: 1.0rem;
  text-align: center;
  color: #444;
  margin-left: 60px;
  margin-right: 60px;
  margin-bottom: 10px;
}

.media-tag h4 {
  margin-bottom: 0.3rem;
}

.media-tag h3 {
  margin-bottom: 0.2rem;
}
.reviews {
  font-family: 'PT Serif', serif;
  font-size: 1.0rem;
  text-align: center;
  color: #444;
  margin-left: 60px;
  margin-right: 60px;
  margin-bottom: 10px;
}

.no-bullets {
  list-style: none;
  margin: 0;
  padding: 0;
}

.no-bullets li {
  margin-bottom: 0.5rem;
}

.photo-credits {
  font-family: 'PT Serif', serif;
  font-size: 0.7rem;
  text-align: center;
  color: #444;
}

.information-body {
  font-family: 'PT Serif', serif;
  font-size: 1.0rem;
  text-align: left;
  color: #444;
    margin-left: 60px;
  margin-right: 60px;
}
/* CARDS & STORE GRID */
.dark-card {
  background: #f4f4f6;
  padding: 30px;
  border-radius: 6px;
}

.store-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.store-card {
  border: 1px solid #e0e0e0;
    font-family: 'PT Serif', serif;
  padding: 24px;
  border-radius: 6px;
}

.page-padding h4 {
  margin-bottom: 0.3rem;
}

.page-padding p {
  margin-top: 0;
}
/* Audio Player */
.audio-card {
  margin: 1.5rem auto 2rem;
  padding: 1rem 1.25rem;
  background: #f7f7f7;
  border: 1px solid #ddd;
  max-width: 720px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.audio-card .audio-caption {
  font-family: "Fira Sans", sans-serif;
  font-size: 0.95rem;
  margin: 0 0 0.75rem;
  color: #222;
}

.audio-card audio {
  width: 320px;
  max-width: 100%;
  display: block;
  margin: 0 auto;
}

/* Video Embedding */
.video-card {
  margin: 1.5rem auto 2rem;
  padding: 1rem 1.25rem;
  background: #f7f7f7;
  border: 1px solid #ddd;
  max-width: 860px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.video-card .video-caption {
  font-family: "Fira Sans", sans-serif;
  font-size: 0.95rem;
  margin: 0 0 0.75rem;
  color: #222;
}

.video-card video {
  width: 100%;
  max-width: 680px;
  display: block;
  margin: 0 auto;
}

/* Photo Carousels */
.photo-carousel {
  width: 100%;
  max-width: 800px;
  margin: 1.5rem auto 2rem;
}

.photo-carousel .carousel-frame {
  width: 100%;
  max-width: none;
}

  .photo-carousel .carousel-slide {
    display: none;
  }

  .photo-carousel .carousel-slide.active {
    display: block;
  }

  .photo-carousel img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
  }

  .photo-carousel .carousel-controls {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 0.9rem;
  }

  .photo-carousel .carousel-btn {
    border: none;
    background: #000;
    color: #fff;
    font-family: "Fira Sans", sans-serif;
    padding: 0.6rem 0.9rem;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
  }

  .photo-carousel .carousel-btn:hover,
  .photo-carousel .carousel-btn:focus {
    background: #fff;
    color: #000;
    outline: 1px solid #000;
  }

/* FORMS */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: bold;
  margin-bottom: 6px;
  letter-spacing: 1px;
}

.form-group input, .form-group textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
}

footer {
  text-align: center;
  padding: 20px;
  font-size: 0.8rem;
  color: #888;
  border-top: 1px solid #eee;
}

.catalog-section {
  margin-top: 1.25rem;
  padding: 0.9rem 1rem;
  border: 1px solid #e2e2e2;
  border-radius: 6px;
  background: #fafafa;
}

.catalog-section summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--link-color);
  list-style: none;
  position: relative;
}

.catalog-section summary::after {
  content: "▾";
  display: inline-block;
  margin-left: 0.5rem;
  transition: transform 0.2s ease;
}

.catalog-section[open] summary::after {
  transform: rotate(180deg);
}

.catalog-section summary::-webkit-details-marker {
  display: none;
}

.catalog-list {
  margin: 0.75rem 0 0 1.25rem;
  padding-left: 0;
}

.catalog-list li {
  margin-bottom: 0.4rem;
}
/* style.css */

/* 1. Global Setup for the entire about page main section */
.about-container {
  display: flex;
  flex-direction: column;
  align-items: center; /* Centers the title, image, and text */
  padding: 10px 0; /* Vertical spacing from nav/footer */
  background-color: #ffffff; /* Page background color */
}
.about-container h1 {
  margin-bottom: 0.1rem;
}

.about-title {
  font-family: 'Fira Sans', serif;
  font-size: 1.5rem;
  margin-bottom: 40px;
  text-align: center;
}

/* 2. Responsive Image Container with Fluid Side Padding */
.portrait-container {
  width: 100%; /* Spans the full width of the about-container */
  box-sizing: border-box;
  margin-bottom: 20px; /* Spacing before bio text */
  
  /* FLUID SIDE PADDING: */
  /* This uses 10% of the screen width on each side. It will scale. */
  padding-left: 10%; 
  padding-right: 10%;
  
  /* OPTIONAL alternative: Using 'viewport width' (vw) units */
  /* padding-left: 8vw; */
  /* padding-right: 8vw; */

  display: flex; /* For reliable centering */
  justify-content: center;
}

/* 3. The Image itself: Scale & Restrict Max Size */
.portrait-img {
  width: 100%;       /* Tells image to scale with the container */
  height: auto;      /* Maintains aspect ratio */
  
  /* MAX WIDTH constraint: */
  /* This prevents the image from getting ridiculously large on huge monitors, */
  /* but lets it scale smaller on phones. Adjust 800px to your taste. */
  max-width: 800px;
  
  /* Ensure browser renders scaling smoothly */
  display: block; 
}

/* Navbar adjustments for mobile */
@media (max-width: 700px) {
  .navbar {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    padding: 16px;
  }

  .nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .nav-links li {
    width: 100%;
    text-align: center;
  }

  .nav-links a {
    display: inline-block;
    padding: 10px 14px;
    width: auto;
  }

  .btn-outline {
    width: auto;
  }
}

/* 4. Bio text layout */
.bio-content {
  max-width: 700px; /* Restricts line length for readability */
  padding: 0 20px; /* Base padding so text doesn't hit mobile edges */
  font-family: 'PT Serif', serif;
  align-items: center;
  line-height: 1.8;
  font-size: 1.0rem;
}