*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

html, body {
  width: 100%; 
  height: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
  background: var(--bg);
  color: var(--text);
  transition: background 0.2s, color 0.2s;
}

a {
  color: var(--link);
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 8px;
}

:root {
  --bg: #ffffff;
  --header-bg: rgba(255, 255, 255, 1);
  --menu-bg: rgba(255, 255, 255, 1); 
  --card-bg: #fafafa;
  --card-bg-secondary: #f0f0f0;
  --footer-bg: #eee;
  --nav-hover: #e7e7e7;
  --button: #87CEEB;
  --button-text: #fff;
  --text: #111111;
  --link: #0056b3;
  --border: #d0d0d0;
  --button-border: #222;
  --icon: #222222;
  --accent: #87CEEB;
  --hero-accent: rgba(0,0,0,0.08);
  --hover-bg: #e9ecef;
}

body.dark {
  --bg: #121212;
  --header-bg: rgba(20, 20, 20, 1);
  --menu-bg: rgba(0, 0, 0, 1);
  --card-bg: #1e1e1e;
  --card-bg-secondary: #151515;
  --footer-bg: #1a1a1a;
  --nav-hover: #222222;
  --button: #87CEEB;
  --button-text: #fff;
  --text: #eaeaea;
  --link: #4da3ff;
  --border: #333;
  --button-border: #999;
  --icon: #eaeaea;
  --accent: #87CEEB;
  --hero-accent: rgba(0,0,0,0.3);
  --hover-bg: #15222b;
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: transparent;
}

.header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--header-bg);
  backdrop-filter: blur(30px);
  z-index: -1;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.8rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  border-bottom: 1px solid var(--border);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.brand img {
  height: 35px;
  width: 35px;
  border-radius: 20%;
  object-fit: contain;
}

.brand h1 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
  white-space: normal;
}

.nav {
  display: flex;
  gap: 1rem;
}

.nav a {
  font-weight: 500;
  color: var(--text);
  transition: color 0.2s, background 0.2s;
  padding: 4px 6px;
  border-radius: 8px;
  white-space: nowrap;
}

.nav a:hover {
  background: var(--nav-hover);
}

.controls {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.theme-toggle {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 28px;
  height: 28px;
}

.theme-toggle svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 28px;
  height: 28px;
  fill: var(--icon);
  stroke: var(--icon);
  transition: transform 0.5s ease, opacity 0.2s ease;
}

.theme-toggle .sun {
  opacity: 1;
  transform: rotate(0deg);
  z-index: 2;
}

.theme-toggle .moon {
  opacity: 0;
  transform: rotate(-50deg); 
  z-index: 1;
}

body.dark .theme-toggle .sun {
  opacity: 0;
  transform: rotate(180deg); 
}

body.dark .theme-toggle .moon {
  opacity: 1;
  transform: rotate(0deg);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
}

.verse {
  font-style: italic;
  color: var(--accent);
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  justify-content: center;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.hero.hero-centered {
  grid-template-columns: 1fr;
  justify-items: center;
  place-items: center;
}

.hero-card {
  background: var(--card-bg);
  border-radius: 12px;
  padding: 28px;
  position: relative;
  box-shadow: 0 4px 12px var(--hero-accent);
  max-width: 900px;
  margin: 0 auto;
}

.hero-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
  color: var(--accent);
  text-align: center;
}

.hero-card .verse {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--accent);
  text-align: center;
  margin-bottom: 0.8rem;
}

.hero-card .meta {
  font-size: 0.9rem;
  color: var(--text);
  opacity: 0.8;
  text-align: center;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  pointer-events: none;
  border: 1px solid var(--border);
}

.lead {
  font-size: 1.1rem;
}

.btn-centered {
  display: inline-block;
  padding: 0.7rem 2rem;
  margin-top: 1rem;
  border-radius: 50px;
  background: var(--button);
  color: var(--button-text);
  font-weight: 500;
  transition: all 0.2s ease;
  cursor: pointer;
}

.btn-centered-wrapper {
  text-align: center;
}

.btn-centered:hover {
  padding: 0.8rem 2.5rem;
}

.btn {
  display: inline-block;
  padding: 0.8rem 1.4rem;
  border-radius: 30px;
  font-weight: 600;
  text-align: center;
  margin: 0.5rem;
  background: var(--button);
  color: var(--button-text);
  transition: transform 0.2s ease, opacity 0.2s ease;
  white-space: nowrap;
}

.btn:hover {
  opacity: 0.7;
}

.content {
  background: var(--bg);
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.centered-title {
  text-align: center;
  margin-bottom: 0.5rem;
}

.section-title {
  text-align: left;
  margin-bottom: 0.5rem;
}

.card-grid {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.card {
  background: var(--card-bg);
  padding: 1rem;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.card h3 {
  margin-bottom: 0.3rem;
}

.video-row {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  scroll-snap-type: x mandatory;
}

.video-card {
  flex: 0 0 80%;
  max-width: 400px;
  background: var(--card-bg);
  border-radius: 12px;
  padding: 0.5rem;
  scroll-snap-align: start;
}

.video-card iframe {
  width: 100%;
  height: 200px;
  border-radius: 12px;
  border: none;
}

.article-card-link img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 0.5rem;
  border-radius: 12px;
}

.article-card-link p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.4;
}

.video-card a {
  text-decoration: none;
  color: inherit;
  display: block;
  padding: 0.5rem;
}

.video-card h4.section-title {
  margin-top: 0;
  margin-bottom: 0.3rem;
  font-size: 1rem;
}

.video-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.footer {
  background: var(--footer-bg);
  color: var(--text-color);
  padding: 1rem;
  font-size: 0.8rem;
}

.footer-top {
  max-width: 850px;
  margin: 1rem auto 2rem;
  text-align: left; 
  display: flex;
  flex-direction: column;
  align-items: flex-start; 
}

.footer-title {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
  line-height: 1.2;
  max-width: 600px; 
}

.footer-description {
  font-size: 0.9rem;
  line-height: 1.75;
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto;
  color: var(--text);
  text-align: left; 
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto 2rem;
}

.footer-section {
  text-align: left;
  flex: 1 1 220px;
  min-width: 200px;
}

.footer-section h3 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section li {
  margin-bottom: 0.3rem;
}

.footer a {
  color: var(--text);
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

.footer a:hover {
  opacity: 1;
}

.no-contact {
  font-style: italic;
  opacity: 0.7;
  margin-bottom: 0.3rem;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  font-size: 0.75rem; 
  opacity: 0.8;
}

.footer-bottom .name {
  text-decoration: underline;
}

.footer .meta {
  font-style: italic;
  margin-top: 0.5rem;
  font-size: 0.75rem; 
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--menu-bg);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}

.mobile-menu.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu ul {
  list-style: none;
  text-align: center;
}

.mobile-menu li {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

.mobile-menu.active li {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu.active li:nth-child(2) {
  transition-delay: 0.1s;
}

.mobile-menu.active li:nth-child(3) {
  transition-delay: 0.15s;
}

.mobile-menu.active li:nth-child(4) {
  transition-delay: 0.2s;
}

.mobile-menu.active li:nth-child(5) {
  transition-delay: 0.25s;
}

.mobile-menu.active li:nth-child(6) {
  transition-delay: 0.3s;
}

.mobile-menu.active li:nth-child(7) {
  transition-delay: 0.35s;
}

.mobile-menu a {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text);
  transition: color 0.2s ease;
}

.mobile-menu a:hover {
  color: var(--accent);
}

.mobile-theme-toggle {
  margin-top: 1rem;
  transform: scale(0.9);
}

.close-btn {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.mobile-menu.active .close-btn {
  transform: rotate(180deg);
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.daily-verse-card {
  background: var(--card-bg); 
  padding: 1.5rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  text-align: center;
  margin: 2rem auto; 
  max-width: 600px; 
  box-shadow: 0 4px 12px var(--hero-accent); 
}

.center-verse {
  font-weight: bold;
  font-style: italic;
  color: var(--accent);
  font-size: 1.1rem;
  margin: 1rem 0 0.5rem 0; 
}

#daily-reflection {
  font-weight: 500;
  font-style: normal;
  color: var(--text);
  background: var(--hover-bg);   
  padding: 1rem;
  border-left: 4px solid var(--accent);
  border-radius: 6px;
  margin: 0.5rem 0 1rem 0;      
  line-height: 1.5;
}

.center-verse,
#daily-reflection {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.center-verse.show,
#daily-reflection.show {
  opacity: 1;
  transform: translateY(0);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.hero-top {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.profile-img {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
}

.hero-info {
  flex: 1;
  text-align: center;
}

.card-grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin-top: 8px;
}

.no-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.hero-simple {
  padding: 20px;
}

.story-container {
  overflow: hidden;
  max-width: 800px;
  margin: 0 auto;
}

.story-dropdown {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}

.story-dropdown[open] {
  box-shadow: 0 4px 12px var(--hero-accent);
}

.story-summary {
  padding: 18px 20px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  outline: none;
  list-style: none;
  position: relative;
  color: var(--text);
  transition: color 0.2s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.story-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.3s ease, color 0.3s ease;
  color: var(--text);
}

.story-dropdown[open] .story-summary {
  color: var(--accent);
}

.story-dropdown[open] .story-summary .story-icon {
  transform: rotate(135deg);
  color: var(--accent);
}

.story-dropdown[open] .story-summary {
  color: var(--accent);
  transition: color 0.2s ease;
}

.story-dropdown[open] .story-summary::before {
  transform: translateY(-50%) rotate(135deg);
  color: var(--accent);
}

.story-content {
  padding: 20px;
  border-top: 1px solid var(--border);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  overflow: hidden;
  height: 0;
  transition: height 0.3s ease, padding 0.3s ease;
}

.story-content.active-padding {
  padding-bottom: 20px;
}

.story-verse {
  font-style: italic;
}

.verse-wrapper {
  margin: 1rem 0 1.5rem 0; 
  text-align: center; 
}

.simple-explanation-container {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease, padding 0.2s ease;
  background-color: var(--card-bg-secondary);
  border-radius: 5px;
  margin-top: 0.5rem;
  padding: 0 1rem;
  text-align: left;
}

.simple-explanation-container.open {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  border: 1px solid var(--border);
}

.simple-explanation-container p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text);
  margin: 0;
  padding: 1rem 0;
}

.simple-explanation-btn {
  display: inline-flex;
  padding: 0.7rem 1.2rem;
  min-width: 140px;
  width: auto;
  text-align: center;
  margin-top: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--button-text);
  background: var(--button);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: opacity 0.2s ease, color 0.2s, padding 0.2s ease, min-width 0.2s ease;
}

.simple-explanation-btn:hover {
  opacity: 0.7;
}

.simple-explanation-btn.is-open {
  background: var(--button);
  color: var(--button-text);
  padding: 0.7rem 1rem;
  min-width: 155px;
}

.faq-title {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  text-align: left;
}

.faq-item {
  background: var(--card-bg);
  padding: 1rem 1rem 0;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.faq-item h4.section-title {
  margin-bottom: 0.5rem;
  font-size: 1rem;
  color: var(--text);
}

.faq-question {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  padding: 0 0 5px 0;
  margin-bottom: 0.5rem;
}

.faq-answer {
  background: var(--card-bg-secondary);
  padding: 10px 15px;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
  border-radius: 6px;
  border-left: 3px solid var(--accent);
  color: var(--text);
}

.faq-item p strong {
  color: var(--accent);
  font-weight: 700;
  margin-right: 0.3rem;
}

@media (max-width: 768px) {
  .hero-top {
    flex-direction: column;
    align-items: center;
  }
  .profile-img {
    margin-right: 0;
  }
  .hero-info {
    text-align: center;
  }
  .card-grid-2 {
    grid-template-columns: 1fr;
  }
  .nav {
    display: none;
  }
  .burger {
    display: flex;
  }
  .desktop-theme-toggle {
    display: none;
  }
  .hero {
    padding: 1rem;
  }
  .hero-card {
    width: 100%;
    padding: 1rem;
  }
  .hero-card h3 {
    font-size: 1.2rem;
  }
  .hero-card .verse {
    font-size: 1rem;
  }
  .hero-card .meta {
    font-size: 0.85rem;
  }
  .daily-verse-card {
    padding: 1rem;
    margin: 1rem auto;
  }
  .daily-verse-card h3 {
    font-size: 1.2rem;
  }
  .center-verse {
    font-size: 1rem;
  }
  #daily-reflection {
    font-size: 0.95rem;
  }
  .story-summary {
    font-size: 0.9rem;
    padding: 14px 18px;
  }
  .story-content {
    font-size: 0.9rem;
  }
  .mobile-menu .close-btn {
    position: absolute;
    top: 0.8rem;
    right: 0.8rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

@media (min-width: 769px) and (max-width: 899px) {
  .header-inner, .content {
    padding: 1rem 1.5rem;
  }
  .nav {
    display: none;
  }
  .burger {
    display: flex;
  }
  .desktop-theme-toggle {
    display: none;
  }
  .hero-card {
    padding: 1.5rem;
    max-width: 750px;
  }
  .hero-card h3 {
    font-size: 1.3rem;
  }
  .hero-card .verse {
    font-size: 1.1rem;
  }
  .hero-card .meta {
    font-size: 0.9rem;
  }
  .story-summary {
    font-size: 1rem;
    padding: 1rem 1.2rem;
  }
  .story-content {
    font-size: 1rem;
  }
  .daily-verse-card {
    padding: 1.2rem;
  }
  .daily-verse-card h3 {
    font-size: 1.2rem;
  }
  .center-verse {
    font-size: 1rem;
  }
  #daily-reflection {
    font-size: 0.95rem;
  }
  .footer {
    font-size: 0.9rem;
    padding: 2rem;
  }
  .footer-container {
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .footer-section {
    flex: 1 1 45%;
  }
  .footer-section h3 {
    font-size: 0.9rem;
  }
  .footer-description {
    font-size: 0.9rem;
  }
  .footer-bottom {
    font-size: 0.7rem; 
  }
  .footer .meta {
    font-size: 0.7rem; 
  }
  .mobile-menu .close-btn {
    position: absolute;
    top: 0.8rem;
    right: 0.8rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .simple-explanation-btn {
    padding: 0.7rem 1.2rem;
    min-width: 135px;
    font-size: 0.9rem;
  }
  .simple-explanation-btn.is-open {
    min-width: 150px;
  }
  .simple-explanation-container {
    padding: 0 1rem;
  }
  .simple-explanation-container.open {
    padding: 1rem;
  }
}

@media (min-width: 900px) {
  .nav {
    display: none;
  }
  .burger {
    display: flex;
  }
  .desktop-theme-toggle {
    display: none;
  }
  .hero {
    grid-template-columns: 1fr 1fr;
    padding: 2rem 1rem;
  }
  .hero.hero-centered {
    grid-template-columns: 1fr;
  }
  .video-row {
    flex-wrap: wrap;
    overflow-x: visible;
    justify-content: center;
  }
  .video-card {
    flex: 1 1 calc(20% - 1rem);
    max-width: 300px;
  }
  .video-card iframe {
    height: 180px;
  }
  .footer {
    padding: 2.5rem;
    font-size: 0.95rem;
  }
  .footer-container {
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
  }
  .footer-section {
    flex: 1 1 200px;
    min-width: 200px;
  }
  .footer-section h3 {
    font-size: 1rem;
  }
  .footer-description {
    font-size: 0.9rem;
  }
}

@media (min-width: 1024px) {
  .nav {
    display: flex;
  }
  .burger {
    display: none;
  }
  .desktop-theme-toggle {
    display: block;
  }
  .video-grid iframe {
    height: 220px;
  }
  .hero {
    padding: 2rem 2rem;
  }
  .header-inner {
    padding: 1rem 2rem;
  }
  .hero-card {
    padding: 1.5rem;
  }
  .hero-card h3 {
    font-size: 1.4rem;
  }
  .hero-card .verse {
    font-size: 1.1rem;
  }
  .hero-card .meta {
    font-size: 0.9rem;
  }
  .daily-verse-card {
    padding: 1.8rem 1.25rem;
    max-width: 90%;
  }
  .daily-verse-card h3 {
    font-size: 1.4rem;
  }
  .center-verse {
    font-size: 1.1rem;
  }
  #daily-reflection {
    padding: 0.95rem 1.1rem;
    font-size: 1rem;
  }
   .nav a {
    font-size: 1.1rem;
    padding: 8px 12px;
  }
  .simple-explanation-btn {
    padding: 0.8rem 1.4rem;
    min-width: 150px;
    font-size: 1rem;
  }
  .simple-explanation-btn.is-open {
    min-width: 165px;
    padding: 0.8rem 1.2rem;
  }
  .simple-explanation-container {
    margin-top: 0.8rem;
    padding: 0 1.5rem;
  }
  .simple-explanation-container.open {
    padding: 1.2rem 1.5rem;
  }
  .simple-explanation-container p {
    font-size: 1rem;
  }
  .footer {
    padding: 3rem;
    font-size: 1rem;
  }
  .footer-top {
    max-width: 1200px;
  }
  .footer-title {
    font-size: 1.1rem; 
    max-width: 700px;
  }
  .footer-description {
    font-size: 0.9rem; 
    max-width: 1200px;
    margin: 0 auto; 
    text-align: center; 
  }
  .footer-container {
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
  }
  .footer-section {
    flex: 1 1 250px;
    min-width: 250px;
  }
  .footer-section h3 {
    font-size: 1.05rem;
  }
  .footer-bottom {
    font-size: 0.8rem; 
  }
  .footer .meta {
    font-size: 0.8rem; 
  }
}

@media (min-width: 1600px) {
   .nav {
    display: flex;
  }
  .burger {
    display: none;
  }
  .desktop-theme-toggle {
    display: block;
  }
  .hero {
    max-width: 1800px;
    gap: 3rem;
    justify-content: center;
  }
  .header-inner {
    max-width: 1600px;
  }
  .hero-card {
    padding: 3rem;
  }
  .brand h1 {
    font-size: 1.2rem;
  }
  .nav a {
    font-size: 1.1rem;
    padding: 8px 12px;
  }
  .footer {
    padding: 3.5rem;
    font-size: 1rem;
  }
  .footer-title {
    font-size: 1rem; 
    max-width: 700px;
  }
  .footer-description {
    font-size: 0.9rem; 
    max-width: 700px;
  }
  .footer-container {
    max-width: 1200px;
    gap: 2.5rem;
    justify-content: space-between;
  }
  .footer-section {
    flex: 1 1 200px;
    min-width: 200px;
  }
  .footer-section h3 {
    font-size: 1.1rem;
  }
  .footer-bottom {
    font-size: 0.75rem; 
  }
  .footer .meta {
    font-size: 0.75rem; 
  }
}

@media (min-width: 2000px) {
   .nav {
    display: flex;
  }
  .burger {
    display: none;
  }
  .desktop-theme-toggle {
    display: block;
  }
  .hero {
    max-width: 2200px;
    gap: 4rem;
    justify-content: center;
  }
  .hero-card {
    padding: 4rem;
  }
  .footer {
    padding: 4rem;
    font-size: 1.1rem;
  }
  .footer-top {
    max-width: 1000px; 
  }
  .footer-title {
    font-size: 1rem; 
    max-width: 1000px;
  }
  .footer-description {
    font-size: 0.9rem; 
    max-width: 1400px;
  }
  .footer-container {
    max-width: 1400px;
    gap: 3rem;
    justify-content: space-between;
  }
  .footer-section {
    flex: 1 1 250px;
    min-width: 250px;
  }
  .footer-section h3 {
    font-size: 1.2rem;
  }
  .footer-bottom {
    font-size: 0.7rem; 
  }
  .footer .meta {
    font-size: 0.7rem; 
  }
   .nav a {
    font-size: 1.1rem;
    padding: 8px 12px;
  }
}