/* =========================================================
   theme-2026.css
   Page-specific styles for /theme-2026
   Split out of the old monolithic style.css. Rule order is
   unchanged from the original file.
   ========================================================= */

.image-container {
  position: relative;
  overflow: visible;
}
.wide-theme-img {
  width: 100%;
  max-width: none;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  display: block;
}
.animate-scale-item {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.8s ease-out;
}
.animate-scale-item:nth-child(1) {
  transition-delay: 0.2s;
}
.animate-scale-item:nth-child(2) {
  transition-delay: 0.4s;
}
.fade-up-text {
  opacity: 0;
  transform: translateY(20px);
  transition: all 1s ease-out;
}
.fade-slide {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease-out;
}
.why-theme-section {
  background: #ededed;
}
.theme-box {
  background: #ffffff;
  border-radius: 14px;
  padding: 25px 35px;
  border-left: 6px solid #053365;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  margin: auto;
}
.theme-box p {
  font-size: 17px;
  color: #333;
  line-height: 1.8;
  margin-bottom: 12px;
}
.force-card {
  background: #001524;
  padding: 20px;
  border-radius: 14px;
  text-align: center;
  border: 1px solid #2c2c2c;
  transition: 0.35s;
  height: 100%;
}
.force-card:hover {
  transform: translateY(-10px);
  transform: translateY(-10px);
  border-color: #ffffff;
  box-shadow: 0 10px 25px rgb(255 255 255 / 20%);
}
.force-img {
  width: 100%;
  height: 300px;
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .force-img {
    width: 100%;
    height: 250px;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
  }
}
.force-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.35s;
}
.force-card:hover img {
  transform: scale(1.06);
}
.force-card h4 {
  color: #fff;
  margin-bottom: 8px;
  font-weight: 600;
}

/* Show date / venue strip under "Why This Theme Matters" */
.theme-showinfo {
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid rgba(10, 22, 80, 0.15);
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 16px;
}

.theme-showinfo-name {
  font-size: 20px;
  font-weight: 700;
  color: #0A1650;
}

.theme-showinfo-meta {
  font-size: 16px;
  color: #55636f;
}

.theme-showinfo-meta i {
  margin-right: 6px;
  color: #63005d;
}

.theme-showinfo-sep {
  margin: 0 10px;
  color: #c3cad3;
}

@media (max-width: 575px) {
  .theme-showinfo { display: block; }
  .theme-showinfo-name { display: block; margin-bottom: 8px; }
  .theme-showinfo-sep { display: none; }
  .theme-showinfo-meta i { display: inline-block; margin-top: 6px; }
}