/* ====================
HERO SECTION IMAGE AND TEXT BOX
==================== */
.hero-section {
margin-top: 3px;
margin-bottom: 8px;
display: block;
}

.hero-container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.hero-image {
  flex: 0 1 453px; 
  flex-shrink: 0;
}

.hero-image img {
    width: 100%;
  height: auto;
  display: block;
}

.hero-text-stack {
  flex: 0 1 538px;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  gap: 6px;
}

.text-box-caption img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: -4px;
  filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.9))
          drop-shadow(0 0 3px rgba(255, 255, 255, 0.6));
}

.text-box {
  border-radius: 20px;
  border-width: 3.5px;
  border-style: solid;
  padding: 7px 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.text-box p {
  margin: 0;
  font-family: 'Sniglet', arial, sans-serif;
  line-height: 1.2;
  text-align: center;
}

.text-box-1 { background: #fdfce0; border-color: #2e6b4f; box-shadow: 0 0 4px 2px rgba(255, 245, 150, 0.84); flex: .8;}
.text-box-1 p { color: #2e6b4f; font-size: 2.55rem; line-height: 1.15; }

.text-box-2 { background: #F5FDFF; border-color: #4C788C; box-shadow: 0 0 4px 2px rgba(255, 245, 150, 0.84); }
.text-box-2 p { color: #4C788C; font-size: 2.5rem; line-height: 1.15; }

.text-box-3 { background: #FFE9F0; border-color: #894DAA;; box-shadow: 0 0 4px 2px rgba(255, 245, 150, 0.84); }
.text-box-3 p { color: #894DAA; font-size: 2.5rem; line-height: 1.15; }

/* ====================
Text Boxes and Large Images
==================== */

.text-box-png img {
width: 100%;
height: auto;
display: block;
margin-top: 2px;
margin-bottom: 7px;
filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.9))
drop-shadow(0 0 3px rgba(255, 255, 255, 0.6));
}

/* ====================
TEXT BOX (HTML FORMAT)
==================== */
.text-box-solo {
max-width: 1000px;
width: 99%;
margin: 0 auto;
border-radius: 20px;
border-width: 4px;
border-style: solid;
padding: 5px 4px;
box-sizing: border-box;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 0 4px 2px rgba(255, 245, 150, 0.84);
background: #dfe7f7;
border-color: #4d5ca8;
margin-bottom: 5px;
margin-top: 5px;
}

.text-box-solo p {
margin: 0;
font-family: 'Sniglet', arial, sans-serif;
font-size: 1.84rem;
letter-spacing: 0.04em;
line-height: 1.2;
text-align: center;
color: #5960b2;
}

.inspiration-caption {
max-width: 1000px;
width: 100%;
margin: 0 auto;
}

.inspiration-caption img {
width: 100%;
max-width: 100%;
height: auto;
display: block;
  filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.9))
          drop-shadow(0 0 3px rgba(255, 255, 255, 0.6));
}

/* ====================
MOBILE RESPONSIVE
==================== */
@media (max-width: 768px) {

.hero-container {
    flex-direction: column;
    height: auto; 
    align-items: center;
    max-width: 100%;
    padding: 0 2px;
    box-sizing: border-box;
    gap: 4px;
  }

  .hero-image {
    width: 100%;
    flex: none;               
  }

  .hero-image img {
    height: auto; 
    object-fit: cover;
  }

  .hero-text-stack {
    width: 100%;
    height: auto;
    flex: none;
    gap: 9px;
  }

  .text-box {
    height: auto;
    min-height: 80px;
    padding: 6px 6px;
  }

.text-box-1 p { font-size: clamp(1.7rem, 5.8vw, 3.4rem); }
  .text-box-2 p { font-size: clamp(1.7rem, 5.6vw, 3.6rem); }
  .text-box-3 p { font-size: clamp(1.7rem, 5.6vw, 3.6rem); }
}