/* Banner Styles */
.banner {
  background: url('./images/cover2.png') no-repeat center center/cover;
  height: 300px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner {
  background: url('./images/cover3.png') no-repeat center center/cover;
  height: 400px;
  width: 100%;
  position: relative;
}

/* Overlay */
.banner::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  /* background: rgba(0, 0, 0, 0.4); */
  z-index: 1;
}



.contact-box {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.banner-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  z-index: 2;
  text-align: center;
  font-family: 'Georgia', serif;
  padding: 0 15px; /* some padding for small devices */
}

.banner-text h1 {
  font-size: 48px;
  margin: 0;
  text-shadow: 2px 2px 6px #000;
}

.banner-text p {
  font-size: 20px;
  margin-top: 10px;
  font-style: italic;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .banner {
    height: 250px;
  }
  .banner-text h1 {
    font-size: 32px;
  }
  .banner-text p {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .banner {
    height: 180px;
  }
  .banner-text h1 {
    font-size: 24px;
  }
  .banner-text p {
    font-size: 14px;
  }
}


.banner h1 {
  font-size: 48px;
  margin-bottom: 10px;
}

.banner p a {
  color: #fff;
  text-decoration: underline;
}

/* Contact Section */
.contact-section {
  padding: 60px 15px;
}

.contact-box {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 0 12px rgba(0,0,0,0.05);
}

.contact-box h2 {
  margin-bottom: 20px;
  font-size: 24px;
  color: #333;
}

.contact-box input,
.contact-box textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.contact-box p {
  font-size: 16px;
  margin: 10px 0;
}

.contact-box i {
  color: #007bff;
  margin-right: 10px;
}

.map-container {
  overflow: hidden;
  border-radius: 8px;
  margin-top: 20px;
}



.about-section {
  padding: 60px 0;
}

.section-heading {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
  color: #d67e00;
}

.section-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #d67e00;
  border-radius: 2px;
}

.content-wrapper {
  display: flex;
  gap: 60px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.content-column {
  flex: 1 1 45%;
  min-width: 300px;
}

.content-column h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #222;
}

.content-column p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 25px;
  color: #555;
}

.content-column ul {
  list-style: disc inside;
  margin-bottom: 30px;
  color: #555;
}

.content-column ul li {
  margin-bottom: 10px;
}

.social-icons {
  display: flex;
  gap: 20px;
}

.social-icons a {
  font-size: 22px;
  color: #d67e00;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #b06500;
}

.image-column {
  position: relative;
  flex: 1 1 45%;
  min-width: 300px;
  height: 420px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.image-column img {
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(214, 126, 0, 0.6);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
  width: 250px;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.img-1 {
  z-index: 5;
  transform: translate(-20px, 40px) rotate(-5deg);
}

.img-2 {
  z-index: 6;
  width: 280px;
  transform: translate(130px, 0) rotate(7deg);
}

.image-column img:hover {
  transform: scale(1.1) rotate(0deg);
  box-shadow: 0 35px 70px rgba(214, 126, 0, 0.85);
  z-index: 10;
}

/* Responsive */
@media (max-width: 900px) {
  .content-wrapper {
    flex-direction: column;
  }
  .image-column {
    position: relative;
    height: 350px;
    gap: 20px;
  }
  .image-column img {
    position: relative;
    width: 70%;
    transform: none !important;
    margin: 0 auto;
    display: block;
  }
}
