/* styles.css */
:root {
  --red: #e53935;
  --red-dark: #c62828;
  --cream: #fff8e6;
  --text: #111111;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: #ffffff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--red);
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.4rem 1.5rem;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.logo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
}

.logo-text h1 {
  font-size: 1.1rem;
  margin: 0;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.logo-text p {
  margin: 0;
  font-size: 0.8rem;
  opacity: 0.9;
}

.main-nav {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.main-nav a {
  text-decoration: none;
  color: white;
  font-size: 0.9rem;
  font-weight: 600;
}

.main-nav a:hover {
  text-decoration: underline;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.6rem;
  cursor: pointer;
}

/* Hero */
.hero {
  position: relative;
  color: white;
 min-height: 100vh;   /*full screen*/
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

@media (max-width: 600px) {
  .hero {
    min-height: 55vh;
  }
}


.hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5);
}

.hero-content {
  position: relative;
  max-width: 700px;
  text-align: center;
  padding: 3rem 1.5rem;
}

.hero-content h2 {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-content p {
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
}

.btn {
  border-radius: 999px;
  padding: 0.7rem 1.4rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn.primary {
  background: #ffffff;
  color: var(--red);
}

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

.btn.secondary {
  background: transparent;
  color: white;
  border: 2px solid #ffffff;
}

.btn.secondary:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* Sections */
.section {
  padding: 2.5rem 1.5rem;
  max-width: 960px;
  margin: 0 auto;
}

.section h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.section p {
  line-height: 1.6;
}

.section-cards {
  background: var(--cream);
  border-top: 1px solid #f0e2c7;
  border-bottom: 1px solid #f0e2c7;
}

.card-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.2rem;
}

.card {
  background: white;
  border-radius: 0.9rem;
  padding: 1.1rem 1.2rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.card h4 {
  margin-top: 0;
}

.watch-section .video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: 0.9rem;
  overflow: hidden;
  box-shadow: 0 3px 16px rgba(0,0,0,0.18);
}

.watch-section iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.watch-note {
  margin-top: 1rem;
}

.faq-item {
  border-radius: 0.6rem;
  border: 1px solid #e0e0e0;
  margin-bottom: 0.7rem;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 0.8rem 1rem;
  border: none;
  background: #fafafa;
  font-weight: 600;
  cursor: pointer;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 1rem;
  transition: max-height 0.25s ease;
}

.faq-answer p {
  margin: 0.7rem 0 0.9rem;
}

.faq-item.open .faq-answer {
  max-height: 200px;
}

.contact {
  text-align: center;
}

.small-note {
  font-size: 0.85rem;
  color: #555;
  margin-top: 0.8rem;
}

.site-footer {
  text-align: center;
  padding: 1rem 0.5rem 1.5rem;
  font-size: 0.85rem;
  color: #666;
}

/* Responsive */
@media (min-width: 720px) {
  .hero-content h2 {
    font-size: 2.6rem;
  }
  .section {
    padding: 3rem 1.5rem;
  }
  .card-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 720px) {
  .main-nav {
    position: absolute;
    right: 0;
    top: 56px;
    flex-direction: column;
    background: var(--red);
    padding: 0.8rem 1.2rem;
    display: none;
  }
  .main-nav.show {
    display: flex;
  }
  .nav-toggle {
    display: block;
  }
}
