/* =====================
   styles.css (NAVBAR REMOVED)
   ===================== */

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Base Font */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  background: #f5f5f5;
}

/* =====================
   Hero Section
   ===================== */
.hero {
  background: url('images/hero.jpg') no-repeat center center/cover;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.5);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 20px;
  margin-bottom: 30px;
}

.cta-button {
  background-color: #006633;
  color: white;
  padding: 12px 30px;
  border: none;
  text-decoration: none;
  font-size: 16px;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.cta-button:hover {
  background-color: #004d33;
}


.container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 50px 10%;
  min-height: 100vh;
}

.text-section {
  flex: 1;
  padding-right: 50px;
}

.text-section h4 {
  color: #1abc9c;
  font-size: 18px;
  margin-bottom: 10px;
}

.text-section h1 {
  font-size: 36px;
  line-height: 1.3;
  font-weight: bold;
  margin-bottom: 20px;
}

.text-section p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #555;
}

.read-more {
  display: inline-block;   /* fit width to content */
  margin: 15px auto 0;     /* center horizontally */
  padding: 10px 20px;      /* control spacing around text */
  background: #1abc9c;
  color: #fff;
  font-size: 14px;
  border-color: #fff;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.3s ease;
  width: fit-content;      /* ensures width = text + padding */
}

.read-more:hover {
  background: #16a085;
}

.read-more span {
  margin-left: 6px;
}

.image-section {
  flex: 1;
  text-align: right;
}

.image-section img {
  width: 100%;
  max-width: 600px;
  border-radius: 10px;
  object-fit: cover;
}

@media (max-width: 900px) {
  .container {
    flex-direction: column;
    text-align: center;
  }

  .text-section {
    padding-right: 0;
    margin-bottom: 30px;
  }

  .image-section img {
    max-width: 100%;
  }
}
