/* For tablets and smaller laptops */
@media (max-width: 1024px) {
  header nav {
    flex-wrap: wrap;
    gap: 10px;
    padding: 10px;
  }

  section.content {
    padding: 30px 20px;
  }

  .hero-names {
    font-size: clamp(2.5rem, 5vw, 3.2rem);
  }
}

/* For mobile phones */
@media (max-width: 600px) {
  header nav {
    flex-direction: column;
    gap: 8px;
  }

  .hero-names {
    font-size: 2.2rem;
    line-height: 1.05;
  }

  .hero-names span {
    display: block;
  }

  .countdown-grid {
    flex-direction: column;
    align-items: center;
  }

  section.content {
    padding: 20px 15px;
  }

  .site-title {
    font-size: 1.2rem;
  }
}

body {
  font-family: 'Mrs Eaves Roman All Small Caps', serif;
  margin: 0;
  color: #333;
  background-color: #fff;
}

/* header on every page */
header {
  background-color: #e6efe8;
  text-align: center;
  padding-top: 10px;
}

.site-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #2f4f4f;
  margin-bottom: 8px;
}

header nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 10px 15px 15px;
}

header nav a {
  text-decoration: none;
  color: #2f4f4f;
  font-weight: 500;
}

.registry-list {
  text-align: center;
  padding: 60px 20px;
}

.registry-links {
  list-style: none;
  padding: 0;
  margin: 40px 0 0;
}

.registry-links li {
  margin: 15px 0;
}

.registry-links a {
  font-size: 1.2rem;
  text-decoration: none;
  color: #2f4f4f;
  font-weight: 600;
  border-bottom: 2px solid #c5d9c7;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.registry-links a:hover {
  color: #4a6b4a;
  border-color: #4a6b4a;
}

.countdown {
  text-align: center;
  padding: 40px 20px 60px;
}

.countdown h2 {
  margin-bottom: 25px;
  color: #2f4f4f;
  font-size: 1.2rem;
}

.countdown-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.countdown-item {
  border-radius: 12px;
  width: 110px;
  padding: 15px 10px;
}

.countdown-item span {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  color: #2f4f4f;
}

.countdown-item small {
  display: block;
  margin-top: 6px;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  color: #2f4f4f;
  text-transform: uppercase;
}

/* hero only on home page */
.home .hero {
  position: relative;
  text-align: center;
}

/* HERO IMAGE SECTION */
.hero-image img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  display: block;
}

/* NAMES BELOW IMAGE */
.hero-names-section {
  text-align: center;
  padding: 60px 20px 40px;
  background-color: #fff;
}

.hero-names {
  font-family: "Elms Sans", sans-serif;
  font-size: clamp(3rem, 6vw, 4rem);
  color: #2f4f4f;
  line-height: 1.1;
  margin: 0;
}

.hero-names span {
  display: block; /* makes each name on its own line */
}

.hero-names .ampersand {
  font-family: 'Playfair Display', serif;
  display: block;
  font-size: 3rem;   /* adjust this number for bigger/smaller */
  line-height: 1;
  color: #2f4f4f;    /* matches your other text color */
  margin: 0.2em 0;
}

.wedding-date {
  font-size: 1.2rem;
  color: #555;
  margin-top: 15px;
}
/* content */
section.content {
  padding: 40px;
  text-align: center;
}

footer {
  background-color: #e6efe8;
  text-align: center;
  padding: 10px;
  color: #2f4f4f;
}
