/* ========== FONTS ========== */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&display=swap');

/* ========== BASE STYLES ========== */
body, html {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #D2B48C;
  font-family: 'Times New Roman', Times, serif;
}

/* ========== TYPOGRAPHY ========== */
h1 {
  font-family: 'Cinzel', serif;
  color: #8B4513;
  text-align: center;
  margin: 20px 0;
  font-size: 2.4vw;
}

h2, h3 {
  font-family: 'Cinzel', serif;
  color: #8B4513;
}

h4 {
  font-family: 'Cinzel', serif;
  color: #8B4513;
  margin: 0 0 15px 0;
}

a {
  text-decoration: none;
  transition: color 0.3s, border-color 0.3s;
}

/* ========== GENERAL CONTAINERS ========== */
.container {
  text-align: center;
  background-color: #F4E0C0;
  border: 4px solid #8B4513;
  padding: 40px;
  position: relative;
  z-index: 1;
  margin: 20px 0;
  width: 80%;
  box-sizing: border-box;
}

.content-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 98%;
  margin: 0 auto;
}

.left-column, .right-column {
  width: 48%;
}

.summary, .timeline, .media-coverage, .video-section, .skeptics-section, .faq-section, .key-facts, .potential-impact {
  background-color: #F4E0C0;
  border: 4px solid #8B4513;
  padding: 20px;
  margin: 20px 0;
  text-align: left;
  color: #654321;
  box-sizing: border-box;
}

.left-container {
  width: 100%;
}

/* ========== COUNTER AND LABEL ========== */
.counter {
  font-family: 'Cinzel', serif;
  font-size: 3vw;
  margin: 10px 0;
  color: #8B4513;
  letter-spacing: 2px;
}

.label {
  font-size: 1.8vw;
  margin-top: 15px;
  max-width: 80vw;
  word-wrap: break-word;
  color: #654321;
}

.btc {
  font-size: 0.7em;
  margin-left: 0.2em;
}

/* ========== LINKS ========== */
.proposal-link {
  color: #B8860B;
  text-decoration: none;
  border-bottom: 1px solid #B8860B;
  position: relative;
  z-index: 2;
}

.proposal-link:hover {
  color: #DAA520;
  border-color: #DAA520;
}

.event-date a, .media-date a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid;
}

.event-date a:hover, .media-date a:hover {
  color: #DAA520;
  border-color: #DAA520;
}

/* ========== TIMELINE & MEDIA SECTIONS ========== */
.timeline-event, .media-event, .skeptic-event, .faq-item {
  margin-bottom: 20px;
  padding-left: 20px;
  border-left: 2px solid #8B4513;
  position: relative;
}

.timeline-event::before, .media-event::before, .skeptic-event::before, .faq-item::before {
  content: '';
  position: absolute;
  left: -9px;
  top: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
}

.timeline-event::before {
  background-color: #8B4513;
}

.media-event::before {
  background-color: #B8860B;
}

.skeptic-event::before {
  background-color: #B22222;
}

.faq-item::before {
  background-color: #DAA520;
}

.event-date {
  font-weight: bold;
  color: #8B4513;
}

.media-date {
  font-weight: bold;
  color: #B8860B;
}

/* ========== FAQ SECTION ========== */
.faq-item h3 {
  color: #8B4513;
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.1em;
}

.faq-item p {
  margin: 0;
  line-height: 1.6;
}

.key-facts ul {
  margin: 10px 0;
  padding-left: 20px;
}

.key-facts li {
  margin-bottom: 10px;
  line-height: 1.6;
}

.potential-impact p {
  margin-bottom: 15px;
  line-height: 1.6;
}

/* ========== VIDEO SECTION ========== */
/* Video Container - Holds All Video Items */
.video-container {
  margin-top: 20px;
}

/* Individual Video Item */
.video-item {
  background-color: #F5E6CA;
  border: 2px solid #8B4513;
  margin-bottom: 20px;
  overflow: hidden;
  padding: 15px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 20px;
}

/* Content Area - Title and Description */
.video-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.video-title {
  font-family: 'Cinzel', serif;
  color: #8B4513;
  font-size: 1.4em;
  margin: 0 0 15px 0;
  font-weight: bold;
}

.video-description {
  color: #654321;
  line-height: 1.6;
  margin: 0;
  font-size: 1em;
}

/* Video Thumbnail and Play Button */
.video-thumbnail {
  position: relative;
  width: 178px;
  height: auto;
  flex-shrink: 0;
  cursor: pointer;
  align-self: center; 
  border: 1px solid #8B4513;
  overflow: hidden;
}

.video-thumbnail img {
  width: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.3s ease;
}

.video-thumbnail:hover img {
  transform: scale(1.05);
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background-color: rgba(139, 69, 19, 0.8);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s ease;
}

.play-button:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 18px solid #F4E0C0;
  margin-left: 5px;
}

.video-thumbnail:hover .play-button {
  background-color: rgba(184, 134, 11, 0.8);
}

/* ========== FOOTER ========== */
.footer {
  width: 100%;
  background-color: #8B4513;
  padding: 20px 0;
  margin-top: 40px;
  text-align: center;
}

.footer-content {
  max-width: 80%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-text {
  color: #F4E0C0;
  font-family: 'Cinzel', serif;
  font-size: 0.5vw;
}

.footer-link {
  color: #F4E0C0;
  text-decoration: none;
  border-bottom: 1px solid #F4E0C0;
  transition: color 0.3s;
}

.footer-link:hover {
  color: #DAA520;
  border-color: #DAA520;
}

/* ========== RESPONSIVE STYLES ========== */
/* Desktop Styles (Large screens) */
@media (min-width: 1025px) {
  .left-column, .right-column {
    width: 48%;
  }

  .left-column .summary,
  .left-column .timeline,
  .left-column .key-facts,
  .left-column .potential-impact,
  .left-column .faq-section,
  .right-column .video-section,
  .right-column .media-coverage,
  .right-column .skeptics-section {
    width: 100%;
  }

  .left-container .counter {
    font-size: 1.4vw;
  }

  .left-container .label {
    font-size: 0.8vw;
  }

  .summary p,
  .timeline p,
  .media-coverage p,
  .video-description {
    font-size: 16px;
    line-height: 1.6;
  }
}

/* Tablet Styles (Medium screens) */
@media (min-width: 769px) and (max-width: 1024px) {
  .content-container,
  .left-column,
  .right-column {
    width: 90%;
    margin: 0 auto;
  }

  .summary,
  .timeline,
  .key-facts,
  .potential-impact,
  .faq-section,
  .media-coverage,
  .video-section,
  .skeptics-section {
    width: 100%;
    margin: 20px 0;
  }

  .counter {
    font-size: 28px;
  }

  .label {
    font-size: 20px;
  }

  h1 {
    font-size: 32px;
  }

  .summary p,
  .timeline p,
  .media-coverage p,
  .video-description {
    font-size: 16px;
  }

  .video-item {
    padding: 12px;
  }

  .video-thumbnail {
    width: 150px;
  }

  .footer-text {
    font-size: 16px;
  }
}

/* Mobile Styles (Small screens) */
@media (max-width: 768px) {
  .container {
    width: 90%;
    padding: 20px 10px;
    border-width: 4px;
    margin: 10px 0;
  }

  .container.left-container {
    padding: 15px;
    border-width: 4px;
    box-sizing: border-box;
  }

  .counter {
    font-size: 20px;
    margin: 5px 0;
  }

  .label {
    font-size: 16px;
    margin-top: 10px;
  }

  h1 {
    font-size: 24px;
    margin: 15px 0;
  }

  h2 {
    font-size: 20px;
  }

  h3 {
    font-size: 18px;
  }

  .left-container,
  .left-column,
  .right-column,
  .summary,
  .timeline,
  .key-facts,
  .potential-impact,
  .faq-section,
  .media-coverage,
  .video-section,
  .skeptics-section {
    width: 95%;
    margin: 10px auto;
    box-sizing: border-box;
  }

  .summary p,
  .timeline p,
  .media-coverage p {
    font-size: 16px;
    line-height: 1.4;
  }

  .video-item {
    flex-direction: column;
    padding: 12px;
  }

  .video-title {
    margin-bottom: 10px;
    font-size: 1.3em;
    text-align: left;
  }

  .video-description {
    margin-bottom: 15px;
    text-align: left;
    font-size: 16px;
    line-height: 1.4;
  }

  .video-thumbnail {
    width: 178px;
    margin: 0 auto;
  }

  .timeline-event,
  .media-event,
  .skeptic-event,
  .faq-item {
    padding-left: 15px;
  }

  .timeline-event::before,
  .media-event::before,
  .skeptic-event::before,
  .faq-item::before {
    width: 12px;
    height: 12px;
    left: -7px;
  }

  .footer-content {
    max-width: 90%;
    flex-direction: column;
  }

  .footer-logo {
    margin-right: 0;
    margin-bottom: 10px;
  }

  .footer-text {
    font-size: 14px;
  }
}
