/* ===============================
   PAGE HERO (SMALL BANNER)
================================= */

.page-hero {
  padding: 0; /* override generic section padding */
}

.page-hero-banner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

/* 50vh banner */
.page-hero-desktop,
.page-hero-mobile {
  height: 50vh;
  min-height: 320px;
}

/* Images */
.page-hero-desktop {
  background-image: url("../images/banner-desktop.jpg");
}

.page-hero-mobile {
  background-image: url("../images/banner-mobile.jpg");
}

/* Show/hide */
.page-hero-desktop { display: flex; }
.page-hero-mobile { display: none; }

@media (max-width: 768px) {
  .page-hero-desktop { display: none; }
  .page-hero-mobile { display: flex; }
}

/* Text */
.page-hero-content {
  position: relative;
  z-index: 1;
  color: #fff;
  padding: 1rem 0;
}

.page-hero-content h2 {
  font-weight: 800;
  line-height: 1.15;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.5rem;
}

.page-hero-content p {
  font-size: clamp(1rem, 2vw, 1.2rem);
}

/* ===============================
   PAGE CONTENT
================================= */

.page-content {
  padding: 3rem 0;
}

.page-content h3 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.page-content p {
  margin-bottom: 1rem;
  color: #222;
}

/* Contact box */
.contact-box {
  margin-top: 1.5rem;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 14px;
  padding: 1.5rem;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

.contact-box h4 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.contact-email {
  display: inline-block;
  font-weight: 800;
  font-size: 1.1rem;
  margin: 0.5rem 0 0.75rem 0;
  color: #111;
  text-decoration: none;
}

.contact-email:hover {
  text-decoration: underline;
}

.contact-hint {
  margin-top: 0.5rem;
  color: #444;
}

/* ===============================
   CONTACT PAGE LAYOUT
================================= */

.contact-section {
  padding: 3rem 0;
}

.contact-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

/* LEFT COLUMN */
.contact-left {
  flex: 1;
}

.contact-left h3 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.contact-left p {
  margin-bottom: 1rem;
  line-height: 1.6;
  color: #222;
}

/* Flat black button */
.contact-btn {
  display: inline-block;
  background: #000;
  color: #fff;
  text-decoration: none;
  padding: 0.85rem 1.5rem;
  margin: 1rem 0 1rem 0;
  font-weight: 600;
  transition: opacity 0.2s ease;
}

.contact-btn:hover {
  opacity: 0.8;
}

.contact-hint {
  font-size: 0.95rem;
  color: #444;
}

/* RIGHT COLUMN */
.contact-right {
  flex: 1;
  text-align: center;
}

.contact-right img {
  max-width: 100%;
  height: auto;
}

/* ===============================
   MOBILE
================================= */

@media (max-width: 768px) {

  .contact-container {
    flex-direction: column;
  }

  /* Hide illustration on mobile */
  .contact-right {
    display: none;
  }

}