/* style.css */

/* Base styles */
body {
  font-family: 'Garamond', 'Book Antiqua', serif;
  margin: 0;
  padding: 0;
  background-color: #fefaf3;
  color: #2a2a2a;
  line-height: 1.6;
}

a {
  color: #2a2a2a;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

header {
  background-color: #ffffff;
  border-bottom: 1px solid #ccc;
}

.navbar {
  display: flex;
  justify-content: center;
  padding: 1rem 0;
  background-color: #fff5e6;
}

.nav-container {
  width: 100%;
  max-width: 1100px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
  font-size: 1.2rem;
}

.nav-links {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  justify-content: center;
  width: 100%;
}

.nav-links li {
  margin: 0;
}

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  position: absolute;
  right: 1rem;
  top: 1rem;
}
h1 {
  font-size: 2.4rem;
}
/* Hero section */
.hero {
  padding: 0rem;
  text-align: center;
}

.hero-side-by-side {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  max-width: 800px;
  margin: 2rem auto auto auto;
  text-align: left;
  flex-wrap: wrap;
}
.video-embed {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1rem auto 0 auto;
  max-width: 700px;
  width: 100%;
}

.video-embed iframe {
  width: 100%;
  max-width: 700px;
  aspect-ratio: 16 / 9;
  border: none;
}

.logo-container {
  flex: 0 0 auto;
}

.vertical-logo {
  max-width: 250px;
  height: auto;
}

.group-description-container {
  flex: 1;
  max-width: 800px;
}

.group-description {
  font-size: 1.5rem;
}

/* Highlight section */
.highlight {
  padding: 2rem;
  max-width: 1100px;
  margin: auto;
  font-size: 1.2rem;
}

.highlight h2 {
  font-size: 1.7rem;
  margin-bottom: 0.5rem;
  text-align: center;
}

.highlight-content {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
}

.highlight-media {
  flex: 2;
  min-width: 300px;
  max-width: 700px;
  margin: auto;
}

.highlight-media img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  margin-bottom: 1em;
}

.gallery {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.gallery img {
  flex: 1;
  width: 100%;
  max-width: 200px;
  height: auto;
  object-fit: cover;
}

.highlight-details {
  flex: 1;
  min-width: 250px;
  background-color: #fff5e6;
  padding: 1rem;
  border-radius: 6px;
}

.highlight-details ul {
  list-style: none;
  padding: 0;
}

.button {
  display: inline-block;
  margin-top: 1rem;
  background-color: #5a3e1b;
  color: white;
  padding: 0.5rem 1rem;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
}

footer {
  text-align: center;
  padding: 1rem;
  font-size: 1.3rem;
  background-color: #fefaf3;
  color: #555;
  margin-top: 1rem;  
}
footer a {
  color: #5a3e1b;
  font-weight: bold;
}

footer a:hover {
  text-decoration: underline;
  color: #7a4c00;
}

/* Responsive */
@media (max-width: 600px) {
  .hero-side-by-side {
    flex-direction: column;
    text-align: center;
  }

  .highlight-content {
    flex-direction: column;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    gap: 0;
    text-align: center;
    background-color: #fff;
    width: 100%;
    margin-top: 1rem;
  }

  .nav-links.nav-visible {
    display: flex;
  }

  .video-embed {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 1rem auto 0 auto;
    max-width: 700px;
    width: 100%;
  }
  .group-description {
    font-size: 1.2rem;
  }
  h1 {
    font-size: 1.6rem;
  }
  .logo-container {
     margin: auto;
  }
}
.video-embed iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: none;
}

.nav-links li .video-embed {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
}

