/* ── Reset & Base ── */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&display=swap');

body {
  background-color : rgb(239, 239, 237);
  font-family: "DM Serif Display", serif;
  color: rgb(30, 13, 2);
}

/* ── Navigation Bar ── */
nav {
  font-family: Gill Sans, sans-serif;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 2rem;
  background-color: #c2ebe4;
}

.nav-logo img {
  height: 64px;
  width: auto;
  display: block;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-right a {
  color: rgb(30, 13, 2);
  text-decoration: none;
  font-size: 1rem;
}

.nav-right a:hover {
  text-decoration: underline;
}

/* ── Dropdown (About Us + Language) ── */
.dropdown {
  position: relative;
  cursor: pointer;
}

.dropdown > span {
  color: rgb(30, 13, 2);
  font-size: 1rem;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background-color: #333;
  border-radius: 4px;
  overflow: hidden;
  min-width: 160px;
  z-index: 100;
}

.dropdown-menu a,
.lang-option {
  display: block;
  padding: 0.75rem 1rem;
  color: white;
  text-decoration: none;
  font-size: 0.95rem;
}

.dropdown-menu a:hover {
  background-color: #444;
}

.lang-option {
  cursor: default;
}

.lang-option:hover {
  background-color: #3a3a3a;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.lang-btn {
  font-size: 0.95rem;
}
/* ── Slideshow ── */
#slideshow {
  position: relative;
  width: 100%;
  max-height: 500px;
  overflow: hidden;
}

.slide {
  display: none;
  width: 100%;
  max-height: 500px;
  object-fit: cover;
}

.slide.active {
  display: block;
}

#slideshow-wrapper {
  display: flex;
  justify-content: center;
  padding: 2rem 0;
}

#slideshowA {
  position: relative;
  height: 600px;
  overflow: hidden;
  border-radius: 1px;
}

.slideA {
  display: none;
  width: auto;
  height: 600px;
  object-fit: cover;
}

.slideA.active {
  display: block;
}

/* ── Intro Section ── */
#intro {
  font-family: Gill Sans, sans-serif;
  max-width: 800px;
  margin: 2.5rem auto;
  padding: 0 1rem;
  text-align: center;
}

#intro h1 {
  font-family: "DM Serif Display", serif;
  font-size: 4rem;
  margin-bottom: 1rem;
}

#intro p {
  font-size: 2rem;
  line-height: 1.7;
  color: rgb(30, 13, 2);
}

/* ── Shop Page ── */
#shop {
  font-family: Gill Sans, sans-serif;
  max-width: 1000px;
  margin: 3rem auto;
  padding: 0 1rem;
  text-align: center;
}

#shop h1 {
  font-family: "DM Serif Display", serif;
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.shop-subtitle {
  color: rgb(30, 13, 2);
  margin-bottom: 3rem;
}

.shirt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.shirt-card {
  background-color : rgb(245, 245, 245);
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 1rem;
  text-align: center;
}

.shirt-card img {
  width: 100%;
  border-radius: 4px;
  margin-bottom: 0.75rem;
}

.shirt-card h2 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.shirt-card p {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 0.75rem;
}

.shirt-card a {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: #333;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-size: 0.9rem;
}

.shirt-card a:hover {
  background-color: #444;
}

/* ── Card Slideshow ── */
.card-slideshow {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 4px;
  margin-bottom: 0.75rem;
}

.card-slide {
  display: none;
  width: 100%;
}

.card-slide.active {
  display: block;
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: white;
  font-size: 3rem;
  cursor: pointer;
  z-index: 10;
  padding: 0 0.4rem;
  text-shadow: 0 0 6px rgba(0,0,0,0.8);
  line-height: 1;
  user-select: none;
}

.arrow:hover {
  color: rgba(255,255,255,0.8);
}

.arrow.left  { left: 0; }
.arrow.right { right: 0; }

/* ── Team Page ── */
#team {
  font-family: Gill Sans, sans-serif;
  max-width: 1000px;
  margin: 3rem auto;
  padding: 0 1rem;
  text-align: center;
}

#team h1 {
  font-family: "DM Serif Display", serif;
  font-size: 3.5rem;
  margin-bottom: 0.5rem;
}

.team-subtitle {
  color: #555;
  margin-bottom: 2rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.member-card {
  background-color :  rgb(245, 245, 245);
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
}

.member-card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}

.member-card h2 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.member-role {
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 0.75rem;
  font-style: italic;
}

.member-bio {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.6;
}

/* ── Shop Page ── */
#about {
  font-family: Gill Sans, sans-serif;
  max-width: 1000px;
  margin: 3rem auto;
  padding: 0 1rem;
  text-align: center;
  line-height: 2;
}

#about h1 {
  font-family: "DM Serif Display", serif;
  font-size: 3rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}

#where {
  max-width: 1000px;
  margin: 3rem auto;
  padding: 0 2rem;
  text-align: center;
  line-height: 2;
}

#where h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}

#progressTitle {
  font-size: 1.5rem;
  font-family: Gill Sans, sans-serif;
  max-width: 1000px;
  margin: 3rem auto;
  padding: 0 2rem;
  text-align: center;
  line-height: 2;
}

#progressTitle h1 {
  font-family: "DM Serif Display", serif;
  font-size: 3.5rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}

#progress {
  width: 100%;
  min-height: 100vh;

  background:
    linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
    url("images/progress1a.jpg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#progress .content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem;
  text-align: center;
  color: white;
}

#progress h1{
  font-size: 3rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.photo-page {
    display: flex;
    flex-direction: column;
    gap: 20px;           /* space between photos */
    align-items: center; /* centers images */
    padding: 0px;
}

.photo-page img {
    width: 100%;
    max-width: 800px;    /* optional limit */
    height: auto;        /* keeps aspect ratio */
    display: block;
}