@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap');

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

body {
  font-family: 'Inter', sans-serif;
  background: #f5f4f0;
  color: #2c2c2a;
  font-size: 17px;
  line-height: 1.9;
  -webkit-text-size-adjust: 100%;
}

.page {
  max-width: 700px;
  margin: 0 auto;
  background: white;
  min-height: 100vh;
}

/* HEADER */
.header {
  background: linear-gradient(135deg, #1a5c3a 0%, #0f3d26 100%);
  color: white;
  padding: 16px 20px 20px;
}

.header h1 {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 6px;
}

.header .subtitle {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 16px;
}

.lang-toggle {
  display: flex;
  gap: 6px;
  margin-bottom: 12px;
}

.lang-toggle a {
  font-size: 14px;
  padding: 4px 14px;
  border-radius: 20px;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.lang-toggle a.active {
  background: rgba(255, 255, 255, 0.95);
  color: #0f3d26;
  font-weight: 600;
  border-color: transparent;
}

.lang-toggle a:not(.active) {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.85);
}

/* CONTENT */
.content {
  padding: 28px 20px 32px;
}

/* DAY CARDS */
.day-card {
  margin-bottom: 24px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #e8e6e0;
}

.day-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 10px;
}

.day-header.green {
  background: #1a5c3a;
}

.day-header.purple {
  background: #4a3fa0;
}

.day-header.amber {
  background: #b56a00;
}

.day-header.blue {
  background: #1a4a7a;
}

.day-header.gray {
  background: #555550;
}

.day-num {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

.day-info {
  flex: 1;
}

.day-date {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2px;
}

.day-title {
  font-size: 17px;
  font-weight: 700;
  color: white;
  line-height: 1.4;
}

.day-time-badge {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.9);
  text-align: right;
  flex-shrink: 0;
}

.day-body {
  padding: 20px;
  background: white;
}

/* FREE DAY */
.free-day-body {
  padding: 20px;
  background: #fafaf8;
}

.free-day-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 12px;
}

.free-suggestion {
  background: white;
  border: 1px solid #e8e6e0;
  border-radius: 10px;
  padding: 14px 16px;
}

.free-suggestion h4 {
  font-size: 15px;
  font-weight: 600;
  color: #1a5c3a;
  margin-bottom: 3px;
}

.free-suggestion p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* TIMELINE */
.timeline {
  position: relative;
  padding-left: 26px;
  margin-bottom: 16px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 6px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: #e0ede7;
}

.tl-item {
  position: relative;
  margin-bottom: 18px;
}

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

.tl-dot {
  position: absolute;
  left: -23px;
  top: 7px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.tl-dot.green {
  background: #1a5c3a;
}

.tl-dot.purple {
  background: #4a3fa0;
}

.tl-dot.amber {
  background: #b56a00;
}

.tl-dot.blue {
  background: #1a4a7a;
}

.tl-dot.gray {
  background: #888;
}

.tl-time {
  font-size: 12px;
  font-weight: 600;
  color: #888;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.tl-text {
  font-size: 16px;
  color: #333;
  line-height: 1.8;
}

.tl-text strong {
  color: #1a1a18;
  font-weight: 600;
}

.tl-text em {
  font-size: 15px;
  color: #666;
}

/* INCLUSIONS */
.incl-section {
  border-top: 1px solid #f0ede8;
  padding-top: 18px;
  margin-top: 8px;
}

.incl-title {
  font-size: 13px;
  font-weight: 600;
  color: #888;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.incl-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.incl-col h4 {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
  padding: 4px 10px;
  border-radius: 4px;
}

.incl-col.included h4 {
  background: #e6f4ec;
  color: #1a5c3a;
}

.incl-col.excluded h4 {
  background: #fce8e8;
  color: #a02020;
}

.incl-list {
  list-style: none;
  padding: 0;
}

.incl-list li {
  font-size: 15px;
  color: #555;
  padding: 3px 0;
  display: flex;
  align-items: flex-start;
  gap: 7px;
  line-height: 1.6;
}

.incl-list li::before {
  font-size: 11px;
  margin-top: 5px;
  flex-shrink: 0;
}

.incl-col.included .incl-list li::before {
  content: '✓';
  color: #1a5c3a;
  font-weight: 700;
}

.incl-col.excluded .incl-list li::before {
  content: '✗';
  color: #a02020;
}

/* CHILDREN */
.children-box {
  background: #f5f4f0;
  border-radius: 8px;
  padding: 14px 16px;
  margin-top: 16px;
}

.children-box h4 {
  font-size: 13px;
  font-weight: 600;
  color: #888;
  margin-bottom: 8px;
}

.children-box span {
  display: block;
  font-size: 15px;
  color: #555;
  padding: 2px 0;
}

/* NOTE */
.note-box {
  background: #fffbec;
  border-left: 3px solid #e8b84b;
  border-radius: 0 8px 8px 0;
  padding: 14px 16px;
  margin-top: 16px;
  font-size: 15px;
  color: #6b5200;
  line-height: 1.8;
}

.note-box strong {
  display: block;
  margin-bottom: 2px;
}

/* TIPS */
.tips-section {
  background: #f0f7f3;
  border-radius: 12px;
  padding: 22px 20px;
  margin-top: 28px;
}

.tips-section h2 {
  font-size: 19px;
  font-weight: 700;
  color: #1a5c3a;
  margin-bottom: 14px;
}

.tips-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.tip-item {
  background: white;
  border-radius: 8px;
  padding: 14px 16px;
  border: 1px solid #d0e8da;
}

.tip-item h4 {
  font-size: 15px;
  font-weight: 600;
  color: #1a5c3a;
  margin-bottom: 3px;
}

.tip-item p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
}

/* ACTIVITIES LIST */
.activities {
  margin-top: 6px;
  padding-left: 4px;
}

.activities span {
  display: block;
  font-size: 15px;
  color: #555;
  padding: 1px 0;
}

@media (min-width: 600px) {
  .content {
    padding: 36px 32px 40px;
  }

  .header {
    padding: 44px 32px 36px;
  }

  .header h1 {
    font-size: 30px;
  }

  .incl-grid {
    grid-template-columns: 1fr 1fr;
  }

  .free-day-grid {
    grid-template-columns: 1fr 1fr;
  }

  .tips-grid {
    grid-template-columns: 1fr 1fr;
  }

  .day-body {
    padding: 24px;
  }

  .free-day-body {
    padding: 24px;
  }
}

@media print {
  body {
    background: white;
    font-size: 14px;
  }

  .page {
    max-width: 100%;
  }

  .day-card {
    break-inside: avoid;
  }
}
