@charset "UTF-8";

/* RESET */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Poppins", Arial, sans-serif;
}

/* PAGE */
.page-wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* HERO */
.hero-section {
  flex: 1;
  display: flex;
  height: calc(100vh - 60px);
}

/* LEFT (50%) */
.hero-left {
  width: 50%;
  background: #f28c28;
  color: white;
  padding: 2rem;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  position: relative;
  text-align: center;
}

/* LOGO */
.hero-logo {
  position: absolute;
  top: 20px;
  left: 20px;
}

.hero-logo img {
  max-width: 220px;
  border-radius: 12px;
}

/* CONTENT */
.hero-content {
  max-width: 500px;
  margin-top: 150px;   /* ← THIS creates space below the logo */
}

.hero-content h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.hero-content p {
  line-height: 1.6;
}

/* CONTACT */
.contact-box {
  margin-top: 1rem;
}

.contact-email {
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
}

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

/* RIGHT (50%) */
.hero-right {
  width: 50%;
  overflow: hidden;
}

/* IMAGE */
.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* FOOTER */
.site-footer {
  background: #f28c28;
  color: white;
  text-align: center;
  padding: 1rem;
}

/* MOBILE */
@media (max-width: 768px) {
  .hero-section {
    flex-direction: column;
    height: auto;
  }

  .hero-left,
  .hero-right {
    width: 100%;
  }

  .hero-right {
    padding: 0;
  }

  .hero-logo {
    left: 50%;
    transform: translateX(-50%);
  }

  .hero-left {
    padding-top: 100px;
  }
}