/* ======================
   COUNTDOWN
   ====================== */
#countdown {
  font-size: 2.2rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-align: center;
  margin: 0.25rem 0;
  color: #e1dfdb;
}

.fx-pulse {
  animation: pulseGlow 1s ease;
}

@keyframes pulseGlow {
  0% { transform: scale(1); text-shadow: none; }
  50% { transform: scale(1.08); text-shadow: 0 0 20px rgba(225,223,219,0.5); }
  100% { transform: scale(1); text-shadow: none; }
}

/* ======================
   HERO ROW (info + photo)
   ====================== */
.hero-row {
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  max-width: 1200px;   
  width: 100%;
  margin: 1.5rem auto;
  box-sizing: border-box;
  align-items: stretch;
}

.info-panel {
  flex: 1 1 560px;
  padding: 2.5rem 2rem; 
  background: #431d2a;
  border-radius: 16px;
  color: #e1dfdb;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-sizing: border-box;
  gap: 0.4rem;
}

.info-sig {
  font-size: 1.6rem; 
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #e1dfdb;
}

.info-divider {
  width: 40px;
  height: 1px;
  background: rgba(225, 223, 219, 0.35);
  margin: 1.2rem auto;
}

.info-panel p {
  font-size: 1.05rem;
  line-height: 1.75;
  margin: 0;
  opacity: 0.9;
  color: #e1dfdb;
}

.info-panel strong {
  color: #e1dfdb;
}

.info-sub {
  font-size: 0.9rem; 
  opacity: 0.65;
}

.info-desc {
  font-size: 1.1rem;
  opacity: 0.8;
  line-height: 1.9; 
}

.info-link {
  color: #e1dfdb;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.info-link:hover {
  opacity: 0.75;
}

/* ======================
   HERO PHOTO
   ====================== */
.hero-photo {
  flex: 0 0 480px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  overflow: hidden;
  border-radius: 12px;
}

.hero-img {
  width: 100%;
  height: auto; 
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  display: block;
  object-fit: contain; 
}

/* ======================
   DAILY PANEL
   ====================== */
.daily-panel {
  margin-top: 2rem;
  padding: 2.5rem; 
  background: rgba(255,255,255,0.3);
  border-radius: 20px;
  display: flex;
  gap: 2rem;
  max-width: 1200px;
  width: 100%;
  align-items: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

.daily-photo img {
  width: 300px; 
  height: 300px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

.daily-fact {
  text-align: left;
}

.daily-fact h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem; 
}

.daily-fact p {
  font-size: 1.3rem; 
  line-height: 1.6;
}

.section-title {
  margin-top: 3rem;
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;  
}

/* ======================
   RESPONSIVE
   ====================== */
@media (max-width: 1200px) {
  .hero-photo { flex: 0 0 340px; }
  .hero-img { max-width: 340px; }
}

@media (max-width: 992px) {
  .hero-row { gap: 1.2rem; }
  .hero-photo {
    flex: 1 1 280px;
    max-width: 280px;
    align-self: stretch;
  }
  .hero-img {
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: cover;
    object-position: center top;
  }
}

@media (max-width: 768px) {
  h1 { font-size: 1.8rem; }
  #countdown { font-size: 1.6rem; }

  .daily-panel {
    flex-direction: column;
    text-align: center;
    width: 90%;
    padding: 1.2rem;
  }

  .daily-photo img {
    width: 100%;
    max-width: 300px;
    height: auto;
  }

  .daily-fact {
    text-align: center;
    width: 100%;
  }

  .hero-row {
    flex-direction: column;
    align-items: center;
  }

  .info-panel {
    width: 90%;
    padding: 1.6rem;
    justify-content: center;
    flex: 0 0 auto;
  }

  .hero-photo {
    margin-top: 1rem;
    flex: 0 0 auto;
    width: 100%;
    max-width: none;
  }
  
   .hero-img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    object-position: center;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 1.5rem; }
  h3 { font-size: 1.3rem; }
  #countdown { font-size: 1.4rem; }

  .info-panel {
    font-size: 1rem;
    padding: 1.2rem;
  }

  .daily-panel { padding: 1.2rem; }
}