/* Float or Flight Air Show - Core Styles for Vendors, Past Events, Become a Vendor */
/* Color palette */
:root {
  --navy: #023047;
  --blue: #219EBC;
  --light-blue: #8ECAE6;
  --orange: #FBB500;
  --gold: #FFB703;
  --white: #ffffff;
  --text-light: #f5f9ff;
}

html, body {
  height: 100%;
}

body {
  font-family: "Montserrat", sans-serif;
  margin: 0;
  background-color: var(--navy);
  color: var(--text-light);
}

/* Major titles/ page headers */
.hero-title, .section-title {
  font-family: "Yeseva One", serif;
}

/* Subtitles, vendor names, performer names */
.card-title, .performer-name, .hero-subtitle {
  font-family: "Glass Antiqua", serif;
}

/* Layout wrapper */
.page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Top navigation */
.top-nav {
  background-color: var(--navy);
  border-bottom: 3px solid var(--blue);
}

.top-nav .brand-title {
  font-weight: 700;
  letter-spacing: 1px;
}

.top-nav a {
  text-decoration: none;
}

.nav-center {
  margin: 0 auto;
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.top-nav .nav-link {
  padding: 12px 16px;
  display: inline-block;
  font-weight: 500;
}

.top-nav .nav-link:hover,
.top-nav .nav-link.active {
  background-color: var(--gold);
  color: var(--navy);
}

/* CTA button in nav */
.nav-cta {
  border-radius: 20px;
  background-color: var(--orange);
  color: var(--navy);
  padding: 8px 18px;
  font-weight: 600;
  border: 2px solid var(--orange);
  margin-left: auto;
}

.nav-cta:hover, 
.nav-cta.active {
  background-color: transparent;
  color: var(--orange);
}

.btn-primary:hover, .nav-cta:hover {
  box-shadow: 0 0 14px rgba(33, 158, 188, 0.95);
  transform: scale(1.03);
  transition: 0.25s ease-in-out;
}

.nav-cta, .btn-primary {
  transition: 0.25s ease-in-out;
}

/* Hero / page header */
.hero {
  background: linear-gradient(135deg, var(--navy), #012538);
  padding: 48px 16px 32px;
  text-align: center;
}

.hero-subtitle {
  color: var(--light-blue);
  font-size: 30px;
  margin-bottom: 8px;
}

.hero-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--gold);
  margin: 0 0 8px;
}

.hero-description {
  max-width: 800px;
  margin: 0 auto;
  color: var(--text-light);
}

/* Main content area */
.content {
  flex: 1;
  padding: 24px 16px 48px;
  max-width: 1100px;
}

/* Section cards */
.section-card {
  background-color: #01263a;
  border-radius: 8px;
  padding: 24px 20px;
  margin-bottom: 24px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.4);
}

.section-title {
  color: var(--light-blue);
  font-size: 24px;
  margin-bottom: 16px;
}

.section-title.orange {
  color: var(--orange);
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 12px;
  margin-top: 16px;
}

/* Cards & badges used on Vendors / Past Events */
.badge-pill {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 12px;
  background-color: var(--blue);
  color: var(--white);
  margin-bottom: 8px;
}

.vendor-card,
.activity-card,
.gallery-card {
  background-color: var(--navy);
  border-radius: 8px;
  padding: 16px 14px 14px;
  margin-bottom: 16px;
  text-align: center;
  box-shadow: 0 3px 8px rgba(0,0,0,0.35);
}

.vendor-card img,
.activity-card img,
.gallery-card img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  border-radius: 6px;
  background-color: #0b3550;
}

.card-title {
  font-weight: 1000px;
  margin-top: 10px;
  color: var(--gold);
}

.card-text {
  font-size: 14px;
  color: var(--text-light);
}


/* Money raised stats on Past Events */
.stat-card {
  background-color: var(--navy);
  border-radius: 8px;
  padding: 18px 16px;
  text-align: center;
  box-shadow: 0 3px 8px rgba(0,0,0,0.35);
}

.stat-label {
  font-size: 14px;
  color: var(--light-blue);
}

.stat-amount {
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
}

/* Carousel controls on Past Events */
.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 12px;
}

.carousel-btn {
  border-radius: 20px;
  padding: 6px 18px;
  background-color: var(--orange);
  color: var(--navy);
  border: none;
  font-weight: 600;
}

.carousel-btn:hover {
  background-color: var(--gold);
}

.gallery-card {
  max-width: 750px;
  position: relative;
  margin: 0 auto;
}

.mySlides {
  height: 350px;
  width: 100%;
  display: none;
  opacity: 0;
  transition: opacity 0.8s ease;
}

/* Performer section on Vendors page */
.performer-card {
  text-align: left;
}

.performer-name {
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 4px;
}

.performer-time {
  font-size: 14px;
  color: var(--light-blue);
  margin-bottom: 4px;
}

/* Forms on Become a Vendor */
.form-card input,
.form-card textarea,
.form-card select {
  background-color: #0b3550;
  border: 1px solid var(--blue);
  color: var(--text-light);
}

.form-card input:focus,
.form-card textarea:focus,
.form-card select:focus {
  border-color: var(--gold);
}

.btn-primary {
  background-color: var(--orange);
  color: var(--navy);
  border-radius: 20px;
  padding: 8px 22px;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background-color: var(--gold);
}

.text-link {
  color: var(--gold);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: 0.25s ease-in-out;
}

.text-link:hover {
  color: var(--gold);
  border-bottom: 2px solid var(--text-light);
  text-shadow: 0 0 4px rgba(255, 183, 3, 0.8);
  transform: scale(1.05);
}

/* Footer */
.site-footer {
  background-color: #011728;
  color: #d6e8ff;
  padding: 16px 12px;
  font-size: 13px;
  margin-top: auto;
}

.site-footer a {
  color: var(--light-blue);
}

/* Responsive tweaks */
@media (max-width: 600px) {
  .hero-title {
    font-size: 28px;
  }
  .top-nav .brand-title {
    font-size: 16px;
  }
  .top-nav .nav-link {
    padding: 8px 10px;
    font-size: 13px;
  }
  .top-nav, .nav-center {
    flex-direction: column;
    gap: 4px;
  }
  .top-nav a, .top-nav, .nav-item {
    display: block;
    width: 100%;
    text-align: center;
    padding: 8px 0;
  }
  .carousel-btn {
    padding: 8px 14px;
  }
  .carousel-prev {
    left: -30px;
  }
  .carousel-right {
    right: -30px;
  }
}
