@import url(./_css/variables.css);

button {
   font-size: var(--bd-fz-p);
}

.terms-of-service p {
	margin: 0 0 1.8em 0;
}
.terms-of-service ul {
	margin: 0 0 1.8em 1.6em;
}

.project-aside  h4 {
  margin: 0;
  text-transform: uppercase;
}
.project-aside  span {
  font-size: 1rem;
}

.project-image img {
	border: 1px solid #333;
   filter: drop-shadow(2px 4px 6px #e7e7e7);
}

.project-thumbs {
	margin: 0 auto;
}
.project-thumbs img {
	display: inline-block;
	width: 320px;
	max-width: 320px;
	margin: 1em;
	border: 1px solid #777;
}

/* CARD STYLES */
a.lp-card-button,
a.lp-card-button {
  padding: .5em 1em;
  font-size: 1.2rem;
  border: 1px solid #6e9932; 
  border-radius: 7px; 
  background: #8CC63F; 
  color: white;
}

a.lp-card-button:link,
a.lp-card-button:visited {
  background: #8CC63F; 
  color: white;
}

a.lp-card-button:hover,
a.lp-card-button:active {
  background: #6e9932; 
  color: white;
}




/* ONLINE SCHEDULE FORM */
.scheduler-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2em;
  align-items: flex-start;
}

.calendar-container {
  flex: 1;
  padding: 1.6rem;
  background-color: #8ec63f;
  border-radius: 6px;
}

.calendar-section,
.booking-section {
  flex: 2;
}


.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  color: white;
}

.calendar-header button {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

#calendar-title {
  color: white;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  font-size: 1rem;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  transition: opacity 0.4s ease;
}

.cell {
  padding: 6px 0;
  text-align: center;
  border-radius: 6px;
  font-size: 1.1rem;
  font-weight: 800;
  color: white;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.cell:hover:not(.disabled):not(.dimmed) {
  transform: scale(1);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.cell.selected {
  background-color: #8EC63F;
  color: #fff;
  border: 1px solid #fff;
  font-weight: bold;
  transform: scale(1.05);
  box-shadow: 0 0 10px rgba(0, 102, 255, 0.3);
}

.cell.dimmed {
  color: #ccc;
  cursor: default;
  font-weight: 400;
}

.cell.disabled {
  color: #ccc;
  cursor: not-allowed;
  pointer-events: none;
  font-weight: 400;
}

.cell.today {
  position: relative;
  background-color: transparent;
  font-weight: bold;
  color: #8EC63F;
  z-index: 1;
}

.cell.today::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 32px;
  height: 32px;
  background: white;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.duration-options {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 1em 0;
}

.duration-options label {
  position: relative;
  cursor: pointer;
}

.duration-options input[type="radio"] {
  display: none;
}

.btn-label {
  padding: 10px 16px;
  background-color: #f0f0f0;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

.duration-options input[type="radio"]:checked + .btn-label {
  background-color: #8ec63f;
  color: #fff;
  border-color: #8ec63f;
}

.slots-container {
  display: flex;
  flex-direction: column;
  gap: 3px;
  max-height: 300px;
  overflow-y: auto;
}

.slot {
  padding: 12px 16px;
  background-color: #fff;
  border: 1px solid #ccc;
  padding: 10px 15px;
  margin: 5px;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  text-align: center;
  color: #8ec63f;
  transition: background 0.2s, transform 0.2s;
}


.slot.disabled {
  background-color: #ccc;
  cursor: not-allowed;
}

.slot:hover:not(.disabled) {
  background-color: #e0f0ff;
  transform: translateY(-1px);
}

.slot.disabled {
  background-color: #eee;
  color: #aaa;
  pointer-events: none;
  cursor: not-allowed;
}

.slot.selected {
  background-color: #8ec63f;
  color: #fff;
  border-color: #0052cc;
  border: 2px solid #0052cc;
  font-weight: bold;
}

.lp-platforms {
  margin: 0;
  padding: 4rem 0;
  background: #f5f5f5;
  text-align: center;
}

.lp-platforms h2 {
  text-transform: capitalize;
}

.lp-platforms-icons {
  display: flex;
  flex: 1;
  flex-wrap: wrap;
  gap: 4rem;
  justify-content: center;
}

.lp-platforms-icons div {
  align-content: center;
  width: 50%;
}

.lp-platforms-icons div img {
  width: 100%;
}














@media all and (min-width: 50em) {
  .lp-platforms {
    background: #f5f5f5;
    text-align: center;
  }
  .lp-platforms div div p {
    padding: 0 20rem;
  }

  .lp-platforms-icons {
    display: flex;
    flex: 1 1 0;
    flex-wrap: wrap;
    gap: 4rem;
    justify-content: center;
  }

  .lp-platforms-icons div {
    align-content: center;
    width: 12%;
  }
}