/**
 * Hero Content Size Reduction
 * Makes hero content (title, tagline, description) smaller
 */

/* Reduce hero title size */
.hero-title {
  font-size: clamp(2rem, 5vw, 4.5rem) !important;
}

/* Reduce hero tagline size */
.hero-section .lead.fs-3.mb-2 {
  font-size: clamp(1rem, 2.8vw, 1.5rem) !important;
}

/* Reduce hero description size */
.hero-description {
  font-size: clamp(0.85rem, 1.8vw, 1rem) !important;
}

/* Reduce rotating sentence size */
.rotating-sentence {
  font-size: clamp(0.9rem, 2.2vw, 1.25rem) !important;
}

/* Reduce hero subtitle if present */
.hero-subtitle {
  font-size: 1.1rem !important;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .hero-title {
    font-size: clamp(1.3rem, 6vw, 2rem) !important;
  }
  
  .hero-section .lead.fs-3.mb-2 {
    font-size: clamp(0.85rem, 2.2vw, 1.1rem) !important;
  }
  
  .hero-description {
    font-size: clamp(0.75rem, 1.8vw, 0.9rem) !important;
  }
  
  .rotating-sentence {
    font-size: clamp(0.8rem, 2vw, 1rem) !important;
  }
}
/* === HERO PRIMARY CTA TWEAK === */
/* Smaller, lighter, more glassy */

.hero-primary-cta {
  font-size: 0.95rem;          /* slightly smaller text */
  padding: 0.55rem 1.25rem;    /* tighter button */
  border-radius: 999px;        /* keep pill look */
  background-color: rgba(99, 102, 241, 0.75); /* softer primary */
  backdrop-filter: blur(6px);  /* subtle glass effect */
  box-shadow: 0 8px 20px rgba(99, 102, 241, 0.25);
}

/* Badge inside button */
.hero-primary-cta .badge {
  font-size: 0.7rem;
  padding: 0.25em 0.45em;
  opacity: 0.9;
}

/* Hover: still premium, not aggressive */
.hero-primary-cta:hover {
  background-color: rgba(99, 102, 241, 0.9);
  box-shadow: 0 10px 26px rgba(99, 102, 241, 0.35);
  transform: translateY(-1px);
}
/* =========================================
   HERO corner buttons: slightly smaller + more transparent
   ========================================= */
.hero-corner-links .hero-corner-link{
  font-size: 0.85rem;
  padding: 0.35rem 0.7rem;
  border-radius: 0.75rem;
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.hero-corner-links .hero-corner-link:hover{
  background: rgba(255,255,255,0.68);
}

/* =========================================
   Artwork of the Day image: prevent “too tall” distortion
   Your HTML shows: id="artworkOfDayImage" class="img-fluid h-100"
   h-100 can force stretching -> override safely here.
   ========================================= */
#artworkOfDayImage{
  height: auto !important;   /* cancels Bootstrap h-100 stretching */
  width: 100%;
  max-width: 100%;
  display: block;
  object-fit: cover;         /* keeps it looking “designed” if container constrains it */
  object-position: center;
}