body {
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
  background: #b7d3cf;
  color: #44524d;
  text-align: center;

  /* Chevron pattern recreated in CSS */
  background-image:
        repeating-linear-gradient(135deg, rgba(79, 94, 89, 0.15) 0, rgba(79, 94, 89, 0.15) 1px, transparent 1px, transparent 26px),
        repeating-linear-gradient(225deg, rgba(79, 94, 89, 0.15) 0, rgba(79, 94, 89, 0.15) 1px, transparent 1px, transparent 26px);
      background-size: 26px 26px;
      background-position: center;
}


/* TOP HEADER */
.top-banner {
  font-size: 13px;
  letter-spacing: 1px;
  margin-top: 10px;
  margin-bottom: 20px;
  color: #44524d;
}

/* LOGO */
.logo-wrapper {
  margin-top: 10px;     /* moves the logo UP */
  margin-bottom: 10px;
}

.logo {
  width: 220px;
  height: auto;
  opacity: 0.95;
}

/* TITLES */
.title {
  font-family: "Playfair Display", serif;
  font-size: 52px;
  letter-spacing: 3px;
  margin-top: 10px;
  margin-bottom: 5px;
}

.subtitle {
  font-size: 18px;
  letter-spacing: 4px;
  margin-top: 0;
  font-weight: 400;
}

.underline {
  border-bottom: 1px solid #44524d;
  padding-bottom: 3px;
}

/* DESCRIPTION */
.description {
  max-width: 600px;
  margin: 15px auto 0;
  font-size: 16px;
  line-height: 1.6;
}

/* SERVICES */
.services {
  margin-top: 20px;
  font-size: 14px;
  letter-spacing: 2px;
}

/* BUTTONS */
.buttons {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 1px;
  transition: 0.2s ease-in-out;
}

.whatsapp {
  background: #44524d;
  color: white;
}

.email {
  border: 1px solid #44524d;
  color: #44524d;
}

.btn:hover {
  transform: scale(1.05);
}

/* FOOTER */
footer {
  margin-top: 50px;
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 40px;
}
/* Animated underline under "ORGANIZING" */
.subtitle .highlight-word {
  position: relative;
  display: inline-block;
}

.subtitle .highlight-word::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.25em;
  height: 2px;
  width: 100%;
  background: linear-gradient(90deg, transparent, #44524d, transparent);
  background-size: 200% 100%;
  animation: underlineMove 2.2s linear infinite;
}

/* Moving underline animation */
@keyframes underlineMove {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}


/* MOBILE */
@media (max-width: 768px) {

  body {
    padding: 0 10px; /* makes it breathe on small screens */
  }

  .top-banner {
    margin-top: 25px;
    font-size: 11px;
    line-height: 1.3;
  }

  .logo-wrapper {
    margin-top: 12px !important;  /* bring the logo up */
    margin-bottom: 5px;
  }

  .logo {
    width: 220px !important; /* perfect mobile size */
    display: block;
    margin: 0 auto;
  }

  .title {
    font-size: 35px !important;
    margin-top: 5px;
    letter-spacing: 2px;
  }

  .subtitle {
    font-size: 13px !important;
    letter-spacing: 2px;
  }

  .description {
    width: 90%;
    font-size: 15px;
    line-height: 1.5;
    margin: 15px auto;
  }

  .services {
    width: 90%;
    font-size: 15px;
    line-height: 1.5;
    margin: 15px auto;
  }

  @media (max-width: 768px) {
  .buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
    margin-top: 75px;   /* ⬅ push buttons downward */
  }

  .btn {
    width: 80%;
    margin: 0 auto;
  }
}

  footer {
    margin-top: 30px;
    margin-bottom: 30px;
    font-size: 12px;
  }
}

