/* Site-specific styles for the PHP version */

:root {
  --font-inter: 'Inter', sans-serif;
  --font-raleway: 'Raleway', sans-serif;
}

body {
  font-family: var(--font-inter), sans-serif;
}

.playfair-display {
  font-family: 'Playfair Display', Georgia, serif;
}

.open-sans {
  font-family: 'Open Sans', sans-serif;
}

.poppins-medium {
  font-family: 'Poppins', sans-serif;
}

/* Hero carousel */
.hero-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.hero-slide {
  display: none;
  position: relative;
  height: 100vh;
  width: 100%;
}

.hero-slide > .absolute,
.hero-slide .absolute {
  position: absolute;
}

.hero-slide.active {
  display: block;
}

.hero-slide img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

.hero-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.hero-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  padding: 0;
}

.hero-dots button.active {
  background: #2D5ED8;
}

/* Partner logo marquee */
.marquee-wrap {
  overflow: hidden;
  width: 100%;
}

.marquee-track {
  display: flex;
  gap: 40px;
  animation: marquee 30s linear infinite;
  width: max-content;
}

.marquee-track img {
  height: 60px;
  width: 128px;
  object-fit: contain;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Contact form errors */
.form-error {
  color: #dc2626;
  font-size: 0.875rem;
  margin-top: 4px;
}

.form-success {
  background: #dcfce7;
  color: #166534;
  padding: 12px 16px;
  border-radius: 6px;
  margin-bottom: 16px;
}

.form-fail {
  background: #fee2e2;
  color: #991b1b;
  padding: 12px 16px;
  border-radius: 6px;
  margin-bottom: 16px;
}

/* Accordion */
.accordion-content {
  display: none;
  padding: 1rem 1.5rem;
  color: #374151;
  font-size: 0.875rem;
  line-height: 1.75;
  background: #f9fafb;
}

.accordion-content.open {
  display: block;
}

.accordion-btn svg.rotated {
  transform: rotate(180deg);
}
