body {
  margin: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  color: #fff;
  background: #3B2B23;
}

.hero-section,
.overview-section,
.about-section,
.character-section {
  background: transparent;
}

.hero-section {
  position: relative;
  min-height: 40vh;
  /*background: url('hero.jpg') center/cover no-repeat;*/
  background-color: #3B2B23;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  /*overflow: hidden;*/
  z-index: 1;
}

.small-hero {
  min-height: 0 !important;
  padding-bottom: 24px !important;
}

.prologue-title {
  font-size: 1.5em;
  color: #e2b36a;
  margin-bottom: 10px;
  text-align: center;
  width: 100%;
  display: block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.06em;
  /* Remove any left/right margin or padding */
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
}

.c4-title {
  font-size: 1.5em;
  color: #f5d393;
  margin-bottom: 10px;
  text-align: center;
  width: 100%;
  display: block;
  /*font-family: 'Montserrat', Arial, sans-serif;*/
  font-weight: 700;
  letter-spacing: 0.06em;
  /* Remove any left/right margin or padding */
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
}

/*.hero-section::before {
  content: "";
  position: absolute;
  left: 200px;
  top: 200px;
  width: 6px;
  height: 50%;
  background: #D89A4B;
  border-radius: 2px;
  z-index: 3;
}*/

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
  padding: 0 102px 0 32px;
  font-weight: bold;
  letter-spacing: 2px;
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: auto;
  line-height: 1.1;
}

.logo-main {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.logo-sub {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.7rem;
  font-weight: 400;
  color: #e2b36a;
  letter-spacing: 0.12em;
  margin-top: 2px;
  margin-left: 60px;
  text-transform: uppercase;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 40px;
  margin: 0;
  padding: 0;
  justify-content: flex-end;
  align-items: center;
}

.nav-links a {
  color: #e2b36a;
  text-decoration: none;
  font-size: 1.75rem;
  transition: color 0.2 s;
}

.nav-links a:hover {
  color: #fff;
}

.hero-content {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 24px;
  width: 100%;
  padding: 40px 0 0 0;
  
}

.hero-left {
  width: 60%;

}

.hero-right {
  width: 40%;

}

.hero-left {
  text-align: center;
  background: rgba(44, 32, 24, 0.85);
  border-radius: 24px;
  padding: 40px 32px 32px 32px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  display: inline-block;
  margin: 0 auto;
}

.hero-left::before {
  content: "";
  display: block;
  width: 160px;
  height: 4px;
  background: linear-gradient(90deg, #e2b36a 0%, #fff0 100%);
  margin: 0 auto 24px auto;
  border-radius: 2px;
}

.hero-left h1 {
  font-size: 5.5rem;
  margin: 0 0 10px 0;
  font-weight: 900;
  letter-spacing: 10px;
  line-height: 1.1;
}

.hero-left h2 {
  font-size: 2.5rem;
  margin: 0 0 18px 0;
  font-weight: 600;
  letter-spacing: 4px;
  color: #fff;
}

.subtitle {
  font-weight: 100;
  font-size: 1.1rem;
  margin-bottom: 24px;
  color: #fff;
  letter-spacing: 1.5px;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 24px;
  margin-left: 0;
}

.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-right img {
  width: 70vw;
  max-width: 320px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.18);
}

.outline {
  color: transparent;
  -webkit-text-stroke: 2px #e2b36a;
  text-stroke: 2px #e2b36a;
}

h2 {
  font-size: 4rem;
  margin: 0 0 18px 0;
  font-weight: 600;
  letter-spacing: 4px;
  color: #fff;
  margin-left: 200px;
  white-space: nowrap;
}

.btn {
  flex: none; /* Prevents stretching */
  width: auto;
  display: inline-block;
  padding: 16px 36px;
  border-radius: 32px;
  font-size: 1.1rem;
  font-weight: bold;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

.btn-primary {
  background: #e2b36a;
  color: #222;
  box-shadow: 0 4px 24px rgba(226,179,106,0.2);
}

.btn-primary:hover {
  background: #fff;
  color: #e2b36a;
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.btn-secondary:hover {
  background: #fff;
  color: #222;
}

.hero-book-cover {
  min-width: 220px;
  max-width: 260px;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  z-index: 2;
  margin-left: 60px;
  margin-top: 0;
}

.highlight {
  color: #D89A4B; /* Use your desired color */
}

.overview-section {
  position: relative;
  z-index: 2; /* Higher than hero-section */
  margin-top: 0px; /* Negative margin to move it up over the hero section */
  padding: 20px 0 40px 0;
  text-align: center;
}

.overview-section .subheading {
  text-align: center;
  width: 100%;
}


.ordernow-section {
  text-align: center;
  margin: 60px 0 0 0;
}

.ordernow-details {
  margin-top: 18px;
}

.ordernow-line {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.08em;
  margin: 0;
  line-height: 1.5;
}

.ordernow-highlight {
  color: #e2b36a;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.subheading {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 4rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.1em;
  margin: 0;
  text-transform: uppercase;
  display: inline-block;
}

.subheading .highlight {
  color: #e2b36a; /* Gold color for the R */
}

.about-section {
  padding: 60px 0 60px 0;
}

.about-content {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  gap: 60px;
}

.about-text {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 200px;
}

.about-text p {
  color: #fff;
  font-size: 1.25rem;
  line-height: 1.7;
  text-align: center;
  max-width: 480px;
  margin: 0;
  letter-spacing: 0.04em;
  margin-left: -200px;
}

.about-images {
  flex: 1;
  position: relative;
  min-width: 400px;
  min-height: 320px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.main-image img {
  width: 440px;
  max-width: 90vw;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.18);
  position: relative;
  z-index: 2;
}

.overlay-image {
  position: relative;
  z-index: 3;
  display: flex;
  gap: 20px;
  justify-content: center;
}

.overlay-image img {
  width: 180px;
  max-width: 50vw;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.18);
}

.character-section {
  padding: 60px 0 60px 0;
  margin-top: 80px;
}

.character-content {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  gap: 60px;
}

.character-images {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 400px;
  align-items: flex-start;
}

.character-image-top img {
  width: 500px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  margin-left: -200px;
}

.character-image-bottom img {
  width: 500px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  margin-left: -60px; /* Overlap effect */
  margin-top: -150px;
}

.character-text {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.character-text p {
  color: #fff;
  font-size: 1.25rem;
  line-height: 1.7;
  text-align: center;
  max-width: 480px;
  margin: 0;
  letter-spacing: 0.04em;
}

.reflection-section {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 36px;
  margin: 60px 0;
}

.reflection-col {
  flex: 1 1 0;
  min-width: 0;
  max-width: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: center;
  margin: auto 0;
}

.reflection-col.video-col {
  flex: 0 0 70%;
  max-width: 70%;
}

.reflection-col.testimonials-col {
  flex: 0 0 30%;
  max-width: 30%;
}

.reflection-text {
  align-items: center;
  justify-content: center;
  align-self: center;
  margin: auto 0;
}

.reflection-text p {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.15rem;
  line-height: 2;
  letter-spacing: 0.06em;
  text-align: center;
  max-width: 480px;
  margin: 0 auto;
}

.testimonials-col {
  align-items: center;
  align-self: center;
  margin: auto 0;
}

.video-col {
  align-items: center;
  align-self: center;
  margin: auto 0;
}

.testimonials-section {
  width: 100%;
  max-width: 420px;
  margin-bottom: 32px;
}

.testimonials-heading {
  color: #e2b36a;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 40px;
  text-transform: uppercase;
}

.testimonials-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
}

.testimonial {
  background: rgba(255, 255, 255, 0.05);
  border-left: 4px solid #e2b36a;
  padding: 25px;
  border-radius: 8px;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(226, 179, 106, 0.15);
}

.testimonial-text {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  line-height: 1.6;
  letter-spacing: 0.03em;
  margin-bottom: 15px;
  font-style: italic;
}

.testimonial-author {
  color: #e2b36a;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin: 0;
  text-transform: uppercase;
}

.reflection-circles {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}

.circle {
  background: #D89A4B;
  border-radius: 50%;
  position: absolute;
}

.circle.large {
  width: 800px;
  height: 800px;
  top: -80px;
  right: -250px;
  z-index: 1;
  margin-left: -200px;
}

.circle.medium {
  width: 160px;
  height: 160px;
  top: 600px;
  right: 450px;
  z-index: 2;
}

.reflection-book {
  width: 320px;
  margin-top: 60px;
  margin-bottom: 40px;
  z-index: 4;
  border-radius: 8px;
  position: relative;
}

.reflection-socials {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
  z-index: 5;
  position: relative;
}

.reflection-socials img {
  width: 48px;
  height: 52px;
  display: block;
  margin-left: 800px;
}

.reflection-order-btn {
  display: inline-block;
  background: #D89A4B;
  color: #3a2920;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  border-radius: 32px;
  padding: 18px 48px;
  text-decoration: none;
  margin-top: 5px;
  box-shadow: 0 4px 24px rgba(226,179,106,0.2);
  letter-spacing: 0.08em;
  transition: background 0.2s, color 0.2s;
  z-index: 5;
  position: relative;
  margin-left: 550px;
}

.reflection-order-btn:hover {
  background: #fff;
  color: #D89A4B;
}

.circle-img {
  position: absolute;
  object-fit: cover;
  z-index: 2;
}

.medium-img {
  width: 160px;
  height: 160px;
  top: 600px;    /* Adjust as needed */
  right: 500px;  /* Adjust as needed */
}

.circlenew {
  position: relative;
  top: -300px;
  right: -1300px;
  z-index: 0;
}

.curimage{
  width: 250px;
}

.youtube-icon {
  width: 60px;   /* Set your desired width */
  height: 36px;  /* Set your desired height */
  object-fit: contain;
}

.author-section {
  width: 100%;
  margin: 0;
  padding-top: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.author-subheading {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.08em;
  margin-top: 0;
  margin-bottom: 16px;
  text-align: center;
  text-transform: uppercase;
  margin-left: 0;
}

.author-subheading .author-highlight {
  color: #e2b36a;
}

.author-bio {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  line-height: 1.8;
  letter-spacing: 0.06em;
  text-align: center;
  max-width: 100%;
  margin: 0;
  padding: 0 10px;
}

.black-box {
  width: 600px;         /* Set your desired width */
  height: 1100px;        /* Set your desired height */
  background: #111;     /* Black color */
  border-radius: 0px;  /* Optional: rounded corners */
  margin: 40px auto;    /* Center horizontally with margin */
  box-shadow: 0 4px 32px rgba(0,0,0,0.4); /* Optional: shadow for depth */
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 24px;
  margin-left: 1350px;
  margin-top: -275px;
}

.latest-posts-heading {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.25rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-align: center;
  margin-bottom: 32px;
  text-transform: uppercase;
  margin-left: -50px;
}

.white-box {
  width: 400px;         /* Set your desired width */
  height: 400px;        /* Set your desired height */
  background: #fff;     /* Black color */
  border-radius: 0px;  /* Optional: rounded corners */
  margin: 40px auto;    /* Center horizontally with margin */
  box-shadow: 0 4px 32px rgba(0,0,0,0.4); /* Optional: shadow for depth */
  margin-left: 1425px;
  margin-top: -1050px;
}

.white-box1 {
  width: 400px;         /* Set your desired width */
  height: 400px;        /* Set your desired height */
  background: #fff;     /* Black color */
  border-radius: 0px;  /* Optional: rounded corners */
  margin: 40px auto;    /* Center horizontally with margin */
  box-shadow: 0 4px 32px rgba(0,0,0,0.4); /* Optional: shadow for depth */
  margin-left: 1425px;
}

.subscribe-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #111;
  padding: 32px 24px 24px 24px;
  border-radius: 8px;
  margin-top: 850px;
  gap: 32px;
}

.subscribe-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.subscribe-line {
  width: 60px;
  height: 4px;
  background: #fff;
  margin-bottom: 12px;
}

.subscribe-title {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 0;
}

.subscribe-form {
  display: flex;
  align-items: center;
  gap: 0;
  background: transparent;
}

.subscribe-input {
  background: transparent;
  border: none;
  border-bottom: 2px solid #444;
  color: #fff;
  font-size: 1rem;
  padding: 12px 16px;
  width: 180px;
  margin-right: 0;
  outline: none;
  letter-spacing: 0.08em;
}

.subscribe-input::placeholder {
  color: #aaa;
  letter-spacing: 0.08em;
}

.subscribe-btn {
  background: #fff;
  color: #111;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 12px 24px;
  margin-left: 10px;
  border-radius: 0;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: background 0.2s, color 0.2s;
  margin-top: -10px;
}

.subscribe-btn:hover {
  background: #e2b36a;
  color: #111;
}

.character-feature-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 60px 0 0 0;
  margin-top: -600px;
  margin-left: -1750px;
}

.character-subheading {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.5rem;
  font-weight: 10;
  color: #fff;
  margin-left: 350px;
}

.character-main-circle {
  position: relative;
  width: 500px;
  height: 500px;
  background: #e2b36a;
  border-radius: 50%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  overflow: hidden;
}

.character-main-img {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  height: 447px;
  object-fit: contain;
  z-index: 2;
}

.character-main-name {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 1px 1px 8px #0008;
  letter-spacing: 0.08em;
  z-index: 3;
  text-align: center;
  width: 100%;
  margin-left: 15px;
}

.character-thumbnails {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 32px;
  margin-left: 200px;
}

.character-thumb {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #2d1d13;
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
  background: #fff;
}

.video-container {
  width: 100%;
  max-width: none;
  aspect-ratio: 16/9;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

.reflection-video {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.18);
}

.video-heading {
  color: #e2b36a;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
  margin-bottom: 18px;
  margin-top: 0;
  text-transform: uppercase;
}

.characters-section {
  width: 100%;
  padding: 60px 0 30px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.characters-heading {
  margin-bottom: 32px;
  text-align: center;
}

.characters-image {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.characters-image img {
  max-width: 1400px;
  width: 90vw;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
}



.overview-content {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  gap: 60px;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.overview-text {
  flex: 1 1 0;
  min-width: 320px;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.overview-text .subheading {
  text-align: left;
  margin-bottom: 24px;
}

.overview-header {
  max-width: 100%;
  text-align: center;
  align-items: center;
}

.overview-text p {
  font-size: 1.15rem; /*1.25rem;*/
  line-height: 1.7;
  color: #fff;
  margin: 0;
}

.overview-images {
  flex: 1 1 0;
  min-width: 320px;
  max-width: 600px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  height: auto;
  gap: 20px;
}



.site-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
}

.hamburger {
  display: none;
  font-size: 2.5rem;
  color: #e2b36a;
  cursor: pointer;
  margin-left: auto;
  z-index: 1001;
}

/* Media Queries */

@media (max-width: 767px) {
  .hero-section::before {
    display: none;
  }
  .navbar {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 24px 10px 0 10px;
    gap: 0;
    position: relative;
    width: 100%;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    gap: 24px;
    background: #3B2B23;
    position: absolute;
    top: 100%;
    right: 0;
    width: 200px;
    padding: 24px 0;
    z-index: 1000;
    border-radius: 8px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.3);
  }
  .navbar.menu-open .nav-links {
    display: flex;
  }
  .hamburger {
    display: block;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
    z-index: 1001;
  }
  .logo {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .hero-content {
    flex-direction: column;
    align-items: center;
    padding: 30px 10px 0 10px;
    gap: 30px;
    min-height: unset;
    width: 100%;
  }
  .hero-left {
    /*width: 100%;*/
    text-align: center;
    width: auto;
    margin: 0 12px;
  }
  .hero-left h1 {
    font-size: 2.5rem;
    letter-spacing: 6px;
    margin-top: 0;
  }
  .hero-left h2 {
    font-size: 1.3rem;
    margin: 0 0 12px 0;
  }
  .subtitle {
    font-size: 1rem;
    margin-bottom: 18px;
    letter-spacing: 1px;
  }
  .hero-buttons {
    margin-left: 0;
    justify-content: center;
    width: 100%;
    margin-top: 18px;
    flex-wrap: wrap;
  }
  .hero-right {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 0;
  }
  .hero-right img {
    width: 70vw;
    max-width: 320px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.18);
    margin-bottom: 32px;
  }

  .overview-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
  }

  .overview-section {
    margin-top: 0px;
  }

  .overview-text {
    flex: none;
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  .overview-text .subheading {
    text-align: center;
    margin-bottom: 24px;
  }

  .overview-header {
    max-width: 100%;
    text-align: center;
    align-items: center;
  }

  .overview-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #fff;
    margin: 0;
    padding: 0 16px;
  }

  .overview-images {
    flex: none;
    width: 100%;
    max-width: 600px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
    min-height: 280px;
  }
  .about-content {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  .about-images {
    min-width: 0;
    width: 100%;
    justify-content: center;
  }
  .main-image img {
    width: 90vw;
    max-width: 380px;
  }
  .overlay-image img {
    width: 40vw;
    max-width: 180px;
  }

  .character-content {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  .character-images {
    min-width: 0;
    width: 100%;
    align-items: center;
  }
  .character-image-top img,
  .character-image-bottom img {
    width: 90vw;
    max-width: 400px;
  }
  .character-image-bottom img {
    margin-left: 0;
  }

  .reflection-section {
    flex-direction: column;
    gap: 40px;
    align-items: center;
  }


  .reflection-col,
  .testimonials-col,
  .video-col {
    width: 100% !important;
    max-width: 100% !important;
    flex: none !important;
    align-items: center;
    justify-content: center;
  }

  .video-container {
    width: 100% !important;
    max-width: 100% !important;
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    padding: 0;
  }

  .reflection-video {
    width: 100% !important;
    height: 100% !important;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.18);
    display: block;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  /* Paste same styles as above here */
  .hero-section::before {
    display: none;
  }
  .navbar {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 24px 10px 0 10px;
    gap: 0;
    position: relative;
    width: 100%;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    gap: 24px;
    background: #3B2B23;
    position: absolute;
    top: 100%;
    right: 0;
    width: 200px;
    padding: 24px 0;
    z-index: 1000;
    border-radius: 8px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.3);
  }
  .navbar.menu-open .nav-links {
    display: flex;
  }
  .hamburger {
    display: block;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
    z-index: 1001;
  }
  .logo {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .hero-content {
    flex-direction: column;
    align-items: center;
    padding: 30px 10px 0 10px;
    gap: 30px;
    min-height: unset;
    width: 100%;
  }
  .hero-left {
    /*width: 100%;*/
    text-align: center;
    width: auto;
    margin: 0 12px;
  }
  .hero-left h1 {
    font-size: 3.5rem;
    letter-spacing: 6px;
    margin-top: 0;
  }
  .hero-left h2 {
    font-size: 1.5rem;
    margin: 0 0 12px 0;
  }
  .subtitle {
    font-size: 1rem;
    margin-bottom: 18px;
    letter-spacing: 1px;
  }
  .hero-buttons {
    margin-left: 0;
    justify-content: center;
    width: 100%;
    margin-top: 18px;
    flex-wrap: wrap;
  }
  .hero-right {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 0;
  }
  .hero-right img {
    width: 70vw;
    max-width: 320px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.18);
    margin-bottom: 32px;
  }

  .overview-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
  }

  .overview-section {
    margin-top: -72px;
  }

  .overview-text {
    flex: none;
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  .overview-text .subheading {
    text-align: center;
    margin-bottom: 24px;
  }

  .overview-header {
    max-width: 100%;
    text-align: center;
    align-items: center;
  }

  .overview-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #fff;
    margin: 0;
    padding: 0 16px;
  }

  .overview-images {
    flex: none;
    width: 100%;
    max-width: 600px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
    min-height: 280px;
  }
  .about-content {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  .about-images {
    min-width: 0;
    width: 100%;
    justify-content: center;
  }
  .main-image img {
    width: 90vw;
    max-width: 380px;
  }
  .overlay-image img {
    width: 40vw;
    max-width: 180px;
  }

  .character-content {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  .character-images {
    min-width: 0;
    width: 100%;
    align-items: center;
  }
  .character-image-top img,
  .character-image-bottom img {
    width: 90vw;
    max-width: 400px;
  }
  .character-image-bottom img {
    margin-left: 0;
  }

  .reflection-section {
    flex-direction: column;
    gap: 40px;
    align-items: center;
  }
  .reflection-col,
  .testimonials-col,
  .video-col {
    width: 100% !important;
    max-width: 100% !important;
    flex: none !important;
    align-items: center;
    justify-content: center;
  }

  .video-container {
    width: 100% !important;
    max-width: 100% !important;
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    padding: 0;
  }

  .reflection-video {
    width: 100% !important;
    height: 100% !important;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.18);
    display: block;
  }
}


@media (min-width: 1025px) and (max-width: 1279px) {
  /* Paste same styles as above here */
  .hero-section {
    position: relative;
    min-height: 60vh;
    /*background: url('hero.jpg') center/cover no-repeat;*/
    background-color: #3B2B23;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    overflow: hidden;
    z-index: 1;
  }

  .hero-section::before {
    display: none;
  }
  .navbar {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 24px 10px 0 10px;
    gap: 0;
    position: relative;
    width: 100%;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    gap: 24px;
    background: #3B2B23;
    position: absolute;
    top: 100%;
    right: 0;
    width: 200px;
    padding: 24px 0;
    z-index: 1000;
    border-radius: 8px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.3);
  }
  .navbar.menu-open .nav-links {
    display: flex;
  }
  .hamburger {
    display: block;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
    z-index: 1001;
  }
  .logo {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .hero-content {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 24px;
    width: 100%;
    padding: 40px 0 0 0;
  }
  .hero-left {
    width: 60%;
    text-align: center;
  }
  .hero-left h1 {
    font-size: 4.5rem;
    letter-spacing: 8px;
    margin-top: 0;
  }
  .hero-left h2 {
    font-size: 2rem;
    margin: 0 0 18px 0;
  }
  .subtitle {
    font-size: 1.05rem;
    margin-bottom: 24px;
    letter-spacing: 1.5px;
  }
  .hero-buttons {
    margin-left: 0;
    justify-content: center;
    width: 100%;
    margin-top: 24px;
    flex-wrap: wrap;
  }
  .hero-right {
    width: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 0;
  }
  .hero-right img {
    width: 70vw;
    max-width: 280px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.18);
    margin-bottom: 0;
  }

  .overview-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
  }

  

  .overview-section {
    margin-top: 0px;
  }

  .overview-text {
    flex: none;
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  .overview-text .subheading {
    text-align: center;
    margin-bottom: 24px;
  }

  .overview-header {
    max-width: 100%;
    text-align: center;
    align-items: center;
  }

  .overview-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #fff;
    margin: 0;
    padding: 0 16px;
  }

  .overview-images {
    flex: none;
    width: 100%;
    max-width: 600px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
    min-height: 280px;
  }
  .about-content {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  .about-images {
    min-width: 0;
    width: 100%;
    justify-content: center;
  }
  .main-image img {
    width: 90vw;
    max-width: 380px;
  }
  .overlay-image img {
    width: 40vw;
    max-width: 180px;
  }

  .character-content {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  .character-images {
    min-width: 0;
    width: 100%;
    align-items: center;
  }
  .character-image-top img,
  .character-image-bottom img {
    width: 90vw;
    max-width: 400px;
  }
  .character-image-bottom img {
    margin-left: 0;
  }

  .reflection-section {
    flex-direction: column;
    gap: 40px;
    align-items: center;
  }
  .reflection-col,
  .testimonials-col,
  .video-col {
    width: 100% !important;
    max-width: 100% !important;
    flex: none !important;
    align-items: center;
    justify-content: center;
  }

  .video-container {
    width: 100% !important;
    max-width: 100% !important;
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    padding: 0;
  }

  .reflection-video {
    width: 100% !important;
    height: 100% !important;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.18);
    display: block;
  }
}

/* Contact Section */
.contact-section {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 60px 0 0 0;
}
.contact-card {
  background: rgba(44, 32, 24, 0.92);
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  padding: 48px 32px 40px 32px;
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact-heading {
  margin-bottom: 18px;
}
.contact-message {
  color: #e2b36a;
  font-size: 1.1rem;
  margin-bottom: 32px;
  text-align: center;
  letter-spacing: 0.04em;
}
.contact-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-row {
  display: flex;
  gap: 16px;
  width: 100%;
}
.contact-input {
  flex: 1 1 0;
  padding: 14px 18px;
  border-radius: 8px;
  border: none;
  background: #2d1d13;
  color: #fff;
  font-size: 1rem;
  margin-bottom: 0;
  outline: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  letter-spacing: 0.04em;
}
.contact-input::placeholder {
  color: #bfa77a;
  opacity: 1;
}
.contact-textarea {
  min-height: 100px;
  padding: 14px 18px;
  border-radius: 8px;
  border: none;
  background: #2d1d13;
  color: #fff;
  font-size: 1rem;
  resize: vertical;
  outline: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  letter-spacing: 0.04em;
}
.contact-btn {
  margin-top: 10px;
  width: 100%;
  font-size: 1.1rem;
  padding: 16px 0;
}

.form-message {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: 8px;
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.form-message.success {
  background: rgba(34, 197, 94, 0.1);
  color: #22c55e;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.form-message.error {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

/* Footer */
.site-footer {
  width: 100%;
  background: #2d1d13;
  color: #e2b36a;
  text-align: center;
  padding: 28px 0 18px 0;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  margin-top: 0;
}
.footer-content {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 16px;
}

@media (max-width: 767px) {
  .contact-card {
    padding: 32px 8px 28px 8px;
    max-width: 98vw;
  }
  .contact-row {
    flex-direction: column;
    gap: 12px;
  }
  .contact-btn {
    font-size: 1rem;
    padding: 14px 0;
  }
}

html {
  scroll-behavior: smooth;
}

/*.navbar .logo a, .navbar a.logo, .navbar > a {
  text-decoration: none !important;
  box-shadow: none;
  transition: box-shadow 0.2s, filter 0.2s;
}

.navbar > a:hover, .navbar .logo a:hover, .navbar a.logo:hover {
  text-decoration: none !important;
  filter: drop-shadow(0 0 8px #e2b36a) drop-shadow(0 0 16px #fff2);
  box-shadow: 0 0 12px 2px #e2b36a44;
}*/

.navbar > a:hover .logo-main,
.navbar > a:hover .logo-sub {
  filter: drop-shadow(0 0 8px #e2b36a) drop-shadow(0 0 16px #fff2);
  transition: filter 0.2s;
}

.navbar > a,
.navbar .logo a,
.navbar a.logo {
  text-decoration: none !important;
  box-shadow: none !important;
}

@media (max-width: 480px) {
  /* Fix large subheading titles like CHARACTERS, CONTACT US */
  .subheading,
  .characters-heading,
  .contact-heading,
  .author-subheading {
    font-size: 1.6rem;
    margin-left: 0;
    text-align: center;
    white-space: normal;
    padding: 0 12px;
  }

  /* Fix main H2s like OVERVIEW */
  h2 {
    font-size: 2rem;
    margin-left: 0;
    text-align: center;
    white-space: normal;
  }

  /* Improve button behavior (e.g. Read Chapter 4) */
  .btn,
  .btn-secondary,
  .btn-primary {
    font-size: 1rem;
    padding: 12px 16px;
    width: 100%;
    max-width: 280px;
    white-space: normal;
    text-align: center;
  }

  /* Fix inline styles: Chapter 4 CTA link */
  a[href*="chapter4.html"] {
    display: inline-block;
    font-size: 1rem !important;
    padding: 12px 16px !important;
    width: 90%;
    max-width: 300px;
    white-space: normal;
  }

  /* Hamburger + logo fix */
  .navbar {
    padding: 0px 10px 0 10px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
z-index: 1000;
  }

  .hamburger {
    position: absolute; /* NOT fixed */
    top: 20px;
    right: 0px;
    z-index: 1001;
  }

.nav-links {
position: absolute;
  z-index: 9999;
}

  .logo {
    margin-top: 10px;
    align-items: center;
  }

  .logo-main,
  .logo-sub {
    font-size: 1.5rem !important;
    text-align: center;
  }

  /* Reflection Socials Fix */
  .reflection-socials img {
    margin-left: 0 !important;
  }

  /* Boxes that have extreme margins on desktop */
  .black-box,
  .white-box,
  .white-box1 {
    margin-left: auto !important;
    margin-right: auto !important;
    width: 90vw !important;
    height: auto !important;
  }

  /* Adjust promo trailer iframe for narrow phones */
  .video-container iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
  }

  /* Characters image banner responsiveness */
  .characters-image img {
    width: 100%;
    max-width: 90vw;
    height: auto;
  }

a[href*="chapter4.html"] {
    display: block;
    font-size: 1rem;
    padding: 14px 16px;
    width: 90%;
    max-width: 300px;
    margin: 0 auto;
    text-align: center;
    white-space: normal;
    line-height: 1.4;
  }
}
