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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: #f8f5f0;
  color: #2d2d2d;
  line-height: 1.7;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  background:
    url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1800&auto=format&fit=crop') center center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(10,30,60,0.72) 0%, rgba(20,80,120,0.55) 60%, rgba(200,100,20,0.3) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 2rem 1.5rem;
  color: #fff;
}

.hero-eyebrow {
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffd280;
  margin-bottom: 1rem;
}

.hero-eyebrow i { margin-right: 6px; }

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  line-height: 1.15;
  margin-bottom: 0.5rem;
}

.hero-content h1 span {
  color: #ffd280;
  display: block;
}

.hero-sub {
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.88);
  margin: 1rem 0 2rem;
}

.btn-hero {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  background: linear-gradient(135deg, #e8822a, #d4541a);
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.03em;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(232,130,42,0.45);
}

.btn-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(232,130,42,0.55);
}

.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  line-height: 0;
  z-index: 2;
}

.hero-wave svg { width: 100%; height: 80px; display: block; }

/* ===== INTRO STRIP ===== */
.intro-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem 3rem;
  padding: 2.5rem 2rem;
  background: #f8f5f0;
  border-bottom: 1px solid #e8e0d4;
}

.strip-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: #555;
}

.strip-item i {
  font-size: 1.2rem;
  color: #e8822a;
}

/* ===== SECTION TITLE ===== */
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  text-align: center;
  color: #1a2e44;
  margin-bottom: 2.5rem;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #e8822a, #ffd280);
  border-radius: 2px;
  margin: 0.6rem auto 0;
}

/* ===== DAYS SECTION ===== */
.days-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

/* ===== DAY CARD ===== */
.day-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 30px rgba(0,0,0,0.08);
  margin-bottom: 3rem;
  transition: transform 0.3s;
}

.day-card:hover { transform: translateY(-4px); }

.day-header {
  padding: 2.2rem 2.5rem;
  color: #fff;
  position: relative;
}

.day1-bg { background: linear-gradient(135deg, #1a3a5c 0%, #2e6da4 100%); }
.day2-bg { background: linear-gradient(135deg, #1a5c3a 0%, #2ea47a 100%); }
.day3-bg { background: linear-gradient(135deg, #7a3a10 0%, #e8822a 100%); }

.day-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-bottom: 0.2rem;
}

.day-date {
  font-size: 0.9rem;
  font-weight: 400;
  opacity: 0.85;
  margin-bottom: 0.5rem;
}

.day-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1.2;
}

/* ===== TIMELINE ===== */
.day-body { padding: 2rem 2.5rem 2.5rem; }

.timeline { position: relative; }

.timeline::before {
  content: '';
  position: absolute;
  left: 18px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, #e8e0d4, #d4c8b8);
  border-radius: 1px;
}

.tl-item {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 1.8rem;
  position: relative;
}

.tl-item:last-child { margin-bottom: 0; }

.tl-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e8822a, #ffd280);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.85rem;
  z-index: 1;
  box-shadow: 0 2px 8px rgba(232,130,42,0.35);
}

.tl-content { flex: 1; padding-top: 6px; }

.tl-time {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #e8822a;
  margin-bottom: 0.2rem;
}

.tl-content h4 {
  font-size: 1.05rem;
  font-weight: 600;
  color: #1a2e44;
  margin-bottom: 0.4rem;
}

.tl-content p {
  font-size: 0.92rem;
  color: #555;
  line-height: 1.65;
  margin-bottom: 0.5rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  font-weight: 500;
  background: #f0ece4;
  color: #7a6a55;
  padding: 3px 10px;
  border-radius: 20px;
  margin-right: 6px;
  margin-top: 2px;
}

.tag.highlight {
  background: linear-gradient(135deg, #ffd280, #e8822a);
  color: #fff;
}

/* ===== TIPS SECTION ===== */
.tips-section {
  background: #1a2e44;
  padding: 4rem 1.5rem;
  color: #fff;
}

.tips-section .section-title { color: #fff; }

.tips-grid {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.tip-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 1.8rem 1.5rem;
  transition: background 0.2s, transform 0.2s;
}

.tip-card:hover {
  background: rgba(255,255,255,0.11);
  transform: translateY(-3px);
}

.tip-card i {
  font-size: 1.6rem;
  color: #ffd280;
  margin-bottom: 0.8rem;
  display: block;
}

.tip-card h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.5rem;
}

.tip-card p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
}

/* ===== FOOTER ===== */
.site-footer {
  background: #0f1e2e;
  color: rgba(255,255,255,0.6);
  text-align: center;
  padding: 2.5rem 1rem;
  font-size: 0.88rem;
}

.footer-inner { max-width: 600px; margin: 0 auto; }

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.footer-logo i { color: #ffd280; }

.footer-logo span {
  font-size: 0.9rem;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
}

.footer-domain {
  margin-top: 0.8rem;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.3);
}

.site-footer p { margin-top: 0.3rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 600px) {
  .day-header { padding: 1.5rem 1.2rem; }
  .day-body { padding: 1.5rem 1.2rem; }
  .timeline::before { left: 16px; }
  .tl-icon { width: 34px; height: 34px; font-size: 0.78rem; }
  .tl-item { gap: 0.9rem; }
}
