/* =====================================================
   RESET
===================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* =====================================================
   VARIABLES
===================================================== */
:root {
  --green-dark: #1f4d2e;
  --green-main: #1e3a8a;
  --green-light: #1f4d2e;

  --bg-main: #f4f8f2;
  --bg-card: #ffffff;

  --text-main: #1f2d1f;
  --text-muted: #5f6f5f;
}

/* =====================================================
   BASE TYPOGRAPHY
===================================================== */
body {
  font-family:
    'Roboto',
    'Noto Sans Devanagari',
    'Noto Sans Gurmukhi',
    sans-serif;

  background: var(--bg-main);
  color: var(--text-main);
  line-height: 1.65;
}

h1, h2, h3, h4 {
  font-family:
    'Noto Serif Devanagari',
    'Noto Serif Gurmukhi',
    serif;

  font-weight: 700;
  letter-spacing: 0.3px;
}

/* =====================================================
   LINKS & STRUCTURE
===================================================== */
a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: 92%;
  max-width: 1200px;
  margin: auto;
}

.section {
  padding: 26px 0;
}

.section-title {
  font-size: 28px;
  margin-bottom: 22px;
  color: var(--green-dark);
}

/* =====================================================
   COMMON PAGE LAYOUTS
===================================================== */

.home-layout {
  display: grid;
  grid-template-columns: 2.2fr 1fr;
  gap: 34px;
  align-items: start;
}

/* =====================================================
   VIDEO SIDEBAR
===================================================== */

.video-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.video-stack iframe {
  width: 100%;
  height: 200px;
  border-radius: 16px;
  border: none;
  box-shadow: 0 12px 34px rgba(0,0,0,0.18);
  transition: transform 0.25s ease;
}

.video-stack iframe:hover {
  transform: scale(1.03);
}

/* =====================================================
   FOOTER
===================================================== */

.footer {
  background: #1f2d1f;
  color: #cddacb;
  text-align: center;
  padding: 22px 0;
}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 900px) {

  .home-layout {
    grid-template-columns: 1fr;
  }

}