/* === Reset & Base === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #5C0830;
  --primary-dark: #38041D;
  --gold: #D4AF37;
  --gold-light: #e8c84a;
  --cream: #FFFDF5;
  --text: #2c2c2c;
  --text-light: #6b6b6b;
  --white: #ffffff;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --radius: 12px;
  --header-h: 68px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

main { flex: 1; }

img { max-width: 100%; height: auto; }

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

/* === Header === */
.site-header {
  background: var(--primary);
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--gold);
  text-decoration: none;
  flex-shrink: 0;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: color 0.3s, background 0.3s;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.nav a:hover,
.nav a.active {
  color: var(--gold);
  background: rgba(255,255,255,0.08);
}

/* === Hero === */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  min-height: calc(100dvh - var(--header-h));
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(20,2,10,0.45), rgba(20,2,10,0.45)),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="0" cy="0" r="1" fill="rgba(212,175,55,0.08)"/><circle cx="30" cy="40" r="1" fill="rgba(212,175,55,0.06)"/><circle cx="70" cy="20" r="1" fill="rgba(212,175,55,0.07)"/><circle cx="85" cy="70" r="1" fill="rgba(212,175,55,0.05)"/><circle cx="10" cy="80" r="1" fill="rgba(212,175,55,0.06)"/></svg>');
  background-size: auto, 200px 200px;
  z-index: 1;
}

.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 2s ease;
}

.hero-slide.active {
  opacity: 1;
}

.photo-slide {
  background-image: url('/images/pastor-b.jpg');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.home-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 60px 16px;
}

.hero-subtitle {
  font-size: clamp(0.7rem, 2vw, 1rem);
  text-transform: uppercase;
  letter-spacing: clamp(2px, 0.5vw, 4px);
  color: var(--gold);
  margin-bottom: 12px;
  font-weight: 400;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 8vw, 4.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
}

.hero-divider {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 0 auto 20px;
  border-radius: 2px;
}

.hero-date {
  font-size: clamp(0.85rem, 2.5vw, 1.15rem);
  color: rgba(255,255,255,0.7);
  letter-spacing: clamp(1px, 0.3vw, 3px);
  text-transform: uppercase;
  margin-bottom: 32px;
}

/* === Countdown === */
.countdown {
  display: flex;
  justify-content: center;
  gap: clamp(10px, 3vw, 24px);
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.hero-countdown {
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  gap: clamp(6px, 2vw, 16px);
  flex-wrap: wrap;
  z-index: 3;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(20, 2, 10, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.25);
  max-width: calc(100vw - 32px);
}

.hero-download {
  position: absolute;
  bottom: 12px;
  right: 12px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(20, 2, 10, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--gold);
  text-decoration: none;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s, transform 0.3s, background 0.3s;
  cursor: pointer;
}

.photo-slide.active .hero-download,
.hero-download:focus {
  opacity: 1;
  transform: translateY(0);
}

.hero-download:hover {
  background: rgba(212, 175, 55, 0.3);
  border-color: var(--gold);
}

.hero-download svg {
  flex-shrink: 0;
}

.hero-countdown .countdown-item {
  min-width: 60px;
  padding: 8px 12px;
  border: none;
  background: transparent;
  backdrop-filter: none;
}

.countdown-item {
  background: rgba(255,255,255,0.08);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: var(--radius);
  padding: 14px 20px;
  min-width: 80px;
  text-align: center;
}

.countdown-item span {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 5vw, 2.4rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.countdown-item small {
  display: block;
  font-size: clamp(0.6rem, 1.5vw, 0.75rem);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}

/* === Buttons === */
.btn {
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  letter-spacing: 0.5px;
  text-align: center;
}

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

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212,175,55,0.3);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--primary);
  transform: translateY(-2px);
}

.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* === Sections === */
.section {
  padding: clamp(40px, 8vw, 80px) 0;
}

.page-header {
  padding-top: clamp(32px, 6vw, 60px);
  padding-bottom: 16px;
  text-align: center;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 5vw, 2.8rem);
  font-weight: 700;
  color: var(--primary);
  text-align: center;
  margin-bottom: 12px;
}

.section-divider {
  width: 50px;
  height: 3px;
  background: var(--gold);
  margin: 0 auto 20px;
  border-radius: 2px;
}

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  max-width: 600px;
  margin: 0 auto;
  padding: 0 16px;
}

/* === Intro === */
.intro-section {
  text-align: center;
}

.intro-text {
  max-width: 720px;
  margin: 0 auto 16px;
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--text);
  line-height: 1.8;
  padding: 0 8px;
}

/* === Gallery / Carousel === */
.carousel-wrap {
  max-width: 900px;
  margin: 0 auto;
}

.carousel {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
  aspect-ratio: 16 / 9;
}

.carousel-slide {
  flex: 0 0 100%;
  position: relative;
  cursor: pointer;
}

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

.carousel-slide img.fit-contain {
  object-fit: contain;
  background: var(--primary-dark);
}

.carousel-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 16px 14px;
  background: linear-gradient(transparent, rgba(92,8,48,0.9));
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: clamp(0.85rem, 2vw, 1.05rem);
  text-align: center;
  pointer-events: none;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: rgba(92,8,48,0.7);
  color: var(--gold);
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, color 0.3s;
}

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

.carousel-prev { left: 10px; }
.carousel-next { right: 10px; }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: #d5cfc0;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.carousel-dot:hover {
  background: var(--gold-light);
}

.carousel-dot.active {
  background: var(--gold);
  transform: scale(1.35);
}

/* === Lightbox === */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.94);
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 16px;
}

.lightbox.open {
  display: flex;
}

.lightbox-img {
  max-width: 95vw;
  max-height: 75vh;
  object-fit: contain;
  border-radius: 8px;
}

.lightbox-caption {
  color: rgba(255,255,255,0.8);
  margin-top: 12px;
  font-size: clamp(0.85rem, 2vw, 1rem);
  text-align: center;
  padding: 0 16px;
}

.lightbox-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: rgba(255,255,255,0.1);
  border: none;
  color: var(--white);
  font-size: 2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.3s, background 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.lightbox-close:hover {
  opacity: 1;
  background: rgba(255,255,255,0.2);
}

/* === Form === */
.form-section {
  padding-top: 16px;
}

.form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: clamp(24px, 5vw, 40px);
  max-width: 640px;
  margin: 0 auto;
  box-shadow: var(--shadow);
}

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

.locked-text {
  color: var(--text);
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  line-height: 1.7;
  margin-bottom: 24px;
}

.locked-card .countdown {
  margin-bottom: 8px;
}

.form-card h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.3rem, 3vw, 1.6rem);
  color: var(--primary);
  margin-bottom: 20px;
  text-align: center;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid #e0ddd5;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.3s;
  background: var(--cream);
  color: var(--text);
}

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

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.char-count {
  font-weight: 300;
  font-size: 0.8rem;
  color: var(--text-light);
  float: right;
}

.form-status {
  padding: 12px 14px;
  border-radius: 8px;
  margin-bottom: 14px;
  display: none;
  font-size: 0.85rem;
}

.form-status.error {
  display: block;
  background: #fde8e8;
  color: #c53030;
}

.form-status.success {
  display: block;
  background: #e6f7e6;
  color: #276749;
}

.form-status.sending {
  display: block;
  background: #eef6ff;
  color: #2b6cb0;
}

.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn-submit {
  width: 100%;
  font-size: 1rem;
  padding: 14px;
}

/* === Wishes Wall === */
.wishes-section {
  padding-top: 16px;
}

.wishes-wall {
  max-width: 720px;
  margin: 0 auto;
}

.no-wishes {
  text-align: center;
  color: var(--text-light);
  font-style: italic;
  padding: 32px 0;
}

.wish-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: clamp(16px, 3vw, 24px);
  margin-bottom: 14px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--gold);
}

.wish-message {
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  line-height: 1.7;
  margin-bottom: 10px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.wish-meta {
  font-size: 0.85rem;
  color: var(--text-light);
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.wish-name {
  font-weight: 600;
  color: var(--primary);
}

.wish-relation {
  font-style: italic;
}

.wish-date {
  margin-left: auto;
  font-size: 0.8rem;
  color: var(--text-light);
  opacity: 0.7;
}

/* === Wish Category Badge === */
.wish-category-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
  background: var(--cream);
  color: var(--primary);
  border: 1px solid var(--primary);
}

/* === Wish Filters === */
.wish-filters {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 7px 16px;
  border: 2px solid #e0ddd5;
  border-radius: 24px;
  background: var(--white);
  color: var(--text);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.filter-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.filter-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

/* === Pagination === */
.pagination {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.pagination-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border: 2px solid #e0ddd5;
  border-radius: 8px;
  background: var(--white);
  color: var(--text);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}

.pagination-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.pagination-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

/* === Form Select === */
.form-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236b6b6b' d='M1.41 0L6 4.58 10.59 0 12 1.41l-6 6-6-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

/* === Testimonials === */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: clamp(20px, 4vw, 32px);
  box-shadow: var(--shadow);
  border: 2px solid var(--primary);
  position: relative;
  align-self: start;
}

.testimonial-quote {
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 16px;
  color: var(--text);
}

.testimonial-meta {
  display: flex;
  flex-direction: column;
}

.testimonial-name {
  font-weight: 700;
  color: var(--primary);
  font-family: 'Playfair Display', serif;
  font-size: clamp(0.9rem, 2vw, 1.05rem);
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* === Thank You Card === */
.thank-you-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: clamp(32px, 6vw, 60px) clamp(24px, 5vw, 40px);
  max-width: 560px;
  margin: 0 auto;
  box-shadow: var(--shadow);
  text-align: center;
}

.thank-you-icon {
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  color: var(--gold);
  margin-bottom: 16px;
}

.thank-you-card h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 4vw, 1.8rem);
  color: var(--primary);
  margin-bottom: 12px;
}

.thank-you-card p {
  color: var(--text-light);
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  line-height: 1.7;
  margin-bottom: 28px;
}

.thank-you-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* === Error Card === */
.error-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: clamp(32px, 6vw, 60px) clamp(24px, 5vw, 40px);
  max-width: 560px;
  margin: 0 auto;
  box-shadow: var(--shadow);
  text-align: center;
}

.error-card h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 4vw, 1.8rem);
  color: var(--primary);
  margin-bottom: 12px;
}

.error-card p {
  color: var(--text-light);
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  line-height: 1.7;
  margin-bottom: 28px;
}

/* === Footer === */
.site-footer {
  background: var(--primary);
  color: rgba(255,255,255,0.7);
  text-align: center;
  padding: clamp(20px, 4vw, 32px) 0;
  margin-top: auto;
}

.site-footer p {
  font-size: clamp(0.8rem, 2vw, 0.9rem);
}

.footer-credit {
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  margin-top: 8px;
  font-size: clamp(0.85rem, 2vw, 1rem);
}

/* === Responsive: Tablets (768px–1024px) === */
@media (min-width: 601px) and (max-width: 1024px) {
  .container {
    padding: 0 24px;
  }

  .nav a {
    padding: 8px 12px;
    font-size: 0.85rem;
  }

  .hero-content {
    padding: 60px 24px;
  }

  .carousel-btn {
    width: 44px;
    height: 44px;
  }
}

/* === Responsive: Mobile (max-width: 600px) === */
@media (max-width: 600px) {
  :root {
    --header-h: 100px;
  }

  .site-header {
    padding: 10px 0;
  }

  .site-header .container {
    flex-direction: column;
    gap: 8px;
  }

  .logo {
    font-size: 1.3rem;
  }

  .nav {
    gap: 2px;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .nav a {
    margin: 0;
    padding: 6px 10px;
    font-size: 0.8rem;
  }

  .hero-content {
    padding: 48px 12px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 0 20px;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 260px;
  }

  .hero-countdown {
    bottom: 12px;
    padding: 8px 10px;
    gap: 4px;
  }

  .hero-countdown .countdown-item {
    min-width: 52px;
    padding: 6px 8px;
  }

  .hero-countdown .countdown-item span {
    font-size: 1.4rem;
  }

  .hero-download {
    opacity: 1;
    transform: none;
    width: 36px;
    height: 36px;
  }

  .hero-countdown .countdown-item small {
    font-size: 0.55rem;
    letter-spacing: 0.5px;
  }

  .countdown {
    gap: 8px;
  }

  .countdown-item {
    padding: 10px 14px;
    min-width: 68px;
  }

  .container {
    padding: 0 16px;
  }

  .form-card {
    padding: 20px 16px;
    border-radius: 10px;
  }

  .carousel-track {
    aspect-ratio: 4 / 3;
  }

  .carousel-btn {
    width: 34px;
    height: 34px;
    font-size: 1rem;
  }

  .carousel-prev { left: 8px; }
  .carousel-next { right: 8px; }

  .carousel-caption {
    padding: 32px 12px 10px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .testimonial-card {
    padding: 20px;
  }

  .thank-you-card,
  .error-card {
    padding: 28px 18px;
  }

  .thank-you-actions {
    flex-direction: column;
    align-items: center;
  }

  .thank-you-actions .btn {
    width: 100%;
    max-width: 260px;
  }

  .wish-filters {
    gap: 4px;
  }

  .filter-btn {
    padding: 5px 12px;
    font-size: 0.75rem;
  }

  .lightbox {
    padding: 12px;
  }

  .lightbox-close {
    top: 8px;
    right: 8px;
    width: 40px;
    height: 40px;
    font-size: 1.6rem;
  }

  .lightbox-img {
    max-width: 100vw;
    max-height: 70vh;
  }
}

/* === Responsive: Small phones (max-width: 380px) === */
@media (max-width: 380px) {
  .nav a {
    padding: 5px 7px;
    font-size: 0.75rem;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .hero-subtitle {
    font-size: 0.65rem;
    letter-spacing: 1.5px;
  }

  .hero-date {
    font-size: 0.75rem;
    letter-spacing: 1px;
  }

  .countdown-item {
    padding: 8px 10px;
    min-width: 60px;
  }

  .countdown-item span {
    font-size: 1.4rem;
  }

  .countdown-item small {
    font-size: 0.55rem;
  }

  .btn {
    padding: 10px 24px;
    font-size: 0.85rem;
  }

  .section {
    padding: 32px 0;
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    padding: 10px 12px;
    font-size: 0.9rem;
  }
}
