/* ===================================
   JULEBORD - FESTIVE CHRISTMAS THEME
   =================================== */

* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --festive-red: #c41e3a;
  --gold: #d4af37;
  --dark-green: #1b4332;
  --cream: #fef8f3;
  --white: #ffffff;
  --text-dark: #1a1a1a;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Raleway', Georgia, serif;
  color: var(--text-dark);
  background: linear-gradient(135deg, #fef8f3 0%, #fff5e6 100%);
  line-height: 1.6;
}

.page-wrapper { min-height: 100vh; display: flex; flex-direction: column; }
.main { flex: 1; }

.header {
  background: var(--white);
  border-bottom: 3px solid var(--festive-red);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 12px rgba(196, 30, 58, 0.12);
}

.header__container { max-width: 1200px; margin: 0 auto; padding: 1rem; display: flex; align-items: center; }
.header__logo img { height: 50px; width: auto; }

.hero {
  background: linear-gradient(135deg, var(--festive-red) 0%, #b01729 100%);
  color: white;
  padding: 4rem 1rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.hero::before { content: '❄️'; position: absolute; font-size: 150px; opacity: 0.1; top: -50px; left: -30px; }
.hero::after { content: '❄️'; position: absolute; font-size: 120px; opacity: 0.1; bottom: -40px; right: -20px; }

.hero__content { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
.hero__title { font-size: clamp(2rem, 6vw, 3.5rem); font-weight: 700; margin-bottom: 1rem; line-height: 1.1; text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); }
.hero__subtitle { font-size: 1.2rem; font-weight: 400; margin-bottom: 1rem; max-width: 700px; margin-left: auto; margin-right: auto; opacity: 0.95; }

.section { padding: 4rem 1rem; }
.section--features { background: linear-gradient(180deg, var(--cream) 0%, #fff5e6 100%); }
.section--included { background: linear-gradient(180deg, #fff5e6 0%, var(--cream) 100%); border-top: 3px solid var(--gold); border-bottom: 3px solid var(--gold); }
.section--testimonial { background: linear-gradient(135deg, var(--dark-green) 0%, #2d6a4f 100%); color: white; }
.section--faq { background: linear-gradient(180deg, var(--cream) 0%, #fff5e6 100%); }
.section--booking { background: linear-gradient(135deg, var(--festive-red) 0%, #b01729 100%); color: white; }

.container { max-width: 1200px; margin: 0 auto; }

.section__title { font-size: clamp(1.8rem, 5vw, 2.8rem); font-weight: 700; margin-bottom: 2.5rem; color: var(--festive-red); text-align: center; }
.section__title::before { content: '✨'; margin-right: 0.5rem; }
.section__title::after { content: '✨'; margin-left: 0.5rem; }

.image-placeholder { width: 100%; aspect-ratio: 16/9; background: linear-gradient(135deg, #e8d4b0 0%, #d4a574 100%); border-radius: 15px; display: flex; align-items: center; justify-content: center; border: 3px dashed var(--gold); margin: 2rem 0; position: relative; }

.image-placeholder__content { text-align: center; }
.image-placeholder__content i { font-size: 4rem; color: var(--festive-red); margin-bottom: 1rem; }
.image-placeholder__content p { color: var(--festive-red); font-weight: 600; font-size: 1.1rem; }

.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 2rem 0; }

.feature-card { background: var(--white); border-radius: 15px; padding: 2.5rem 2rem; border-left: 5px solid var(--gold); box-shadow: 0 4px 15px rgba(196, 30, 58, 0.08); transition: all 0.3s ease; }
.feature-card:hover { transform: translateY(-8px); border-left-color: var(--festive-red); box-shadow: 0 8px 25px rgba(196, 30, 58, 0.15); }

.feature-card__icon { font-size: 2.5rem; margin-bottom: 1rem; }
.feature-card__title { font-size: 1.2rem; font-weight: 700; margin-bottom: 0.75rem; color: var(--festive-red); }
.feature-card__text { font-size: 0.95rem; line-height: 1.7; color: var(--text-dark); }

.timeline { background: var(--white); border-radius: 10px; border-left: 5px solid var(--gold); padding: 2rem; margin: 2rem 0; box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05); }
.timeline__title { font-size: 1.1rem; font-weight: 700; margin-bottom: 1.5rem; color: var(--festive-red); }
.timeline__items { display: flex; flex-direction: column; gap: 1.25rem; }
.timeline__item { display: flex; gap: 1rem; padding-left: 1rem; border-left: 3px solid var(--gold); }
.timeline__time { font-weight: 700; color: var(--festive-red); white-space: nowrap; font-size: 0.85rem; flex-shrink: 0; }
.timeline__event { color: var(--text-dark); font-size: 0.95rem; }

.cost-box { background: linear-gradient(135deg, rgba(196, 30, 58, 0.05) 0%, rgba(212, 175, 55, 0.05) 100%); border: 2px solid var(--gold); border-radius: 15px; padding: 2.5rem; margin: 2rem 0; }
.cost-box p { margin-bottom: 1.5rem; font-size: 0.95rem; color: var(--text-dark); }

.cost-list { list-style: none; display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1rem; }
.cost-list li { display: flex; gap: 0.75rem; align-items: flex-start; font-size: 0.95rem; color: var(--text-dark); }
.cost-list li::before { content: '🎄'; flex-shrink: 0; font-size: 1.2rem; }

.faq-item { background: var(--white); border-radius: 10px; margin-bottom: 1rem; box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05); overflow: hidden; }

.faq-item summary {
  padding: 1.5rem;
  background: linear-gradient(90deg, rgba(196, 30, 58, 0.05) 0%, rgba(212, 175, 55, 0.05) 100%);
  font-weight: 600;
  color: var(--festive-red);
  cursor: pointer;
  user-select: none;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.faq-item summary:hover { background: linear-gradient(90deg, rgba(196, 30, 58, 0.1) 0%, rgba(212, 175, 55, 0.1) 100%); }
.faq-item details[open] summary { background: linear-gradient(90deg, rgba(196, 30, 58, 0.15) 0%, rgba(212, 175, 55, 0.1) 100%); }

.faq-item summary::after { content: '+'; float: right; font-size: 1.5rem; }
.faq-item details[open] summary::after { content: '−'; }

.faq-item p { padding: 1.5rem; color: var(--text-dark); font-size: 0.95rem; line-height: 1.8; border-top: 1px solid #f0f0f0; margin: 0; }

.testimonial { background: rgba(255, 255, 255, 0.12); border-left: 5px solid var(--gold); padding: 2.5rem; border-radius: 10px; max-width: 700px; margin: 2rem auto; }

.testimonial__quote { font-size: 1.3rem; font-style: italic; font-weight: 400; margin-bottom: 1.5rem; line-height: 1.8; }
.testimonial__author { font-weight: 700; margin-bottom: 0.5rem; font-size: 1rem; }
.testimonial__context { font-size: 0.85rem; opacity: 0.85; }

.booking-form { background: rgba(255, 255, 255, 0.15); border-radius: 15px; border: 2px solid rgba(255, 255, 255, 0.3); padding: 2.5rem; max-width: 650px; margin: 2rem auto; color: white; backdrop-filter: blur(10px); }

.form-group { margin-bottom: 1.5rem; }
.form-label { display: block; font-weight: 600; margin-bottom: 0.5rem; color: white; font-size: 0.95rem; }

.form-input {
  width: 100%;
  padding: 0.8rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  background: rgba(255, 255, 255, 0.9);
  color: var(--text-dark);
  transition: all 0.3s ease;
}

.form-input:focus { outline: none; border-color: white; box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2); background: white; }

.form-button {
  width: 100%;
  padding: 1rem;
  background: var(--gold);
  color: var(--festive-red);
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1rem;
  text-transform: uppercase;
}

.form-button:hover { background: white; transform: scale(1.02); box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2); }

.footer { background: var(--dark-green); color: white; padding: 2rem 1rem; margin-top: auto; text-align: center; }

.social-links { display: flex; justify-content: center; gap: 1.5rem; margin-top: 1.5rem; }

.social-link { display: flex; align-items: center; justify-content: center; width: 45px; height: 45px; background: rgba(255, 255, 255, 0.15); color: white; border-radius: 50%; transition: all 0.3s ease; border: 2px solid rgba(255, 255, 255, 0.2); }

.social-link:hover { background: var(--gold); color: var(--festive-red); transform: translateY(-3px); }

@media (max-width: 768px) {
  .section { padding: 2.5rem 1rem; }
  .hero { padding: 2.5rem 1rem; }
  .hero__title { font-size: 1.8rem; }
  .features-grid { grid-template-columns: 1fr; }
  .booking-form { padding: 1.5rem; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 1.4rem; }
  .section { padding: 1.75rem 1rem; }
  .booking-form { padding: 1.25rem; }
}
