* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth; /* Smooth scrolling */
}
/* Basic Body Styles */
body {
  font-family: 'Lora', serif; /* Elegant, readable font */
  line-height: 1.8;
  color: #333;
  margin: 0;
  padding: 0 1rem;
  margin-inline: auto;
  background-color: #fdfdfb;
}

h1,
h2,
h3 {
  font-family: 'Playfair Display', serif;
  color: #333;
  text-align: center;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2rem;
  margin-top: 2rem;
  color: #7b1e1e;
}

h2 {
  font-size: 1.75rem;
  margin-top: 0.5rem;
}

h3 {
  font-size: 1.5rem;
  margin-top: 2rem;
  border-bottom: 1px solid #e0d9ce;
  padding-bottom: 0.25rem;
}

strong {
  display: block;
  margin-top: 1rem;
  font-weight: bold;
  color: #4a3522;
  text-align: center;
}

p {
  margin-bottom: 1rem;
  text-align: justify;
  font-size: 1.05rem;
}

section {
  max-width: 1100px;
  margin: 0 auto;
  margin-bottom: 2.5rem;
  padding: 0 1rem;
  background-color: #fffdf7;
  border-left: 5px solid #d4af37;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.last-section {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0);
}

br {
  margin-bottom: 0.5rem;
}

.back-home-wrapper {
  margin-top: 5rem;
  text-align: center;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 4rem;
}

.back-home-button {
  font-size: 0.95rem;
  color: #2a3f5f; /* Royal Blue/Navy */
  text-decoration: none;
  border: 1px solid #2a3f5f;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
}

.back-home-button:hover {
  background-color: #2a3f5f;
  color: #fff;
}

/* Elegant, Glowing Footer */
.site-footer {
  position: relative;
  background: #04132e;
  color: #f3f3f3;
  text-align: center;
  padding: 2rem 2rem 2rem;
  font-family: 'Lora', serif;
  overflow: hidden;

  margin-left: -1rem;
  margin-right: -1rem;
}

.footer-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.site-footer h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: #d4af37;
  margin-bottom: 1rem;
}

.footer-quote {
  font-size: 1.1rem;
  font-style: italic;
  color: #e0d9ce;
  margin-bottom: 2rem;
  text-align: center;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.footer-nav a {
  color: #f3f3f3;
  text-decoration: none;
  font-size: 1.1rem;
  transition: color 0.3s ease;
  text-align: center;
}

.footer-nav a:hover {
  color: #d4af37;
}

.footer-h3 {
  border-bottom: none;
}

.footer-bottom {
  font-size: 0.9rem;
  color: #ccc;
  text-align: center;
}

/* ========== RESPONSIVE BREAKPOINTS ========== */

/* 🌐 Smaller Desktops (84em / 1344px) */
@media (max-width: 84em) {
  section {
    max-width: 1000px;
    padding: 1.2rem;
  }

  .site-footer h3 {
    font-size: 1.8rem;
  }
}

/* 💻 Large Laptops (75em / 1200px) */
@media (max-width: 75em) {
  h1 {
    font-size: 1.8rem;
  }
  h2 {
    font-size: 1.6rem;
  }
  p {
    font-size: 1rem;
  }
}

/* 📱 Tablets Landscape (64em / 1024px) */
@media (max-width: 64em) {
  section {
    padding: 1rem;
  }
  .footer-nav {
    gap: 1.5rem;
  }
}

/* 📱 Tablets Portrait (48em / 768px) */
@media (max-width: 48em) {
  section {
    padding: 1rem;
  }
  h1 {
    font-size: 1.6rem;
  }
  .site-footer {
    padding: 1.5rem;
  }
  .footer-nav {
    flex-direction: column;
    gap: 1rem;
  }
}

/* 📱 Small Tablets/Phones (34em / 544px) */
@media (max-width: 34em) {
  h1 {
    font-size: 1.4rem;
  }
  h2 {
    font-size: 1.3rem;
  }
  p {
    font-size: 0.95rem;
  }
}

/* 📱 Phones (26em / 416px) */
@media (max-width: 26em) {
  h1 {
    font-size: 1.2rem;
  }
  section {
    padding: 0.6rem;
  }
  .footer-quote {
    font-size: 1rem;
  }
  .footer-bottom {
    font-size: 0.8rem;
  }
}

/* 📱 Extra Small Phones (20em / 320px) */
@media (max-width: 20em) {
  h1 {
    font-size: 1rem;
  }
  p {
    font-size: 0.9rem;
  }
  .back-home-button {
    font-size: 0.85rem;
    padding: 0.4rem 0.8rem;
  }
}
