@font-face {
  font-family: 'Almonte', serif;
  src: url('/fonts/Almonte.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Rafika';
  src: url('/fonts/Rafika.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

body {
  font-family: sans-serif;
  margin: 0;
  padding: 0;
  background: #f4f4f4;
  color: #333;
}

h2 {
  font-size: 1.8em;
  margin-bottom: 1em;
}

#page-header {
  position: relative;
  height: 400px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.header-overlay {
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 2em;
  /* border: 2px solid red; */
}

.header-overlay h1 {
  font-size: 5em; 
  text-align: center;
  font-family: 'Rafika';
}

.h1-top {
  margin-top: 1.05em;
}

.h1-bottom {
  margin-top: -1.05em;
  margin-bottom: 1em;
}

.description {
  padding: 1.5em;
  text-align: center;
  font-size: 1.2em;
}

.pricing {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 2em;
  background: #fff;
  flex-wrap: wrap;
  /* border: #b75517 2px solid; */
  gap: 1em;
}

.pricing-cards {
  display: flex;
}

.plan {
  flex: 1;
  background: #f9f9f9;
  max-width: 30em;
  padding: 1em;
  border-radius: 0.5em;
  box-shadow: 0 0 0.625em rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* gap: 1em; */
  margin: 1em;
}

.plan p {
  flex-grow: 1;
}

.price-highlight {
  font-size: 2em;
  color: #d2691e; /* Less bright orange (chocolate) */
  font-weight: 700;
  text-align: center;
  margin-top: 0.5em;
  font-family: 'Almonte', sans-serif;
}

.img-container {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.25em;
  background: #ccc;
}

.img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.info-section {
  background: #fff;
  padding: 2em;
  text-align: center;
}

.info-boxes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5em;
}

.addon-box {
  background: #f1f1f1;
  padding: 1.5em;
  border-radius: 0.5em;
  box-shadow: 0 0 0.625em rgba(0,0,0,0.08);
  max-width: 18.75em;
  flex: 1;
  min-width: 15em;
}

.addon-box h3 {
  margin-top: 0;
  color: #222;
}

.addon-box p {
  color: #444;
  font-size: 0.95em;
}

.info-box {
  background: #f1f1f1;
  padding: 1.5em;
  border-radius: 0.5em;
  box-shadow: 0 0 0.625em rgba(0,0,0,0.08);
  max-width: 18.75em;
  flex: 1;
  min-width: 15em;
}

.info-box h3 {
  margin-top: 0;
  color: #222;
}

.info-box p {
  color: #444;
  font-size: 0.95em;
}

.disclaimer {
  font-size: 0.85em;
  color: #666;
  margin-top: 1em;
}

.carousel-section {
  margin: 3em 0;
  text-align: center;
}

.carousel-section p {
  color: #555;
  margin-bottom: 1.5em;
  max-width: 600px;
  margin: 0 auto 1.5em auto;
}

.carousel-wrapper {
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 3em;
  height: auto;
}

.carousel {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1em;
  flex-wrap: nowrap;
  overflow: hidden;
  width: 100%;
  margin-bottom: 1em;
}

.carousel .img-container {
  width: 6.25em;
  height: 6.25em;
  flex-shrink: 0;
  transition: transform 0.3s ease-in-out, opacity 0.3s;
  opacity: 0.5;
  cursor: pointer;
  border-radius: 0.25em;
  overflow: hidden;
}

.carousel .img-container.center {
  width: 10em;
  height: 10em;
  opacity: 1;
  transform: scale(1.2);
  z-index: 2;
  margin: 1em;
}

footer {
  text-align: center;
  padding: 1em;
  background: #222;
  color: white;
}

footer a {
  color: #61dafb;
  text-decoration: none;
  margin: 0 0.5em;
}

#footer-links img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  vertical-align: middle;
}

#modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
  animation: fadeIn 0.3s ease-in-out;
}

.modal-content {
  position: relative;
  background: white;
  padding: 1em;
  border-radius: 0.5em;
  max-width: 90vw;
  max-height: 90vh;
  box-shadow: 0 0 1.25em rgba(0,0,0,0.5);
}

.modal-content img {
  max-width: 100%;
  max-height: 80vh;
  display: block;
  margin: auto;
}

.close-button {
  position: absolute;
  top: -0.625em;
  right: -0.625em;
  background: white;
  color: black;
  font-size: 1.5em;
  padding: 0.25em 0.625em;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 0.3125em rgba(0,0,0,0.5);
}

.carousel-arrow {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  font-size: 2.5rem;
  font-weight: bold;
  color: rgba(126, 126, 126, 0.8);
  padding: 0.3em 0.5em;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s, color 0.2s;
  line-height: 1;
}

.carousel-arrow:hover {
  color: rgba(154, 154, 154, 0.8);
}

.left-arrow {
  left: 10%;
}

.right-arrow {
  right: 10%;
}

@media (max-width: 1024px) {
  .carousel {
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
    padding: 1em 0;
    box-shadow: 0 0 0.9375em rgba(0, 0, 0, 0.3);
  }

  .carousel .img-container {
    width: 7.5em;
    height: 7.5em;
    flex: 0 0 auto;
    scroll-snap-align: center;
    opacity: 1;
    transform: none;
  }

  .carousel .img-container.center {
    width: 7.5em;
    height: 7.5em;
    transform: none;
  }

  .carousel-arrow {
    display: none;
  }

  .pricing {
    flex-direction: column;
    align-items: center;
  }

  .plan {
    width: 90%;
    max-width: 25em;
    margin: 1em 0;
  }

  #page-header {
    height: 300px;
  }
}

@media (max-width: 600px) {
  .header-overlay h1 {
    font-size: 2.5em;
  }
  .header-text h1 {
    display: none;
  }
  .header-icon {
    min-width: 15em;
    min-height: 15em;
    margin-right: 1.5em;
    /* display: block; */
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.plan h3 {
  text-align: center;
  font-size: 1.4em;
}


.contact-button {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.75em 1.5em;
  margin: 1em auto 0 auto;
  margin-bottom: 1em;
  background-color: #d2691e; /* chocolate orange */
  color: white;
  font-weight: bold;
  font-size: 1.1em;
  border: none;
  border-radius: 0.375em;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.3s ease;
  text-align: center;
  max-width: 18.75em;
  align-self: center;
}

.contact-button:hover {
  background-color: #b75517;
}

.contact-button:active {
  transform: scale(0.98);
}

.contact-button:focus {
  outline: 3px solid #b75517;
  outline-offset: 2px;
}
.disclaimer-box {
  font-size: 0.85em;
  margin: 1.5em auto;
  margin-top: 5em;
  padding: 1em;
  max-width: 1800px;
  color: #555;
  background: #fdfdfd;
  border: 1px solid #ddd;
  border-radius: 0.375em;
}
.price-descriptions {
  padding: 2em;
}

.price-descriptions li {
  list-style-type: none;
  margin-left: 0;
  padding-left: 0;
  padding-top: 1em;
}

.process-descriptions li {
  list-style-type: none;
  margin-left: 0;
  padding-left: 0;
  margin-right: 2em;
  margin-bottom: 1em;
  padding-top: 1em;
  text-align: left;
}

.header-icon {
  height: 10em;
  margin-left: 0.5em;
  vertical-align: middle;
}

.header-text {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-right: 1em;
}

.process {
  display: flex;
  flex-direction: column; /* stack children vertically */
  align-items: center;    /* center the heading and cards */
  padding: 2em;
  gap: 1em;
}

.process-step {
  flex: 1;
  background: #f9f9f9;
  padding: 1em;
  border-radius: 0.5em;
  box-shadow: 0 0 0.625em rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 0.75em;
  max-width: 22em;
}

.process-step h3 {
  text-align: center;
  font-size: 1.4em;
}

.process-step p {
  text-align: center;
  font-size: 0.95em;
  color: #444;
}

.process-step .img-container {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.25em;
  background: #ccc;
  /* margin-top: 1em; */
}

.process-step .img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.process-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  /* gap: 1em; */
}

.process-step {
  /* min-width: 25em; */
  background: #f9f9f9;
  /* margin: 1em; */
}

@media (max-width: 1400px) {
  .process-step {
  min-width: 25em;
  }
  
}

@media (max-width: 1300px) {
  .pricing-cards{
    flex-direction: column;
  }
  
}

@media (max-width: 600px) {
  .process-step {
    min-width: 18em;
  }
  


  

}