/* Hero Section */
/* Hero Section - Coffee Themed */
.hero {
  background-color: #9e7a51;
  background-image: url("images/argyleWall.png");
  color: #f4f4f4;
  padding: 60px 20px;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  border-bottom: 2px solid #e6d3c1;
}

.hero h1 {
  font-size: 3em;
  margin-bottom: 10px;
  color: #fff8f0;
}

.hero-content h1 {
  margin-bottom: 10px;
}

.tagline,
.hero-content .tagline {
  font-size: 1.3em;
  margin-bottom: 20px;
  color: #fff8f0bf;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2em;
  }
}

/* Nav Bar */
.live-ops-nav {
  position: sticky;
  top: 0;
  background-color: #fff8f0;
  padding: 10px 0;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.live-ops-nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.live-ops-nav a {
  text-decoration: none;
  color: #6b4c35;
  font-weight: 600;
  padding: 8px 12px;
  transition: background-color 0.3s ease;
  border-radius: 4px;
}

.live-ops-nav a:hover {
  background-color: #e6d3c1;
}

/* Optional: Highlight link when section is in view */
.live-ops-nav a.active {
  background-color: #d3b8a1;
}

/* Responsive */
@media (max-width: 600px) {
  .live-ops-nav ul {
    flex-direction: column;
    align-items: center;
  }
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 80vh;
  border-radius: 8px;
}

.close {
  position: absolute;
  top: 30px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 1001;
}

.close:hover,
.close:focus {
  color: #bbb;
  text-decoration: none;
}
.subList {
  list-style-type: circle;
  margin-left: 2em;
}

body {
  font-family: Arial, sans-serif;
  background: url("images/argyleWall.png") repeat fixed;
  background-repeat: repeat;
  background-attachment: fixed;
  background-size: auto; /* Prevents stretching */
  background-color: #9e7a51;
  color: #333;
  margin: 0;
  padding: 0;
}
.content-box {
  background-color: rgba(255, 248, 240, 0.85); /* light coffee w/ opacity */
  padding: 20px;
  margin: 40px auto;
  border-radius: 12px;
  max-width: 900px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

h1,
h2,
h3 {
  color: #fff8f0;
}
#sub-header {
  color: #fff8f0bf;
  font-size: 1rem;
}

div h1,
div h2,
div h3 {
  color: #6b4c35;
}
ul {
  list-style-type: square;
  padding-left: 20px;
}
.section {
  margin-bottom: 40px;
}
a {
  color: #2196f3;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
.highlight {
  background-color: #ffff99;
}

/* General styling for media thumbnails */
.media-thumbnail {
  max-width: 350px;
  margin-bottom: 16px;
  position: relative;
  cursor: pointer;
  border-radius: 8px;
  overflow: hidden;
}
.media-thumbnail img {
  width: 100%;
  height: auto;
  display: block;
}
.play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  color: white;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 50%;
  padding: 8px 12px;
}

.media-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin: 1rem 0;
}

.media-thumbnail {
  flex: 1 1 300px;
  max-width: 500px;
  overflow: hidden;
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 0.5rem;
  background: #f9f9f9;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  align-items: center;
  justify-content: center;
}

.media-thumbnail img {
  width: 100%;
  height: auto;
  object-fit: contain;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.media-thumbnail:hover {
  border: 1px solid #d9a066; /* caramel highlight */
  box-shadow: 0 0 5px rgba(217, 160, 102, 0.4),
    0 0 15px rgba(217, 160, 102, 0.3), 0 0 25px rgba(217, 160, 102, 0.2);
  transform: translateY(-2px);
}

.media-thumbnail img:hover {
  transform: scale(1.03);
}
.media-row iframe {
  flex: 1 1 400px;
  max-width: 640px;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  border: 1px solid #ccc;
}
.media-row2 {
  display: grid;
  grid-template-columns: repeat(
    auto-fit,
    minmax(250px, 1fr)
  ); /* 3-wide responsive grid */
  gap: 1rem;
  justify-content: center;
  margin: 1rem 0;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.media-thumbnail2 {
  max-width: 100%;
  overflow: hidden;
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 0.5rem;
  background: #f9f9f9;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.media-thumbnail2 img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.media-thumbnail2:hover {
  border: 1px solid #d9a066;
  box-shadow: 0 0 5px rgba(217, 160, 102, 0.4),
    0 0 15px rgba(217, 160, 102, 0.3), 0 0 25px rgba(217, 160, 102, 0.2);
  transform: translateY(-2px);
}

.media-thumbnail2 img:hover {
  transform: scale(1.03);
}

/* Themed link style for bottom links */
.footer-links a {
  color: #6b3e26; /* Coffee-brown or theme color */
  text-decoration: none;
  transition: color 0.3s ease, text-decoration 0.3s ease;
}

.footer-links a:hover {
  color: #4a2a1c; /* Darker shade on hover */
  text-decoration: underline;
}
