/* Base */

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  background: #f7f7f8;
  color: #1c1c1c;
  line-height: 1.5;
}

/* Layout */

.wrap {
  max-width: 960px;
  margin: 0 auto;
  padding: 24px;
}

/* Typography */

h1 {
  font-size: 2rem;
  margin-bottom: 6px;
}

h2 {
  font-size: 1.2rem;
  margin-top: 0;
}

h3 {
  margin-top: 0;
}

.subhead {
  color: #555;
  margin-top: 0;
}

.badge {
  display: inline-block;
  background: #ececf1;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  margin-top: 12px;
  color: #444;
}

/* Grid system */

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

/* 2 columns on wider screens */

@media (min-width: 768px) {
  .grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Cards */

.card {
  background: #ffffff;
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

/* Links – remove default blue */

/* Links */

a {
  color: #5a4bff;        /* brand accent */
  text-decoration: none;
  font-weight: 600;
  transition: color 0.15s ease;
}

a:hover {
  color: #3d2fd1;
}


/* Lists inside cards */

.card ul {
  padding-left: 18px;
  margin: 10px 0;
}

.card li {
  margin-bottom: 6px;
}

/* Footer */

.footer {
  margin-top: 40px;
  padding: 20px 0;
  background: #ececf1;
  font-size: 0.85rem;
  color: #555;
}

/* Top Navigation */

.nav {
  background: #ffffff;
  border-bottom: 1px solid #e6e6e6;
}

.nav-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-left {
  font-weight: 700;
  font-size: 1.1rem;
  color: #111;
}

.nav-links {
  display: flex;
  gap: 18px;
}

.nav-links a {
  color: #444;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: 6px;
  transition: background 0.15s ease, color 0.15s ease;
}

.nav-links a:hover {
  background: #f1f1f5;
  color: #5a4bff;
}

.hero-image {
  margin: 1.5rem 0 2rem 0;
  border-radius: 14px;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-image{
  margin: 18px 0 22px;
  border-radius: 14px;
  overflow: hidden;
  height: 320px;
  background-image: url("/assets/images/christmas.webp");
  background-size: cover;
  background-position: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

@media (max-width: 768px){
  .hero-image{
    height: 200px;
    border-radius: 12px;
  }
}

