/**
 * banner.css - Delight Acupuncture Banner Styles
 * Responsive tiers: Desktop (> 860px), Tablet (<= 860px), Mobile (<= 576px)
 */

/* ==========================================================================
   1. BASE & DESKTOP (> 860px)
   ========================================================================== */

.banner-section {
  position: relative;
  width: 100%;
  min-height: 250px;
  display: flex;
  align-items: flex-end; /* Matches 'is-position-bottom-center' */
  justify-content: center;
  overflow: hidden;
  background-color: #f1f5f9; /* Fallback background color */
  color: var(--color-heading-darkest); /* Default text color for banner contents */
}

/* Ensure headings & paragraphs inherit banner base color unless overridden */
.banner-section h1,
.banner-section h2,
.banner-section h3,
.banner-section p {
  color: inherit;
}

/* Responsive Background Image filling the container */
.banner-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 0%; /* Matches WordPress 50% top alignment */
  z-index: 1;
}

/* Inner Text Wrapper */
.banner-content-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  padding: 0rem 1.5rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: left;
  font-family: var(--font-serif, "Gowun Batang", "AppleMyungjo", "Batang", serif);
  font-weight: 700;
  text-align: left;
}

/* Placed at top of banner (used for subpage banner) */
.banner-section-subpage {
  align-items: flex-start;
}

.banner-section-subpage .banner-content-container {
  align-self: flex-start;
  padding: 2.5rem 1.5rem 0.5rem;
}

/* Banner Brand Logo (Desktop: 240px static width) */
.banner-logo {
  width: 240px;
  max-width: 240px;
  height: auto;
  flex-shrink: 0;
  align-self: flex-start;
  object-fit: contain;
}

.banner-text-group {
  display: flex;
  margin-left: 0;
  flex-direction: column;
  align-items: left;
  gap: 0.35rem;
}

/* Korean Title (기쁨한의원) - Desktop */
.banner-title-korean {
  font-family: inherit;
  font-size: 2.625rem;
  color: inherit;
  margin: 0;
  line-height: 1.2;
}

/* Main English Heading (Delight Acupuncture) - Desktop */
.banner-title-main {
  font-family: inherit;
  font-size: 2rem;
  color: inherit;
  margin: 0 0 0.63rem 0;
  line-height: 1.15;
}

/* Sub-title / Tagline - Desktop */
.banner-tagline {
  font-size: 1rem;
  font-weight: 400;
  color: var(--heading-bright) !important;
  letter-spacing: 0.02em;
  margin-top: 0.25rem;
  line-height: 1.4;
}

/* ==========================================================================
   2. TABLET (<= 860px)
   ========================================================================== */
@media (max-width: 860px) {
  .banner-section {
    min-height: 170px;
    height: 170px;
  }
  
  .banner-content-container {
    padding: 1.25rem 1.25rem 1.25rem;
  }

  .banner-section-subpage .banner-content-container,
  .banner-content-container.banner-content-top {
    padding: 1.75rem 1.25rem 0.5rem;
  }

  /* Banner Brand Logo (Tablet: 190px static width) */
  .banner-logo {
    width: 190px;
    max-width: 190px;
  }

  .banner-text-group {
    margin-left: 0;
    gap: 0.25rem;
  }

  .banner-title-korean {
    font-size: 2rem;
    line-height: 1.15;
  }

  .banner-title-main {
    font-size: 1.5rem;
    margin: 0 0 0.4rem 0;
    line-height: 1.15;
  }

  .banner-tagline {
    font-size: 0.9rem;
    margin-top: 0.15rem;
  }
}

/* ==========================================================================
   3. MOBILE (<= 576px)
   ========================================================================== */
@media (max-width: 576px) {
  .banner-section {
    min-height: 100px;
    height: 100px;
  }
  
  .banner-content-container {
    padding: 0.75rem 1rem 0.55rem;
  }

  .banner-section-subpage .banner-content-container,
  .banner-content-container.banner-content-top {
    padding: 0.75rem 1rem 0.5rem;
  }

  /* Banner Brand Logo (Mobile: 140px static width) */
  .banner-logo {
    width: 140px;
    max-width: 140px;
    margin-top: 3px;
  }

  .banner-text-group {
    margin-left: 0;
    gap: 0.15rem;
  }

  .banner-title-korean {
    font-size: 1.22rem;
    line-height: 1.1;
  }

  .banner-title-main {
    font-size: 1.15rem;
    margin: 0 0 0.25rem 0;
    line-height: 1.1;
  }

  .banner-tagline {
    font-size: 0.8rem;
    margin-top: 0;
  }
}
