/* =============================
   GLOBAL STYLES
============================= */
body {
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  margin: 0;
  padding: 0;
  text-align: center;
  width: 90%;
  margin: auto;
}



h1 {
  font-size: 3rem;
  color: #6186a6;
  margin-top: 50px;
}

.sub-title {
  font-size: 2.7rem;
  color: #000000;
}

.sub-title-medium {
  font-size: 2.5rem;
  color: #000000;
}

.sub-title-blue {
  font-size: 2.5rem;
  color: #6186a6;
  margin-top: 50px;
}

h2 {
  font-size: 1.5rem;
  color: #000000;
}

h3 {
  font-size: 2rem;
  color: #ffffff;
}

.content {
  width: 90%;
  margin: 0 auto;
}

p {
  font-size: 20px;
  color: #302f2f;
  margin: 20px 0;
  text-align: left;
  line-height: 2rem;
}

/* =============================
   IMAGES
============================= */
.center-image {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
}

.banner-img {
  display: block;
  width: 100%;
  max-width: 728px;
  height: auto;
  margin: 0 auto;
  border-radius: 4px;
}

/* =============================
   FOOTER
============================= */
footer {
  padding: 15px 0;
  margin-top: 40px;
  color: #333;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

/* =============================
   PROMO SECTION
============================= */
.promo-section {
  background-color: #67a856;
  color: white;
  padding: 20px 20px 50px 20px;
  margin: auto;
}

.promo-section h1 {
  font-size: 1.5rem;
  margin-bottom: 30px;
}

.promo-box {
  background-color: white;
  color: black;
  width: 80%;
  max-width: 600px;
  margin: 0 auto;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.promo-box p {
  font-size: 20px;
  margin: 15px 0;
  text-align: center;
}

/* =============================
   HOPLINK FORM
============================= */
#form-section {
  width: 100%;
  background-color: #dcead3;
}

#hoplink-form {
  padding: 25px 30px;
  border-radius: 4px;
  max-width: 800px;
  margin: 0 auto;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-size: 20px;
}

#hoplink-form label {
  font-weight: 600;
  color: #000;
  display: block;
  margin-bottom: 5px;
  text-align: left;
}

#hoplink-form .form-control {
  background-color: #fff;
  border: none;
  height: 42px;
  box-shadow: none;
  width: 100%;
  font-size: 20px;
}

#hoplink-form select.form-control {
  height: 45px;
}

#hoplink-form .row {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
  gap: 20px;
}

#hoplink-form .col-md-6 {
  flex: 1;
  min-width: 300px;
  text-align: left;
}

#hoplink-form .col {
  width: 100%;
  text-align: left;
}

#hoplink-form .form-check {
  display: flex;
  align-items: center;
  gap: 8px;
}

#hoplink-form .form-check-label {
  font-weight: 500;
  color: #000;
  margin-bottom: 0;
}

#hoplink-form .form-check-input {
  width: 18px;
  height: 18px;
  accent-color: #86b86b;
  margin: 0;
}

#hoplink-form .btn {
  background-color: #86b86b;
  color: #000;
  font-weight: 600;
  border: 2px solid #fff;
  border-radius: 2px;
  margin-top: 20px;
  transition: all 0.3s ease;
  display: block;
  margin-left: auto;
  margin-right: auto;
  padding: 20px 87px;
  font-size: 20px;
  cursor: pointer;
}

#hoplink-form .btn:hover {
  background-color: #78a860;
}

/* =============================
   WRAPPER & SIGNUP FORM
============================= */
.wrapper {
  width: 30%;
  max-width: 800px;
  display: flex;
  justify-content: center;
  padding: 20px;
  margin: auto;
  border: 1px solid #060606;
  box-sizing: border-box;
}

.img-center {
  display: block;
  margin: 20px auto;
  max-width: 100%;
  height: auto;
}

#icontactSignupFormWrapper694 {
  text-align: center;
  margin: 20px 0;
}

#icontactSignupFormWrapper694 input[type="text"],
#icontactSignupFormWrapper694 input[type="email"] {
  width: 100%;
  max-width: 400px;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 15px;
  margin-bottom: 12px;
  box-sizing: border-box;
}

#icontactSignupFormWrapper694 input[type="submit"],
#icontactSignupFormWrapper694 button {
  background-color: #000;
  color: #fff;
  border: none;
  padding: 12px 40px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer !important;
  transition: all 0.3s ease;
}

#icontactSignupFormWrapper694 input[type="submit"]:hover,
#icontactSignupFormWrapper694 button:hover {
  background-color: #333;
}

/* =============================
   EMAIL AREA
============================= */
#email-area {
  display: none;
  margin-top: 15px;
  text-align: center;
  font-size: 20px;
  color: #333;
}

#email-area.visible {
  display: block;
  animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =============================
   EMAIL BUTTON
============================= */
.email-btn {
  display: inline-block;
  background-color: #86b86b;
  color: #000;
  font-weight: 600;
  border: 2px solid #fff;
  border-radius: 4px;
  padding: 12px 30px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.email-btn:hover {
  background-color: #6ca457;
  color: #fff;
}

.email-btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(134, 184, 107, 0.5);
}

/* =============================
   IMAGE GRID
============================= */
.grid-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  max-width: 1200px;
}

.image-grid img {
  height: auto;
  display: block;
}

/* =============================
   RESULT TEXTAREA STYLING
============================= */
.d-none {
  display: none;
}

.result {
  margin: 20px auto;
  width: 100%;
  max-width: 1100px;     
  flex-direction: column;
}

/* LABEL */
.result label {
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
  font-size: 20px;
}

/* TEXTAREA */
.result textarea {
  width: 100%;
  padding: 12px 15px;
  font-size: 18px;
  color: #333;
  overflow-y: hidden;        /* <— prevent vertical scrollbar */
  overflow-x: hidden;        /* <— prevent horizontal scrollbar */
  min-height: 50px;
  border: 1px solid #ccc;
  border-radius: 8px;
  resize: none;              /* user can't manually resize */
  background-color: #f9f9f9;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: pre-wrap !important;
  word-break: break-all !important;
}

.result textarea:focus {
  outline: none;
  border-color: #67a856;
  background-color: #fff;
  box-shadow: 0 0 5px rgba(103, 168, 86, 0.3);
}

.collapsible {
  background-color: #f6f6f6;
  color: #302f2f;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
}

.active, .collapsible:hover {
  background-color: #dcead3;
}


.content-colapsable {
  padding: 0 18px;
  display: none;
  overflow: hidden;
  background-color: #f1f1f1;
}

/* =============================
   RESPONSIVE ADJUSTMENTS
============================= */
@media (max-width: 992px) {
  .wrapper {
    width: 95%;
    padding: 15px;
  }

  .col-md-6.col-lg-4 {
    border: none;
    padding: 10px;
  }
}

@media (max-width: 768px) {
  .wrapper {
    flex-direction: column;
    width: 100%;
    border: 1px solid #060606;
    padding: 10px;
  }

  h2 {
    font-size: 1.25rem;
    text-align: center;
  }

  #icontactSignupFormWrapper694 input[type="text"],
  #icontactSignupFormWrapper694 input[type="email"] {
    max-width: 100%;
  }

  #icontactSignupFormWrapper694 input[type="submit"],
  #icontactSignupFormWrapper694 button {
    width: 100%;
  }

  .image-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .promo-section {
    padding: 20px;
  }

  .result {
    width: 95%;
    margin: 15px auto;
  }

  .result label {
    font-size: 0.95rem;
  }

  .result textarea {
    font-size: 15px;
    padding: 10px 12px;
  }
}

@media (max-width: 480px) {
  .image-grid {
    grid-template-columns: 1fr;
  }
}

/* Optional: change the +/- icon when active */
.collapsible .icon {
    float: right;
    transition: transform 0.4s;
}

.active .collapsible .icon {
    transform: rotate(180deg);
    content: "▲";
}

footer p a {
    color:#666666;
}
