/* Hollidays.com — minimal stylesheet, no frameworks */

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

:root {
  --bg: #fafaf7;
  --ink: #1a1a1a;
  --muted: #666;
  --accent: #c0392b;
  --accent-soft: #fdf2f0;
  --border: #e5e5e0;
  --card: #ffffff;
}

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
  position: sticky;
  top: 0;
  z-index: 10;
}
.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.logo {
  font-weight: 700;
  font-size: 22px;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.5px;
}
.logo span { color: var(--accent); }
nav a {
  margin-left: 22px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 500;
}
nav a:hover { color: var(--accent); }

/* Hero */
.hero {
  padding: 70px 0 50px;
  text-align: center;
  background: linear-gradient(180deg, #fff 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border);
}
.hero h1 {
  font-size: 42px;
  letter-spacing: -1px;
  margin-bottom: 16px;
  line-height: 1.15;
}
.hero .lead {
  font-size: 19px;
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto 24px;
}
.hero .note {
  font-size: 15px;
  color: var(--muted);
  background: var(--accent-soft);
  display: inline-block;
  padding: 10px 18px;
  border-radius: 6px;
  border: 1px solid #f5d6d0;
}

/* Sections */
section { padding: 60px 0; }
section h2 {
  font-size: 28px;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

/* Country grid */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
}
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px 18px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 500;
  transition: border-color 0.15s, transform 0.15s;
}
.card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}
.more { margin-top: 20px; }
.more a { color: var(--accent); text-decoration: none; font-weight: 500; }
.more a:hover { text-decoration: underline; }

/* Two-column info */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.two-col p { margin-bottom: 14px; color: #333; }
.info { background: #fff; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

/* Event list */
.event-list { list-style: none; }
.event-list li {
  display: grid;
  grid-template-columns: 90px 1fr 2fr;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  align-items: baseline;
}
.event-list li:last-child { border-bottom: none; }
.event-list time {
  font-weight: 600;
  color: var(--accent);
}
.event-list strong { font-weight: 600; }
.event-list span { color: var(--muted); font-size: 15px; }

/* Country pages */
.country-block {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px 28px;
  margin-bottom: 24px;
}
.country-block h3 {
  font-size: 22px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.holiday-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 12px;
}
.holiday-table th, .holiday-table td {
  text-align: left;
  padding: 10px 8px;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
}
.holiday-table th {
  font-weight: 600;
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.holiday-table tr:last-child td { border-bottom: none; }

/* Footer */
.site-footer {
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 30px 0;
  margin-top: 40px;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
}
.site-footer .small { margin-top: 6px; font-size: 13px; opacity: 0.8; }

/* About page */
.prose {
  max-width: 680px;
  margin: 0 auto;
}
.prose h2 { margin-top: 32px; }
.prose p { margin-bottom: 16px; color: #2a2a2a; }

/* Callout */
.callout {
  background: var(--accent-soft);
  border: 1px solid #f5d6d0;
  border-radius: 8px;
  padding: 16px 20px;
  font-size: 15px;
  color: #5a2a22;
  margin-bottom: 20px;
}

/* Bridge day cards */
.bridge-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  margin-bottom: 20px;
}
.bridge-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 18px 20px;
  border-left: 4px solid var(--border);
}
.bridge-card.auto { border-left-color: #4a9d4a; }
.bridge-card.bridge { border-left-color: #d4a017; }
.bridge-card.golden { border-left-color: var(--accent); }
.bridge-card .badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--muted);
  margin-bottom: 6px;
}
.bridge-card h4 {
  font-size: 17px;
  margin-bottom: 8px;
  font-weight: 600;
}
.bridge-card p {
  font-size: 14px;
  color: #444;
  line-height: 1.5;
}

/* Travel blocks */
.travel-block {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px 28px;
  margin-bottom: 24px;
}
.travel-block h2 {
  font-size: 22px;
  margin-bottom: 6px;
  letter-spacing: -0.3px;
}
.travel-block .dates {
  color: var(--accent);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 14px;
}
.suggestions {
  list-style: none;
  padding: 0;
}
.suggestions li {
  padding: 10px 0;
  border-bottom: 1px solid #f0f0eb;
  font-size: 15px;
  line-height: 1.55;
  color: #333;
}
.suggestions li:last-child { border-bottom: none; }
.suggestions strong { color: var(--ink); }

/* Warning list */
.warning-list {
  list-style: none;
  padding: 0;
  background: #fff8e6;
  border: 1px solid #f0d97a;
  border-radius: 8px;
  padding: 8px 24px;
}
.warning-list li {
  padding: 12px 0;
  border-bottom: 1px solid #f0d97a;
  font-size: 15px;
  color: #5a4500;
}
.warning-list li:last-child { border-bottom: none; }

/* Mobile */
@media (max-width: 640px) {
  .hero h1 { font-size: 30px; }
  .hero .lead { font-size: 17px; }
  .two-col { grid-template-columns: 1fr; gap: 24px; }
  .event-list li { grid-template-columns: 80px 1fr; }
  .event-list span { grid-column: 1 / -1; padding-left: 96px; }
  nav a { margin-left: 14px; font-size: 15px; }
  .logo { font-size: 19px; }
  section { padding: 40px 0; }
}
