@charset "UTF-8";
/* CSS Document */

.home-contact {
    margin: 60px auto 0 auto;
    font-family: 'Cabin', sans-serif;
    color: #2e2e2e;
	 padding: 60px 10px;
   
}

/* Banner section */
.contact-banner {
  background-image: url(../img/home_page/contact_banner.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 16px 16px 0 0;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  padding: 20px;
  text-align: center;
}
.contact-overlay {
  background: rgba(255, 255, 255, 0.7);
  padding: 30px 40px;
  border-radius: 12px;
  text-align: center;
  max-width: 90%;
  backdrop-filter: blur(4px);
}

.contact-overlay h2 {
  font-size: 40px;
  font-weight: bold;
  background: linear-gradient(to right, #e6c26a, #5d9b6a, #6d9dc5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
	font-family: 'Milk Drink';
	 margin: 0 auto;
	padding: 20px 0px 15px 0px;
	letter-spacing: 2px;
	
}

.contact-overlay p {
  font-size: 18px;
  font-weight: 400;
  color: #5a5a5a;
}

/* Main content below banner */
.contact-content {
  background: linear-gradient(to right, #f9f7f3, #f0efe8);
  padding: 40px 20px 60px;
  border-radius: 0 0 16px 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  text-align: center;
}

.contact-banner {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
  background: #f9f9f9; /* light neutral backdrop for logo */
}



.social-icons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 25px;
}

.social-icons a {
  font-size: 18px;
  font-weight: 600;
  color: #3c6e47;
  text-decoration: none;
  padding: 10px 16px;
  border: 2px solid #3c6e47;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background-color: #3c6e47;
  color: #fff;
}

/* Call to Action Button */
.btn {
  background: linear-gradient(to left, #b0d9a4, #f2e4b3, #eac4d1);
  color: #2e2e2e;
  padding: 12px 32px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.btn:hover {
  background: linear-gradient(to right, #b0d9a4, #f2e4b3, #eac4d1);
  color: #000000;
  font-size: 17px;
}

.contact-info h3 {
  font-size: 40px;
  font-weight: bold;
  background: linear-gradient(to right, #e6c26a, #5d9b6a, #6d9dc5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
	font-family: 'Milk Drink';
	 margin: 0 auto;
	padding: 0px 0px 0px 0px;
	letter-spacing: 2px;
	
}
.contact-info p {
  font-size: 16px;
  margin-bottom: 10px;
  line-height: 1.5;
}

.contact-info a {
  color: #3c6e47;
  text-decoration: underline;
  font-weight: 600;
}

.contact-info a:hover {
  color: #2a6f97;
}

.contact-content {
  font-size: 16px;
}



/* Max Width 1920px */
@media (max-width: 1920px) {
	
	.home-contact {
    margin: 0px auto 0 auto;
    font-family: 'Cabin', sans-serif;
    color: #2e2e2e;
	 padding: 150px 10px;
   
}
  .contact-overlay h2 {
    font-size: 50px;
  }
  .contact-overlay p {
    font-size: 20px;
  }
  .btn {
    font-size: 18px;
  }
	
	.contact-logo {
  max-width: 350px;   /* adjust size as needed */
  height: auto;
		
}

}

/* Max Width 1200px */
@media (max-width: 1200px) {
  .contact-overlay {
    padding: 25px 35px;
  }
  .contact-overlay h2 {
    font-size: 40px;
  }
  .contact-overlay p {
    font-size: 18px;
  }
  .btn {
    padding: 10px 28px;
  }
	
	.contact-logo {
  max-width: 300px;   /* adjust size as needed */
  height: auto;
}

}

/* Max Width 768px */
@media (max-width: 768px) {
  .contact-banner {
    height: 260px;
  }
  .contact-overlay h2 {
    font-size: 40px;
  }
  .contact-overlay p {
    font-size: 16px;
  }
  .social-icons a {
    font-size: 16px;
    padding: 8px 14px;
  }
  .btn {
    font-size: 16px;
    padding: 10px 24px;
  }
	
	.contact-logo {
  max-width: 300px;   /* adjust size as needed */
  height: auto;
}

}

/* Max Width 480px */
@media (max-width: 480px) {
  .contact-banner {
    height: 220px;
  }
  .contact-overlay {
    padding: 20px;
  }
  .contact-overlay h2 {
    font-size: 40px;
  }
  .contact-overlay p {
    font-size: 15px;
  }
  .social-icons {
    gap: 18px;
  }
  .social-icons a {
    font-size: 15px;
    padding: 7px 12px;
  }
  .btn {
    font-size: 15px;
    padding: 10px 20px;
  }
	
	.contact-logo {
  max-width: 250px;   /* adjust size as needed */
  height: auto;
}

}

/* Max Width 300px */
@media (max-width: 300px) {
  .contact-banner {
    height: 160px;
	  margin-top: 60px;
  }
  .contact-overlay h2 {
    font-size: 40px;
  }
	.contact-info h3 {
    font-size: 40px;
  }
	
  .contact-overlay p {
    font-size: 14px;
  }
  .social-icons {
    flex-direction: column;
    gap: 12px;
  }
  .social-icons a {
    width: 100%;
    padding: 8px 0;
  }
  .btn {
    width: 100%;
    padding: 10px;
    font-size: 14px;
  }
}

