/* =========================================================
   Summer Sunset Vendor Fair — Design System
   ========================================================= */

:root {
  --hot-pink: #F64B7D;
  --coral: #FF6F61;
  --orange: #FF9B42;
  --golden: #FFC94A;
  --cream: #FFF8EE;
  --dark-brown: #35221B;
  --dark-charcoal: #2A2322;

  --radius: 20px;
  --shadow-soft: 0 18px 60px rgba(255, 120, 80, .22);
  --shadow-lift: 0 22px 70px rgba(255, 120, 80, .32);

  --font-display: "Anton", sans-serif;
  --font-heading: "Poppins", sans-serif;
  --font-body: "Inter", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--dark-brown);
  background: linear-gradient(
    180deg,
    #F9547A 0%,
    #FF7A59 18%,
    #FFA84C 40%,
    #FFD76A 72%,
    #FFF3D2 100%
  );
  background-repeat: no-repeat;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--dark-brown);
}

a { color: inherit; text-decoration: none; }

img { max-width: 100%; display: block; }

/* =========================================================
   Layout helpers
   ========================================================= */

.section {
  padding-top: 120px;
  padding-bottom: 120px;
}

.container-narrow {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-center { text-align: center; }

/* =========================================================
   Navigation
   ========================================================= */

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 40px;
  background: transparent;
  transition: background .35s ease, backdrop-filter .35s ease, padding .35s ease, box-shadow .35s ease;
}

.site-nav.is-scrolled {
  background: rgba(255, 255, 255, .35);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 14px 40px;
  box-shadow: 0 10px 40px rgba(255, 120, 80, .18);
}

.site-nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--dark-brown);
}

.site-nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav__links a {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: .95rem;
  color: #fff;
  position: relative;
  padding-bottom: 4px;
}

.site-nav__links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--hot-pink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}

.site-nav__links a:hover::after,
.site-nav__links a.active::after {
  transform: scaleX(1);
}

.site-nav__social {
  display: flex;
  align-items: center;
  gap: 18px;
}

.site-nav__social a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .25);
  backdrop-filter: blur(10px);
  color: var(--dark-brown);
  font-size: 1.05rem;
  transition: transform .25s ease, background .25s ease;
}

.site-nav__social a:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, .45);
}

.site-nav__toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: #fff;
}

@media (max-width: 900px) {
  .site-nav__links { display: none; }
  .site-nav__toggle { display: block; }
  .site-nav__social { display: none; }
}

/* =========================================================
   Hero
   ========================================================= */

.hero {
  position: relative;
  min-height: 90vh;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    url('/images/hero-sunset.jpg'),
    linear-gradient(180deg, #F9547A 0%, #FF7A59 25%, #FFA84C 55%, #FFD76A 100%);
  background-size: cover;
  background-position: center;
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 65%, transparent 96%);
  mask-image: linear-gradient(to bottom, #000 0%, #000 65%, transparent 96%);
}

.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(53, 34, 27, .35) 0%, rgba(53, 34, 27, .1) 45%, rgba(53, 34, 27, .55) 100%);
}

.hero__inner {
  position: relative;
  z-index: 2;
  padding-top: 170px;
  padding-bottom: 60px;
  padding-left: 5vw;
  padding-right: 5vw;
}

.hero__text {
  width: 50vw;
  max-width: 50vw;
  text-align: left;
}

.hero__title {
  font-family: var(--font-display);
  text-transform: uppercase;
  color: #fff;
  line-height: .98;
  margin: 0;
  text-align: left;
  text-shadow: 0 8px 40px rgba(0, 0, 0, .3);
}

.hero__title .line {
  display: block;
  font-size: clamp(4rem, 10vw, 9.5rem);
  letter-spacing: .01em;
}

.hero__title .line--sub {
  font-size: clamp(1.9rem, 5vw, 3.75rem) !important;
  color: #fff;
  -webkit-text-stroke: 0;
  text-stroke: 0;
  paint-order: normal;
  letter-spacing: .16em;
  margin-top: 18px;
  text-shadow: none;
  font-weight: normal !important;
}

.hero__features {
  list-style: none;
  margin: 44px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero__features li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  color: #fff;
  text-shadow: 0 4px 20px rgba(0, 0, 0, .3);
}

.hero__features i {
  font-size: 1.4rem;
  width: 30px;
  text-align: center;
  color: var(--golden);
}

.hero__map-link {
  display: flex;
  align-items: center;
  gap: 16px;
  color: inherit;
  text-decoration: none;
  transition: opacity .2s ease;
}

.hero__map-link:hover {
  opacity: .8;
  text-decoration: underline;
}

.hero__map-link i {
  font-size: 1.4rem;
  width: 30px;
  text-align: center;
  color: var(--golden);
}

@media (max-width: 700px) {
  .hero__inner { padding: 130px 24px 50px; }
  .hero__text { width: 100%; max-width: 100%; }
  .hero__title .line { font-size: clamp(4rem, 20vw, 5rem); }
}

/* =========================================================
   Cards (glass)
   ========================================================= */

.card-glass {
  background: rgba(255, 255, 255, .18);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 2.5rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.card-feature__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--coral), var(--golden));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

/* =========================================================
   Buttons
   ========================================================= */

.btn-sunset {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: #fff;
  background: linear-gradient(135deg, #FF6A62, #FFB347);
  border: none;
  border-radius: var(--radius);
  padding: .95rem 2.4rem;
  box-shadow: var(--shadow-soft);
  max-width: 100%;
  overflow-wrap: anywhere;
  text-align: center;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease;
}

.btn-sunset--compact {
  font-size: .85rem;
  padding: .8rem 1.5rem;
  gap: 8px;
}

@media (max-width: 420px) {
  .btn-sunset--compact {
    font-size: .75rem;
    padding: .75rem 1.1rem;
  }
}

.btn-sunset:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lift);
  color: #fff;
}

.btn-outline-sunset {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--dark-brown);
  background: rgba(255, 255, 255, .25);
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: var(--radius);
  padding: .9rem 2.3rem;
  backdrop-filter: blur(10px);
  max-width: 100%;
  overflow-wrap: anywhere;
  text-align: center;
  transition: transform .25s ease, background .25s ease;
}

.btn-outline-sunset:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, .4);
  color: var(--dark-brown);
}

/* =========================================================
   CTA / Date-Time / Location
   ========================================================= */

.cta-card {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.cta-card .eyebrow {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--coral);
  font-size: .85rem;
  margin-bottom: 12px;
}

.cta-card h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin: 0 0 8px;
}

.cta-card p.datetime {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--dark-brown);
  margin-bottom: 28px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.datetime__date,
.datetime__time {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.datetime__sep {
  opacity: .6;
}

@media (max-width: 600px) {
  .cta-card p.datetime {
    flex-direction: column;
    gap: 6px;
  }

  .datetime__sep {
    display: none;
  }
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

@media (max-width: 800px) {
  .location-grid { grid-template-columns: 1fr; }
}

.location-map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 255, 255, .35);
  min-height: 320px;
}

.location-map iframe { width: 100%; height: 100%; min-height: 320px; border: 0; }

/* =========================================================
   Photography — golden hour treatment
   ========================================================= */

.photo-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}

.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.05) saturate(1.18) brightness(.96);
}

.photo-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(255, 154, 66, .22), rgba(246, 75, 125, .14));
  mix-blend-mode: overlay;
  pointer-events: none;
}

/* =========================================================
   Footer
   ========================================================= */

.site-footer {
  padding: 60px 40px 40px;
  text-align: center;
  font-family: var(--font-heading);
  color: var(--dark-brown);
}

.site-footer__social {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-bottom: 20px;
}

.site-footer__social a {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .25);
  backdrop-filter: blur(10px);
  transition: transform .25s ease;
}

.site-footer__social a:hover { transform: translateY(-3px); }

.site-footer small { opacity: .75; font-size: .85rem; }

/* =========================================================
   Simple inner page header (Vendors / FAQ / Contact)
   ========================================================= */

.page-header {
  padding: 220px 40px 100px;
  text-align: center;
}

.page-header h1 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: #fff;
  text-shadow: 0 8px 40px rgba(0, 0, 0, .2);
}

.page-header--light h1 {
  color: var(--dark-brown);
  text-shadow: none;
}

/* Mobile nav dropdown */
@media (max-width: 900px) {
  .site-nav__links.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 20px;
    right: 20px;
    margin-top: 12px;
    background: rgba(255, 255, 255, .97);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    padding: 20px;
    gap: 18px;
  }

  .site-nav__links.is-open a {
    color: var(--dark-charcoal);
  }
}

/* =========================================================
   Contact form
   ========================================================= */

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
  text-align: left;
}

.contact-form__summary {
  color: var(--hot-pink);
  font-weight: 600;
  font-size: .95rem;
}

.contact-form__summary ul {
  margin: 0;
  padding-left: 20px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field label {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: .9rem;
  color: var(--dark-brown);
}

.form-input {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--dark-brown);
  background: rgba(255, 255, 255, .55);
  border: 1px solid rgba(255, 255, 255, .6);
  border-radius: 14px;
  padding: .8rem 1rem;
  resize: vertical;
  transition: border-color .2s ease, background .2s ease;
}

.form-input:focus {
  outline: none;
  border-color: var(--coral);
  background: rgba(255, 255, 255, .75);
}

.form-error {
  color: var(--hot-pink);
  font-size: .85rem;
}

/* Honeypot field — hidden from sighted users and screen readers, left for bots to fill in */
.hp-field {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* =========================================================
   Vendors page
   ========================================================= */

.vendor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}

.vendor-card {
  background: rgba(255, 255, 255, .18);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 1.5rem;
}

.vendor-card h3 {
  font-size: 1.1rem;
  margin: 0 0 4px;
}

.vendor-card__owner {
  font-size: .85rem;
  color: var(--dark-brown);
  opacity: .7;
  margin: 0 0 16px;
}

.vendor-card__links {
  display: flex;
  gap: 10px;
}

.vendor-card__links a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, .3);
  color: var(--dark-brown);
  font-size: 1rem;
  transition: transform .2s ease, background .2s ease;
}

.vendor-card__links a:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, .5);
}

/* =========================================================
   Sponsor pills (main sponsors on Home, community sponsors on Sponsors page)
   ========================================================= */

.sponsor-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.sponsor-pill {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, .2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: var(--radius);
  padding: .65rem 1.3rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: .9rem;
  color: var(--dark-brown);
  text-decoration: none;
  transition: transform .2s ease, background .2s ease;
}

a.sponsor-pill:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, .4);
}

/* =========================================================
   Good to Know info list (Home page)
   ========================================================= */

.info-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.info-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--dark-brown);
}

.info-list i {
  color: var(--hot-pink);
  font-size: 1.3rem;
  width: 28px;
  flex-shrink: 0;
  text-align: center;
  margin-top: 2px;
}

/* =========================================================
   Sponsors page — main sponsor image (5:4)
   ========================================================= */

.sponsor-card__image {
  width: 100%;
  aspect-ratio: 5 / 4;
  border-radius: 14px;
  background-color: rgba(255, 255, 255, .35);
  background-size: cover;
  background-position: center;
  margin-bottom: 16px;
}
