/* --- Reset --- */
* {
   box-sizing: border-box;
   padding: 0px;
   margin: 0px;
}

html,
body {
   height: 100%;
   width: 100%;
}

body {
   font-family: "Inter", sans-serif;
   font-weight: 300;
   background-color: #ebebee;
   color: black;
}

::-webkit-input-placeholder,
:-moz-placeholder,
::-moz-placeholder,
:-ms-input-placeholder {
   color: #999;
   font-family: "Inter", sans-serif;
   font-weight: 300;
}

p {
   font-size: 18px;
}

a,
input,
textarea,
select,
button {
   transition: background-color 0.8s ease;
   -webkit-appearance: none;
   appearance: none;
   font-family: "Inter", sans-serif;
}

.inner {
   max-width: 1400px;
   width: 100%;
   display: block;
   margin: 0 auto;
}

/* --- Main styles --- */

.hero {
   position: relative;
   text-align: center;
   background-image: url(assets/hero-new.png);
   background-size: cover;
   background-position: center;
   background-attachment: fixed;
}

.hero::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
   background: rgba(0, 0, 0, 0.4);
   backdrop-filter: blur(4px);
   -webkit-backdrop-filter: blur(4px);
   z-index: 1;
}

.hero * {
   position: relative;
   z-index: 2;
   /* Ensure text/content is above the overlay */
}

.hero .inner {
   height: 100%;
   width: 100%;
   display: flex;
   align-items: center;
   justify-content: center;
   height: 90vh;
   min-height: 400px;
}

.hero .name {
   font-size: 20px;
   font-weight: bold;
   margin-bottom: 10px;
   color: #dadada;
}

.hero h1 {
   font-size: calc(20px + 3.3vw);
   color: white;
}

.hero a {
   padding: 15px 30px;
   background-color: #f37945;
   border: none;
   font-size: 18px;
   border-radius: 3px;
   margin-top: 50px;
   font-weight: bold;
   cursor: pointer;
   text-decoration: none;
   display: inline-block;
   color: white;
}




h2 {
   font-size: calc(10px + 1.5vw);
}

.mailing {
   padding: 150px 0;
   background-color: white;
   text-align: center;
}

#mc_embed_signup {
   max-width: 800px;
   display: inline-block;
   width: 100%;
   margin-top: 30px;
}



.events {
   padding: 150px 0;
}

.eventHolder {
   display: flex;
   margin-top: 50px;
   gap: 30px;

   flex-wrap: wrap;
   align-items: stretch;
   justify-content: center;
}

.event {
   background-color: white;
   box-shadow: 0 2px 4px 0 rgb(0 0 0 / 8%);
   border: solid 1px #ccc;
   border-radius: 10px;
   overflow: hidden;
   max-width: 440px;
   flex-basis: 440px;
   width: 100%;

   display: flex;
   flex-direction: column;
}

.event img {
   max-width: 100%;
   width: auto;
   max-height: 400px;
}

.event .content {
   flex-grow: 1;
   min-height: 0;
   padding: 30px;
}

.event .buttonSec {
   padding: 30px;
   padding-top: 10px;
}

.event .title {
   font-size: 24px;
   font-weight: bold;
}

.event .location {
   padding: 15px 0;
}

.event .summary {
   font-size: 18px;
}

.event button,
.event .btn {
   padding: 15px 30px;
   background: linear-gradient(135deg, #f37945, #D63041);
   /* Smooth gradient */
   border: none;
   font-size: 18px;
   border-radius: 30px;
   margin-top: auto;
   width: 100%;
   font-weight: bold;
   cursor: pointer;
   color: white;
   /* Better contrast */
   display: inline-block;
   text-decoration: none;
   text-align: center;
   transition: all 0.3s ease-in-out;
   box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
   /* Subtle shadow */
   outline: none;
   /* Removes default focus outline */
}

/* Hover effect */
.event button:hover,
.event .btn:hover {
   background: linear-gradient(135deg, #D63041, #B71C2A);
   transform: translateY(-2px);
   /* Slight lift effect */
   box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

/* Active effect (when clicked) */
.event button:active,
.event .btn:active {
   transform: translateY(1px);
   box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

/* Focus for accessibility */
.event button:focus-visible,
.event .btn:focus-visible {
   outline: 3px solid rgba(245, 72, 87, 0.5);
}

.event button[disabled], .event .btn[disabled] {
   background: #ccc !important;
   cursor: not-allowed !important;
   border: solid 1px grey !important;
   color: black !important;
}

.event button[disabled]:hover, .event .btn[disabled]:hover {
   transform: translateY(0px) !important;
   box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15) !important;
}

.event span + i {
   margin-left: 10px;
}

.mailing h2 {
   margin-bottom: 5px;
}


footer {
   background-color: #f37945;
   color: black;
}

footer .logo {
   padding: 30px 0;
}

footer .cols {
   display: flex;
   gap: 50px;
}

footer .cols .col {
   flex: 1;
}

footer .col h4 {
   font-size: 22px;
}

footer .col p {
   font-size: 18px;
}

footer .bottom {
   padding: 20px 0;
   font-size: 16px;
}

footer .socLinks {
   display: flex;
   flex-flow: row wrap;
   width: 100%;
   margin-top: 10px;
   gap: 5px;
}

footer .socLinks .soci-link {
   text-decoration: none;
   display: inline-block;
   flex-basis: 50px;
   font-size: 40px;
}

footer a {
   color: black;
}



.banner {
   background-color: #f37945;
   color: black;
}

.banner .inner {
   padding: 20px 0;
   display: flex;
   align-items: center;
   justify-content: space-between;
   font-size: 22px;
   gap: 20px;
}

.banner i {
   font-size: 40px;
}

.banner a {
   background-color: black;
   color: #f37945;
   padding: 10px 20px;
   display: inline-block;
   text-decoration: none;
   border-radius: 50px;
   font-weight: bold;
}

.banner .banCont {
   display: flex;
   gap: 10px;
   align-items: center;
}


.boxes {
   display: flex;
   gap: 50px;
   justify-content: space-between;
   margin-top: 50px;
}

.boxes .box {
   text-align: center;
}

.boxes .box h3  {
   margin-bottom: 10px;
   font-size: 24px;
}

.about {
   padding: 150px 0;
   background-color: white;
   text-align: center;
}

.about .box i {
   font-size: 60px;
   padding: 10px 0;
   display: inline-block;
   color: #f37945;
}



.discoveryCall {
   background-color: white;
   color: black;
   padding: 150px 0;
}

.discoveryCall .inner {
   display: flex;
   gap: 100px;
   align-items: center;
}

.discoveryCall .inner .image {
   flex: 1;
}

.discoveryCall .inner .image img {
   width: 100%;
}

.discoveryCall .inner .text {
   flex: 1;
}

.discoveryCall .inner .text ul {
   margin-left: 60px;
}

.discoveryCall .inner .text .words {
   padding: 30px 0;
}

.btn {
   padding: 15px 30px;
   background-color: #f37945;
   border: none;
   font-size: 18px;
   border-radius: 10px;
   margin-top: 50px;
   font-weight: bold;
   cursor: pointer;
   text-decoration: none;
   display: inline-block;
   color: white;
}



.testimonials {
   padding: 150px 0;
   background-color: #fff;
}

.testimonials .grid {
   display: grid;
   grid-template-columns: repeat(2, minmax(200px, 1fr));
   gap: 100px;
   align-items: start;
   margin-top: 50px;
}

.testimonials .grid>* {
   align-self: center;
}

.testimonials .text {
   background: #ffffff;
   padding: 30px;
   border-radius: 8px;
   box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border: solid 1px #ccc;
}

.testimonials .review {
   font-size: 1.125rem;
   line-height: 1.6;
   color: #555;
   margin-bottom: 1rem;
}

.testimonials .text .review span {
   font-weight: bold;
   color: #f37945;
}

.testimonials .reviewer {
   font-size: 1rem;
   font-weight: bold;
   color: #f37945;
}

.testimonials .video iframe {
   width: 100%;
   aspect-ratio: 16 / 9;
   border-radius: 8px;
   border: 0;
}

.legal {
   font-size: 14px;
   margin: 15px 0;
   display: inline-block;
}


.aiConsultancy {
   background-color: #F37945;
   color: white;
   text-align: center;
   padding: 150px 0;
}

.aiConsultancy p {
   margin-top: 5px;
}

.aiConsultancy a {
   padding: 15px 30px;
   background-color: #fff;
   border: none;
   font-size: 18px;
   border-radius: 10px;
   margin-top: 50px;
   font-weight: bold;
   cursor: pointer;
   text-decoration: none;
   display: inline-block;
   color: #000;
}


.infos {
  padding: 150px 0;
  background-color: white;
}

.infos:nth-child(even) {
  background-color: #ebebee;
}

.infos .inner {
  display: flex;
  align-items: center;
  gap: 100px;
}

.infos .text {
  flex: 1.5;
} 

.infos .image {
  flex: 1;
}

.infos .image img {
  width: 100%;
  border-radius: 10px;
}

.infos .text i {
  font-size: 40px;
  margin-bottom: 30px;
  display: inline-block;
  color: #666;
}

.infos h2 {
  font-size: 25px;
  margin-bottom: 15px;
}

.infos p + p {
  margin-top: 10px;
}

.infos a {
  display: inline-block;
  font-size: 18px;
  margin-top: 20px;
  background: #f37945;
  padding: 15px 30px;
  color: white;
  text-decoration: none;
  border-radius: 3px;
  font-weight: bold;
}



/* Small desktop sizing issues --- */
@media only screen and (max-width: 1410px) {
   .inner {
      width: 85%;
   }
}

/* --- Mobile styles --- */
@media only screen and (max-width: 800px) {
   .inner {
      width: 100%;
      padding: 20px;
   }

   .eventHolder, footer .cols, .boxes, .banner .inner, .discoveryCall .inner, .infos .inner {
      flex-direction: column;
   }

   .testimonials .text {
      order: 2;
   }

   .testimonials .video {
      order: 1;
   }


   .testimonials .grid {
      gap: 30px;
      grid-template-columns: 1fr;
   }

   section {
      padding: 50px 10px !important;
   }

   .event {
      max-width: none;
      flex-basis: auto;
   }

   .hero {
      background-attachment: scroll;
      
   }

   .hero .inner {
      height: auto;
   }
  

}