  /*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

body{
    background-color: #F2EDD5;
}*/
/* Basic reset */
* { box-sizing: border-box; margin: 0; padding: 0; }
html,body { height: 100%; }

body {
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  color: #222;
  line-height: 1.5;
  background: #f2edd5;
}

/* Top banner image (plain) */
.top-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Title bar + sticky nav */
.title-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #F2AA6B; /* orange bar */
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.6rem 1rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

/* Site title */
@font-face {
  font-family: Jacquard24-Regular;
  src: url(fonts/Jacquard24-Regular.ttf);
} 
@font-face {
  font-family: IMFellDWPica-Regular;
  src: url(fonts/IMFellDWPica-Regular.ttf);
}
.site-title{
  color: #000000;
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  text-align: center;
}

/* Nav */
.nav {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  justify-content: center;
}

.nav a {
  color: #f2aa6b;
  background-color: #786046;
  border-radius: .5rem;
  text-decoration: none;
  font-weight: 600;
  padding: 0.2rem 0.4rem;
  transition: opacity 0.18s ease;
}

.nav a:hover { opacity: 0.85; }

/* Layout containers */
main { padding-bottom: 4rem; }

/* Intro */
.intro-section {
  max-width: 1100px;
  margin: 2rem auto;
  padding: 0 1rem;
}
.intro-content {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.intro-text { flex: 1 1 420px; }
.intro-image { flex: 1 1 360px; border: 1em solid #F2AA6B;
  border-radius: .5rem ; }
.intro-image img { width: 100%;  display: block; }

/* Learn More - YouTube */ 
.learn-section {
  background: #f2edd5;
  text-align: center;
}
.learn-section h2 { 
  font-size: 2.5rem;
  background-color: #F2AA6B; 
  }
.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  /* padding-bottom: 56.25%; */
  /* height: auto; */
  aspect-ratio: 16/9;
  /* overflow: hidden; */
}
.video-wrapper iframe {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  border: 0;
} 

/* Feature Image Panel */
.feature-panel {

  display: flex;
  justify-content: center;
  background: #f2edd5;
}
.feature-inner {
  width: 100%;
  max-width: 1100px;
}
.feature-inner img {
  width: 100%;
  height: auto;
  display: block;
  border: 1em solid #F2AA6B; 
 
}

/* Movie sections */
.movie-section {

text-align: left;

}

#movie-link {
  color: #f2aa6b;
}
.movie-section h1 {
  color: #000000;
  font-size: 3rem;
  text-align: center;
  background-color: #F2AA6B;
}

.movie-section h2{
  color: #000000;
    font-size: 1.72rem;
    text-align: center;
    background-color: #F2AA6B;
    padding: .5rem;
}
#movie-text {
  padding: 1rem 6rem;
}
.caption{
  text-align: center;
}

/* Footer */
.footer {
  background: #f2aa6b;
  color: #000000;
  text-align: center;
  padding: 1.25rem 1rem;
  margin-top: 2rem;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}