html {
  min-height: 100%;
}

body {
  background-image: radial-gradient(52% 68% at 58% 19.77%, var(--Lighter-Blue, #0D505B) 0%, var(--Darker-Blue, #082730) 100%);
}

a {
  color: #FFF;
  text-decoration: underline
}




/* TEXT HEADINGS AND PARAGRAPHS */


/* Text styles */

h1 {
  color: #ffffff;
  text-align: left;
  font-family: "pacaembu", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: clamp(1.75rem, 0.75rem + 5vw, 5.5rem);
  line-height: 120%;
  position: relative;
  align-self: stretch;
  text-wrap: balance;
}

h2 {
  margin: 0;
}


p {
  color: #ffffff;
  text-align: left;
  font-family: "pacaembu", sans-serif;
  font-weight: 300;
  font-style: normal;
  line-height: 140%;
  font-size: clamp(1rem, 0.75rem + 1.25vw, 2rem);
  margin-top: 0;
  /* Removes default top browser spacing */
  margin-bottom: 1.5rem;
  flex: 1;
  text-wrap: pretty;
}


.top {
  text-transform: uppercase;
}



.card-title {
  font-family: "pacaembu", sans-serif;
  font-style: normal;
  color: #082730;
  text-align: left;
  line-height: 130%;
  font-size: clamp(1.25rem, 0.625rem + 2vw, 2.125rem);
  text-transform: uppercase;
  flex: 1;
}


.address {
  font-weight: 700;
  padding: 18px 0px 0px 0px;
  line-height: 120%;
  flex: 1;
}


.address--l3 {
  font-weight: 700;
  padding: 0;
  line-height: 120%;
  margin: 0 0 20px 0;
  /* Removes default top browser spacing */
  flex: 1;
}

.bldgname {
  font-weight: 300;
  margin: 0 0 20px 0;
  /* Removes default top browser spacing */
}

.card-text {
  margin: 0;
  text-align: left;
  font-family: "pacaembu", sans-serif;
  font-weight: 400;
  font-size: clamp(1.125rem, 0.5rem + 1.5vw, 1.5rem);
  color: #082730;
  line-height: 140%;
}

.divider {
  margin-top: 72px;
  text-transform: uppercase;
  font-size: clamp(1rem, 0.75rem + 1.25vw, 2rem);
  letter-spacing: 0.175rem;

}


.bold {
  font-family: "pacaembu", sans-serif;
  font-weight: 700;
}

.text-highlight {
  position: relative;
  display: inline-block;
}

.text-highlight::before {
  content: '';
  position: absolute;
  top: 15%;
  left: -0.5%;
  right: -0.8%;
  height: 85%;
  background-color: #f04e53;
  z-index: -1;
}


/* DIV CONTAINER STYLES */


.parent {
  width: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
  /* Adds space between the stacked items */
  align-items: center;
}


.content {
  width: 95%;
  max-width: 1400px;
  height: auto;
}


.card-grid {
  width: 95%;
  /* Spans almost full width on small screens */
  max-width: 1400px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.75rem;
}

.card-grid--l3 {
  gap: 1.75rem;
}


/* Card Containers */
.card {
  box-sizing: border-box;
  background-color: #ffffff;
  border-radius: 32px;
  padding: 40px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card--l1 {
  grid-column: 1 / -1;
  /* spans both columns */
}

.card--l3 {
  display: flex;
  align-items: flex-start;
  gap: 1.75rem;
  width: 100%;
  grid-column: 1 / -1;
}


.first {
  margin-top: 100px;
}





.content--bottom {
  margin-top: 180px;
  margin-bottom: 100px;
}

.wcdc-info {
  display: flex;
  justify-content: space-between;
  /* Pushes children to opposite sides */
  align-items: center;
  /* Optional: Vertically centers them */
  width: 100%;
  overflow: hidden;
  margin-top: 192px;

}

.contact-info {
  display: flex;
  justify-content: flex-end;
}

.wcdc-address {
  color: #ffffff;
  text-align: left;
  font-family: "pacaembu", sans-serif;
  font-weight: 300;
  font-style: normal;
  line-height: 140%;
  font-size: clamp(.75rem, 0.5rem + 1.25vw, 1.25rem);
  margin-top: 0;
  /* Removes default top browser spacing */
  margin-bottom: 1.5rem;
  flex: 1;
  text-wrap: pretty;

}


/* Image Wrapper */
.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #999;
  border-radius: 18px 18px 0px 0px;

}

.card--l3-image {
  width: clamp(240px, 30%, 320px);
  height: auto;
  /* Keeps the aspect ratio intact */
}

.card--l3-image img {
  width: 100%;
  display: block;
  border-radius: 18px;
}

.logo {
  width: clamp(190px, 40%, 340px);
  margin-bottom: 1.75rem;
}




/* CAROUSEL STYLES */

.carousel-container {
  position: relative;
  border-radius: 18px 18px 0px 0px;
  margin: auto;
  overflow: hidden;
  user-select: none;
  /* Prevents text selection while dragging */
}

.carousel-track {
  display: flex;
  width: 100%;
  will-change: transform;
  cursor: grab;
}

.carousel-track:active {
  cursor: grabbing;
}

.slide {
  min-width: 100%;
  box-sizing: border-box;
}

.slide img {
  pointer-events: none;
  /* Crucial: stops browser image-dragging bugs */
}

.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 16px;
  cursor: pointer;
  font-size: 18px;
  z-index: 10;
  transition: background-color 0.2s;
}

.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.prev {
  left: 0;
  border-radius: 0 5px 5px 0;
}

.next {
  right: 0;
  border-radius: 5px 0 0 5px;
}

.dots-container {
  text-align: center;
  padding: 15px 0;
}

.dot {
  cursor: pointer;
  height: 11px;
  width: 11px;
  margin: 0 4px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.dot.active,
.dot:hover {
  background-color: #333;
}


/* Content Layout */
.card-body {
  display: flex;
  flex-direction: column;
}

.card--l3-body {
  display: flex;
  flex-direction: column;
  flex: 1;
}


/* BUTTONS */

.button-base {
  width: fit-content;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  color: #ffffff;
  padding: 10px 40px 12px 40px;
  border-radius: 8px;
  font-family: "pacaembu", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.05rem;
  font-size: clamp(1.125rem, 0.75rem + 1.25vw, 2.125rem);
  transition: background-color 0.2s;
}

.button-base:hover {
  background-color: #D4383D;
}

.button--enabled {
  background-color: #F04E53;
}

.button--disabled {
  background-color: #FCB4B6;
  pointer-events: none;
}

.button--block {
  display: block;
  margin-top: 64px;
}

.button--inline {
  display: inline-block;
}




.card--l3-action {
  flex: 0 0 auto;
}



/* responsive */



@media (max-width: 1000px) {

  .first {
    margin-top: 60px;
  }

  .card {
    padding: 24px;
  }

  .content--bottom {
    margin-top: 120px;
    margin-bottom: 80px;
  }

  .card-grid {
  gap: 1.75rem;
}

.card-grid--l3 {
  gap: 1.25rem;
}
}



@media (max-width: 800px) {

  .card-grid {
    grid-template-columns: 1fr;
  }

  .card--l1 {
    grid-column: auto;
  }

  .card {
    padding: 24px;
  }


  .card--l3 {
    flex-direction: column;
  }

  .card--l3-image {
    width: 60%;
  }


  .address--l3 {
  text-align: center;
}

  .wcdc-info {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 112px;

  }

.divider {
  letter-spacing: 0.1rem;

}


  .wcdc-address {
    margin-left: 5%;

  }

  .content--bottom {
    margin-top: 100px;
    margin-bottom: 60px;
  }
}



@media (max-width: 600px) {

  .first {
    margin-top: 40px;
  }

  .card {
    padding: 18px;
  }

  .content--bottom {
    margin-top: 64px;
    margin-bottom: 32px;
  }

    .card--l3-image {
    width: 100%;
  }

}


@media (min-width: 744px) {

  .padding-right {
    padding-right: 14%;
  }
}






/*

font-family: "pacaembu", sans-serif;
font-weight: 300;
font-style: normal;

font-family: "pacaembu", sans-serif;
font-weight: 400;
font-style: normal;

font-family: "pacaembu", sans-serif;
font-weight: 700;
font-style: normal;

*/