:where(.wp-site-blocks *:focus) {
  outline-width: 2px;
  outline-style: solid;
}

:root {
  --wp--preset--font-family--base: "Montserrat", sans-serif !important;
  --wp--preset--font-family--heading: "Montserrat", sans-serif !important;
}
body,
h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-family: "Montserrat", sans-serif !important;
}

h1 {

    font-size: clamp(3.615rem, 6vw, 5rem) !important;
    line-height: 1.1 !important;
  margin-top: 0 !important;
}

p {
  font-size: clamp(0.875rem, 6vw, 1rem) !important;
  line-height: 1.25 !important;
}

header {
  position: sticky;
  top: 0;
  z-index: 10;
  transition: all 0.5s ease-in-out;
}

/* Change background after scroll */
header.scrolled {
  height: 96px;
  background-color: rgba(24, 0, 91, 0.8); /* Example: semi-transparent black */
  transition: all 0.5s ease-in-out;
}

main {
  padding: 0 !important;
}

section {
  padding: 80px 20px !important;
}

.home .transparent-header {
  background: transparent !important;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
}

form p {
  margin: 0;
}

/* General Input Styles */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="url"],
.wpcf7 input[type="tel"],
.wpcf7 textarea,
.wpcf7 select {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background-color: #f9f9f9;
  font-size: 16px;
  transition: border-color 0.3s, box-shadow 0.3s;
}

/* Focus State */
.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 input[type="url"]:focus,
.wpcf7 input[type="tel"]:focus,
.wpcf7 textarea:focus,
.wpcf7 select:focus {
  border-color: #0073e6;
  box-shadow: 0 0 0 3px rgba(0, 115, 230, 0.1);
  outline: none;
}

/* Submit Button */
.wpcf7 input[type="submit"] {
  background-color: #c1ff72 !important;
  color: rgb(70, 49, 119);
  padding: 12px 25px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
}

.wpcf7 input[type="submit"]:hover {
  background-color: #005bb5;
}

/* Error Messages */
.wpcf7-not-valid-tip {
  color: #e74c3c;
  font-size: 14px;
  margin-top: -15px;
  margin-bottom: 10px;
}

/* Success Message */
.wpcf7-mail-sent-ok {
  color: #2ecc71;
  padding: 15px;
  background: #eafaf1;
  border: 1px solid #2ecc71;
  border-radius: 6px;
  margin-top: 20px;
}

.cf7-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.cf7-col {
  flex: 1;
  min-width: 250px;
}

.wpcf7 label {
  display: block;
	font-size: 1.05rem !important;
  margin-bottom: 5px;
}

.wpcf7 input,
.wpcf7 select,
.wpcf7 textarea {
  width: 100%;
  padding: 10px;
  font-size: 1rem;
  box-sizing: border-box;
}

.video-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100vw;
  max-width: 100% !important;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
}

.video-modal-content {
  position: relative;
  margin: 5% auto;
  width: 70vw;
}

.video-modal-close {
  position: absolute;
  top: -20px;
  right: -20px;
  font-size: 32px;
  color: white;
  cursor: pointer;
}

.video-wrapper video {
  width: 100%;
  height: auto;
}


.single-post h2, .single-post h3, .single-post h4 {
	margin-bottom: 1rem !important;
}

.single-post .wp-block-post-content * {
	margin: 1rem auto !important;
}



.testimonial-carousel {
    position: relative;
    padding: 3rem 2rem;
}

.testimonial-carousel::before {
    content: "\201C";
    position: absolute;
    top: 50%;
    left: 0px;
	transform: translateY(-50%);
    font-size: 12rem;
    font-weight: bold;
    color: #c1ff72;
    line-height: 1;
    z-index: 0;
}

.testimonial-carousel::after {
    content: "\201D";
    position: absolute;
    top: 50%;
		transform: translateY(-50%);
    right: 0px;
    font-size: 12rem;
    font-weight: bold;
    color: #c1ff72;
    line-height: 1;
    z-index: 0;
}


/* Mobile menu items: left aligned + larger font */
@media (max-width: 768px) {
  /* target the container UL inside the mobile menu */
  .wp-block-navigation__responsive-container-content 
  .wp-block-navigation__container, .wp-block-navigation__submenu-container, .wp-block-navigation-item {
    display: flex !important;          /* reset flex to block */
	  width: 100% !important;
	  padding: 0 20px !important;
	  flex-direction: column !important;
	  gap: 2rem !important;
	  align-items: flex-start !important;
	  justify-content: flex-start !important;
    text-align: left !important;                   /* ensure left alignment */
  }

  /* style the links */
  .wp-block-navigation__responsive-container-content 
  .wp-block-navigation-item__content {
	  
    font-size: 18px;                    /* bigger text */
    display: block;                     /* full width clickable */
    padding: 12px 16px;                 /* spacing */
  }
	  .wp-block-navigation__responsive-container-content 
	.wp-block-navigation-item__content .wp-block-navigation-item {
		
	}

	
}
