/* Color Variables */
:root {
  --blue: #34556D;
  --peach: #DF9385;
  --orange: #E89533;
  --green: #2B4431;
  --cream: #FCF5E3;
  --black: #272727;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  color: var(--black);
  background-color: var(--cream);
}

/* FLOWERS */
.flowers {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

.flower {
  position: absolute;
  display: inline-block;
  font-size: 3rem;
  line-height: 1;
  text-align: center;
  opacity: 0.25;
  z-index: -1;
}

/* Typography */
h1 {
  font-family: 'Neato Serif', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 10px;
}

h2,h3,h4,h5,h6 {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  width: 100%;
  background-color: var(--blue);
  padding: 18px 40px;
  display: flex;
  justify-content: center;
  z-index: 100;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: var(--cream);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 1px;
}

/* Hero */
.hero-card {
  text-align: center;
  padding: 120px 20px 80px;
  background: var(--blue);
  color: var(--cream);
  border-radius: 24px;
  margin: 60px auto 100px;
  width: 90%;
  max-width: 1000px;
  position: relative;
  z-index: 10;
}

.hero-card h1 { color: var(--cream); }

.hero-content p {
  max-width: 640px;
  margin: 0 auto 20px;
  font-size: 1.1rem;
  color: var(--cream);
}

.hero-cta {
  display: inline-block;
  background-color: var(--orange);
  color: white;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
}

/* Sections */
.section {
  padding: 80px 20px;
  width: 90%;
  max-width: 1000px;
  margin: 0 auto 100px;
  border-radius: 24px;
  position: relative;
  z-index: 10;
}

/* Dark cards */
#gallery  { background: var(--blue);  color: var(--cream); }
#archive  { background: var(--green); color: var(--cream); }
#faq      { background: var(--blue);  color: var(--cream); }

/* Warm cards — subtle transparency */
#info {
  background: rgba(232, 149, 51, 0.82);
  color: var(--cream);
}

#about {
  background: rgba(223, 147, 133, 0.82);
  color: var(--cream);
}

.section h1 { color: var(--cream); }
#gallery h1 { color: var(--cream); }

.section p {
  font-size: 1rem;
  line-height: 1.6;
}

/* Info links */
.info-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.info-btn {
  display: inline-block;
  background: rgba(252, 245, 227, 0.25);
  border: 1.5px solid rgba(252, 245, 227, 0.7);
  color: var(--cream);
  padding: 10px 22px;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.2s ease, transform 0.2s ease;
}

.info-btn:hover {
  background: rgba(252, 245, 227, 0.42);
  transform: translateY(-2px);
}

/* Gallery */
.gallery {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.box {
  height: 180px;
  background-color: var(--blue);
  border-radius: 20px;
}

.gallery-link {
  text-align: center;
  margin-top: 20px;
}

.gallery-link a {
  text-decoration: none;
  font-weight: 600;
  color: var(--peach);
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.gallery-link a:hover {
  color: var(--orange);
  text-decoration: underline;
}

/* About cards */
.about-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

@media (max-width: 980px) {
  .about-cards { grid-template-columns: 1fr; }
}

.about-card {
  background: rgba(252, 245, 227, 0.4);
  border: 1px solid rgba(252, 245, 227, 0.7);
  border-radius: 18px;
  padding: 24px;
  text-align: center;
  color: var(--cream);
}

.about-card h3 {
  margin: 10px 0 8px;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  color: var(--cream);
}

.about-card p {
  margin: 0;
  line-height: 1.5;
  font-size: 0.97rem;
  color: var(--cream);
}

.about-avatar {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  margin: 0 auto 22px;
  overflow: hidden;
  box-shadow: 0 7px 26px rgba(0, 0, 0, 0.2);
}

.about-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* FAQ */
.faq-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 30px;
}

.faq-card {
  background: rgba(252, 245, 227, 0.4);
  border-radius: 18px;
  padding: 16px 32px;
  cursor: pointer;
  overflow: hidden;
  transition: max-height 0.6s ease, padding 0.6s ease;
  max-height: 60px;
}

.faq-card.open { max-height: 500px; }

.faq-card dt {
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: var(--cream);
}

.faq-card dd {
  margin: 0;
  line-height: 2;
  color: var(--cream);
}

.faq-card a {
  color: var(--peach);
  transition: color 0.3s ease;
}

.faq-card a:hover,
.faq-card a:active { color: var(--orange); }

/* Footer */
/* Footer Styles - Matching Navbar Font */
.footer {
  background-color: var(--blue);
  color: var(--cream);
  padding: 60px 20px 30px;
  text-align: center;
}

.footer-logo {
  /* Match Navbar Styling */
  font-family: 'Poppins', sans-serif !important;
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 30px;
  color: var(--cream);
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
}

.social-icons a {
  color: var(--cream);
  font-size: 1.8rem;
  transition: transform 0.3s ease, color 0.3s ease;
  display: inline-block;
}

.social-icons a:hover {
  color: var(--orange);
  transform: translateY(-5px);
}

.footer-bottom {
  border-top: 1px solid rgba(252, 245, 227, 0.1);
  padding-top: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  opacity: 0.6;
  letter-spacing: 0.5px;
}

/* Archive cards */
.archive-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

.archive-card {
  background: rgba(252, 245, 227, 0.4);
  border: 1px solid rgba(252, 245, 227, 0.7);
  border-radius: 18px;
  padding: 24px;
  text-align: center;
  color: var(--cream);
  width: 220px;
}

.archive-year {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1rem;
  margin: 0 0 14px;
  color: var(--cream);
}

.archive-link {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.archive-link:hover {
  opacity: 0.85;
  transform: scale(1.03);
}

.archive-img-wrap {
  width: 100%;
  padding-top: 100%;
  position: relative;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(252, 245, 227, 0.15);
}

.archive-img-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Carousel */
.carousel-wrapper {
  position: relative;
  width: 80%;
  max-width: 1000px;
  margin: 20 auto;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.carousel-track img {
  width: 250px; /* enlarged side previews */
  height: auto;
  transition: transform 0.3s ease, opacity 0.3s ease;
  object-fit: cover;
  border-radius: 10px;
}

.carousel-track img.center {
  width: 350px; /* larger center image */
}

.carousel-track img.prev,
.carousel-track img.next {
  opacity: 0.7;
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,0.8);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  border: none;
  font-size: 28px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, background 0.2s ease;
}

.arrow:hover {
  transform: translateY(-50%) scale(1.2);
  background: rgba(255,255,255,1);
}

.arrow.left {
  left: 10px;
}

.arrow.right {
  right: 10px;
}

/* Sponsor Section Styles */
/* New Green Section Variant */
.dark-green {
  background: var(--green);
  color: var(--cream);
}

.dark-green h1 {
  color: var(--cream);
}

/* Sponsor Grid Layout */
.sponsor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.sponsor-card {
  background: rgba(252, 245, 227, 0.15); /* Subtle glass effect */
  border: 1px solid rgba(252, 245, 227, 0.3);
  padding: 30px 20px;
  border-radius: 18px;
  text-align: center;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.9rem;
  transition: transform 0.3s ease, background 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sponsor-card:hover {
  background: rgba(252, 245, 227, 0.25);
  transform: translateY(-5px);
}

/* Adjusting the section spacing if needed */
#sponsors p {
  margin-bottom: 20px;
}

.sponsor-card {
  background: rgba(255, 255, 255, 0.15); /* slightly see-through (like your hover) */
  backdrop-filter: blur(8px); /* optional: gives that nice glass effect */
  -webkit-backdrop-filter: blur(8px); /* Safari support */

  border-radius: 12px;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;

  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.sponsor-card img {
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
  transition: filter 0.3s ease, opacity 0.3s ease;
}

.sponsor-card:hover {
  transform: scale(1.08); /* slightly bigger on hover */
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.sponsor-card:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

.capital-one {
  transform: scale(2.5);
}

.lockheed {
  transform: scale(1.5);
}