/* ──────────────────────────────────────────────
   WebappMike Theme
   Palette:
   • Dark Pink: #CD2C58
   • Soft Pink: #E06B80
   • Light Peach: #FFC69D
   • Cream: #FFE6D4
   • Button Teal: #70B2B2
────────────────────────────────────────────── */

/* GLOBAL RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: fantasy;
}

/* ─────────────── HEADER ─────────────── */
.header {
  background-color: #CD2C58;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  height: 250px;
  position: relative;
}

.header h1 {
  color: #FFE6D4;
  margin-bottom: 10px;
}

/* Heart strip */
.heart-strip {
  width: 100%;
  height: 100px;
  margin-top: 12px;
  background: url("drawable/playable/minecraftheart.gif") center / auto 90% repeat;
  pointer-events: none;
  z-index: 3;
}

.header > * {
  z-index: 1;
}

h1{
    font-size: 100px ;
}
/* ─────────────── NAVIGATION ─────────────── */
.nav-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 10px auto;
  text-align: center;
  flex-wrap: wrap;
  width: fit-content;
  background-color: #FDE8E9;
  padding: 20px 30px;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.nav-button {
  padding: 10px 20px;
  background-color: #70B2B2;
  border: 2px solid #CD2C58;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  color: #FFE6D4;
  transition: all 0.3s ease;
}

.nav-button:hover {
  background-color: #E06B80;
}

/* ─────────────── IMAGES ─────────────── */
.left-image,
.right-image {
  width: 100px;
  height: 100px;
  border-radius: 10px;
}

.main_image {
  max-width: 400px;
  max-height: 350px;
  border-radius: 10px;
}

/* ─────────────── LAYOUT ─────────────── */
.container {
  display: flex;
  min-height: 100vh;
}

.left-sidebar,
.right-sidebar {
  width: 50px;
  background-color: #FFE6D4;
  display: flex;
  align-items: stretch;
}

.center-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* ─────────────── MAIN BODY ─────────────── */
.main-content {
  display: flex;
  flex: 1;
  flex-wrap: wrap;
}

.body-middle {
  width: 70%;
  background-color: #FFE6D4;
  padding: 20px;
  display: flex;
  flex-direction: column;
}

.body-right {
  width: 30%;
  background-color: #FFC69D;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: #CD2C58;
}

/* ─────────────── RIGHT SECTIONS ─────────────── */
.body-right {
  width: 30%;
  background-color: #FFC69D;
  padding: 20px;
  display: flex;
  flex-direction: column;
  color: #CD2C58;
}

/* Container for Reasons / Quotes */
.section-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 90%; /* occupy 90% of the right section height */
}

/* Common style for scrollable content */
.section-list-scrollable,
.quotes-scrollable {
  flex: 1; /* let them fill the available height */
  overflow-y: auto;
  padding: 15px;
  border: 1px solid #E06B80;
  border-radius: 5px;
  background-color: #FFF;
  font-size: 1.3rem; /* noticeably bigger text */
  line-height: 1.6;
}

/* Headings */
.section-container h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  font-weight: bold;
}

/* Reasons list */
.section-list-scrollable ol {
  padding-left: 20px;
  margin: 0;
}

/* Quotes styling */
.quotes-scrollable blockquote {
  font-style: italic;
  margin: 10px 0;
  padding: 10px;
  border-left: 5px solid #CD2C58;
  border-radius: 5px;
  background-color: #FFE6D4;
  font-size: 1.2rem;
  line-height: 1.6;
}


/* ─────────────── TOGGLE SECTIONS ─────────────── */
.toggle-section {
  display: none;
  height: 700px;
}

.active-section {
  display: block;
}

.section-container {
  position: relative;
  margin-bottom: 20px;
}

.section-list-scrollable ol {
  max-height: 800px;
  overflow-y: auto;
  padding-left: 40px;
  border: 1px solid #E06B80;
  border-radius: 5px;
  background-color: #FFF;
}

/* ─────────────── QUOTES ─────────────── */
.quotes-scrollable {
  max-height: 700px;
  overflow-y: auto;
  padding: 10px;
  border: 1px solid #E06B80;
  border-radius: 5px;
  background-color: #FFF;
}

.quotes-scrollable blockquote {
  font-style: italic;
  margin: 10px 0;
  padding: 10px;
  border-left: 5px solid #CD2C58;
  border-radius: 5px;
  background-color: #FFE6D4;
}

/* ─────────────── INTERACTIVE SECTION ─────────────── */
.interactive {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 20px;
  background-color: #FFE6D4;
}

.interaction-1,
.interaction-2,
.interaction-3 {
  flex: 1;
  min-width: 100px;
  text-align: center;
}

.clickme-video {
  width: 200px;
  height: auto;
  display: block;
  margin: 0 auto 8px;
  border-radius: 5px;
}

.sound-img {
  width: 250px;
  height: 250px;
  cursor: pointer;
  border: 2px solid #CD2C58;
  border-radius: 5px;
}

/* ─────────────── SIDE VIDEOS ─────────────── */
.side-videos {
  display: flex;
  flex-direction: column;
  height: 100vh;
  overflow: hidden;
  align-items: stretch;
  width: 100%;
}

.side-videos video {
  width: 100%;
  object-fit: cover;
  display: block;
  flex: 0 0 auto;
}

/* ─────────────── RESPONSIVE ─────────────── */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
  }

  .left-sidebar,
  .right-sidebar {
    width: 100%;
    height: 50px;
  }

  .main-content {
    flex-direction: column;
  }

  .body-middle,
  .body-right {
    width: 100%;
  }

  .nav-content,
  .interactive,
  .image-with-buttons {
    flex-direction: column;
    gap: 10px;
  }
}
