/* =========================
   HERO PUB
========================= */
.hero-pub {
  min-height: 100vh;
  background:
    linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
    url("../library/images/TEAM.webp") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  width: 100%;
  padding: 120px 20px 80px;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  color: #fff;
}

.hero-subtitle {
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 10px;
  opacity: 0.9;
}

.hero-title {
  font-size: clamp(50px, 10vw, 100px);
  font-weight: 800;
  letter-spacing: 2px;
  margin: 0;
}

.hero-text {
  margin-top: 20px;
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255,255,255,0.9);
}

.hero-btn {
  display: inline-block;
  margin-top: 30px;
  padding: 14px 32px;
  background: var(--dark-blue);
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.hero-btn:hover {
  background: black;
  transform: translateY(-2px);
}

/* =========================
   INTRO PUB
========================= */
.intro-pub {
  padding: 90px 20px;
  background: #fff;
}

.intro-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.intro-label {
  color: var(--dark_orange);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  font-weight: 700;
}

.intro-title {
  font-size: clamp(28px, 5vw, 46px);
  margin-top: 10px;
  color: #111;
}

.intro-text {
  margin-top: 20px;
  font-size: 18px;
  line-height: 1.8;
  color: #444;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
  .hero-text {
    font-size: 16px;
  }

  .intro-text {
    font-size: 16px;
  }
}



.opening-hours {
  padding: 80px 20px;
  background: #fff;
  max-width: 900px;
  margin: 0 auto;
}

.opening-subtitle {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 3px;
  color: #a65318;
  margin-bottom: 10px;
  text-align: center;
}

.opening-hours h2 {
  text-align: center;
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 50px;
}

.hours-list {
  border-top: 1px solid #eee;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid #eee;
  gap: 20px;
}

.day {
  font-weight: 700;
  font-size: 18px;
  min-width: 180px;
}

.details {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 15px;
  color: #555;
}

.closed .details span {
  color: #a65318;
  font-weight: 600;
}

/* MOBILE */
@media (max-width: 600px) {
  .hours-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .details {
    text-align: left;
  }
}





/* IMAGE BANNER */
.image-banner {
  min-height: clamp(260px, 45vw, 430px);
  background-image: url('/assets/library/images/slide1');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  margin: clamp(50px, 8vw, 90px) 0;
  position: relative;
  overflow: hidden;
}

.image-banner .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.42);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  text-align: center;
}

.image-banner .overlay h3 {
  color: #fff;
  font-size: clamp(24px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  max-width: 900px;
  margin: 0;
}

/* MOBILE */
@media (max-width: 768px) {
  .image-banner {
    min-height: 320px;
    background-position: center;
    margin: 55px 0;
  }
}

@media (max-width: 480px) {
  .image-banner {
    min-height: 260px;
  }

  .image-banner .overlay {
    padding: 18px;
  }
}



