@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@900&family=Raleway&display=swap');
*, *:before, *:after {
    box-sizing: border-box;
  }
* {
    /* outline: solid 1px green; */
    outline: none;
    
   
    
}
.montserrat-titles {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 900;
    font-style: normal;
  }
.raleway-texts {
    font-family: "Raleway", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
  }
body, html {
    overflow-x: hidden; /* Prevents horizontal scroll */
  }
html {
    --color-background:#FEDCB6;
    --color-light:#FFE6C7; 
    --color-dark: #454545;
    --color-primary: #FFA559;
    --color-secondary: #FF6000;
    scroll-behavior: smooth;
}
body {
    margin: 0;
    padding: 0;
    background-color: var(--color-background);
    color: #000;
    position: relative;
    display: flex;
    flex-direction: column;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 900;
    font-style: normal;
}
.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
    background-color: var(--color-background);
}
.footer, .section {
    padding: 40px 20px;   
}
/* HEADER with logo & hamburger menu */
#main-header {
  background-color: var(--color-secondary);
  display: flex;
  justify-content: space-between;
  padding-bottom: 4rem;
  position: sticky;
  top: 0;
}
.logo img {
  width: 80px;
  margin-left: 2rem;
}
.menu-btn {
  width: 3rem;
  height: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  display: none;
  margin: 1rem;
}
.menu-btn span {
  width: 100%;
  height: 3px;
  background-color: var(--color-light);
}
#main-header ul {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}
#main-header li {
  margin: 1rem 3rem;
}
#main-header nav a {
  color: var(--color-background);
  font-size: 1.4rem;
  text-decoration: none;
}
#main-header nav a:hover {
  color: var(--color-dark);
}
#side-drawer {
  width: 100%;
  height: 100%;
  /* background-image: url(../images/home/hamburgerbg.png); */
  background-color: var(--color-secondary);
  position: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  top: 0;
  left: 0;
  display: none;
  z-index: 20;
}
#side-drawer:target {
  display: block;
}
#side-drawer header {
  height: 5rem;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  background-color: var(--color-secondary);
}
#side-drawer ul {
  list-style: none;
  margin: 0;
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#side-drawer li {
  margin: 3rem 0;
}
#side-drawer a {
  font-size: 1.6rem;
  color: var(--color-background);
  text-decoration: none;
}
/* Main Sections */
.top-section {
  height: 34vh; 
  background-color: var(--color-secondary);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  z-index: 1;
}
.responsive-image {
  max-width: 100%;
  height: auto; 
  display: block; 
 
}
.mobile-image {
  display: none;
}
img.responsive-image.mobile-image {
  padding-top: 4rem;
}
.bottom-section {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--color-background); 
}
.card-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  width: 100%;
  padding: 10px; 
}
.card {
  flex: 1 1 30%; 
  background-color: var(--color-background); 
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  margin: 10px;
  padding: 2px;
  transition: all 0.3s ease;
  margin-bottom: 2rem;
}
.card.card-2 {
  background-color: var(--color-primary);
}
.card.card-3 {
  background-color: var(--color-background);
}
.card:hover {
  transform: translateY(-10px);
}
.card-title {
  font-size: 1.5rem;
  margin-bottom: 1px;
  color: var(--color-secondary); 
}
.card-image {
  width: 80%;
  height: auto;
  object-fit: cover;
  margin-bottom: 1px;
}
.bottom-section .vertical-text {
  position: absolute;
  right: 0;
  bottom: 1rem;
  writing-mode: vertical-rl; /* Makes text vertical */
  transform: rotate(180deg); /* Rotates text to face the right way */
  font-size: 18px;
  font-size: 2rem;
  color: rgba(255, 96, 0, 1);
  padding: 50px 20px;
}
/* CTA button styling */
.cta-button {
  display: flex;
  padding: 20px 50px;
  margin: 0 auto;
  background-color: var(--color-secondary); 
  border: none;
  border-radius: 10px;
  transition: background-color 0.3s;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;  
}
.cta-link {
  text-decoration: none; 
  color: var(--color-background);
  font-size: 1.4rem;
  cursor: pointer;
} 
.cta-button:hover {
  opacity: 0.9;
  .cta-link {
    color: var(--color-dark);
  }
}


.process-anim {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 20px;
}
.section-titles {
  height: 16vh;
}
.main-titles {
  font-size: 3.6rem;
  color: var(--color-primary);
}
.flexbox-container {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 20px;
}
.flexbox {
  width: 30%;
  background-color: var(--color-background);
  border: 2px solid var(--color-primary);
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.4s ease, transform 0.4s ease, background-color 0.6s ease;
}
.flexbox:hover {
  background-color: var(--color-light);
}
.flexbox img {
  width: 80px;
  margin-bottom: 15px;
}
.flexbox h3 {
  font-size: 1.4rem;
  margin: 10px 2px;
  color: var(--color-dark);
}
.flexbox ul {
  padding: 1rem 0 1rem 4rem;
  text-align: left;
}
.flexbox ul li {
  margin: 10px 10px 10px 5px;
  color: var(--color-secondary);
}
.button-5 {
  top: 6%;
  align-items: center;
  background-clip: padding-box;
  background-color: var(--color-background);
  border: 1px solid transparent;
  border-radius: 5px;
  box-shadow: rgba(0, 0, 0, 0.02) 0 1px 3px 0;
  color: var(--color-secondary);
  border: 1px solid var(--color-secondary);
  cursor: pointer;
  display: inline-flex;
  font-size: 1rem;
  font-weight: 600;
  justify-content: center;
  line-height: 1.25;
  margin: 0;
  min-height: 3rem;
  padding: calc(.875rem - 1px) calc(1.5rem - 1px);
  position: relative;
  text-decoration: none;
  transition: all 250ms;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  vertical-align: baseline;
  width: auto;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
}
.button-5.proto {
  background-color: var(--color-background);
  color: var(--color-dark);
  border: 2px solid var(--color-dark);
}
.button-5:hover,
.button-5:focus {
  background-color: var(--color-secondary);
  color: var(--color-light);
  box-shadow: rgba(0, 0, 0, 0.8) 0 4px 12px;
}
.button-5.proto:hover,
.button-5.proto:focus {
  background-color: var(--color-secondary);
  color: var(--color-dark);
  border: 2px solid var(--color-secondary);
  box-shadow: rgba(0, 0, 0, 0.8) 0 4px 12px;
}
.button-5:hover {
  transform: translateY(-1px);
}
.button-5:active {
  background-color: green;
  box-shadow: rgba(0, 0, 0, .06) 0 2px 4px;
  transform: translateY(0);
}
/* QR */
.qr-container {
    position: absolute;
    bottom: 210px; 
    left: 500px; 
}
.qr-code {
    width: 5rem; 
    height: 5rem;
}
.section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background-color: var(--color-background);
}
.section .content, .section .image, .content-form {
    flex: 1;
    min-width: 48%;
    margin: 10px 0;
}
.content, .image {
    opacity: 0;
    transition: all 1s ease; 
}
.content {
    transform: translateX(-100px);
    padding: 20px;
}
.content.animcontent {
  width: 1200px;
}
.image {
    transform: translateX(100px);
    display: inline-block; /* Ensure the image is inline-block for proper scaling */
  transition: transform 0.3s ease; /* Smooth transition for the scaling effect */
}
.image {
  width: 1200px;
}
.image:hover {
    transform: scale(1.1); 
  }
.section img {
    max-width: 100%;
}
.background-video {
  opacity: 1;
  filter: none;
  mix-blend-mode: normal;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; 
  z-index: -1;   
}
/* Animations */
.animate-content {
    opacity: 1;
    transform: translateX(0);
}
.animate-image {
    opacity: 1;
    transform: translateX(0);
}
.highlight {
  color: var(--color-primary);
}
.section h2 {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 900;
    font-style: normal;
    font-size: 2rem;
    margin: 0;
    color: var(--color-secondary);
}
.tags .tag,
.tags .darkmode-tag{
    display: inline-block;
    padding: 5px 10px;
    border-radius: 5px;
    background-color: var(--color-secondary);
    color: var(--color-background);
    margin: 10px 5px;
    font-size: 14px;
    font-weight: 700;
}
.tags .darkmode-tag {
    background-color: var(--color-dark);
    color: var(--color-background);
}
.text {
    line-height: 1.8em;
    margin: 20px 0;
    font-family: "Raleway", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    color: var(--color-dark);
}
.text h3 {
    color: var(--color-primary);
    font-size: 2rem;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 900;
    font-style: normal;
}
.footer {
    background-color: var(--color-background);
    text-align: center;
    margin-top: 2rem;
}
.footer h2 {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
  font-size: 2rem;
  margin: 0;
 
}
.footer p {
    margin: 20px 0;
    color: var(--color-dark);
    font-size: 1.2rem;
}
.year {
  color: var(--color-secondary);
  font-size: 1rem;
}
/* FORM */
#contact-form {
    display: flex;
    min-height: 40vh;
    margin-top: 2rem;
  }
.contact-container {
    flex: 0 1 700px;
    margin: auto;
    padding: 10px;
  }
  .screen {
    display: inline-block; /* Ensure the image is inline-block for proper scaling */
    transition: transform 0.3s ease; /* Smooth transition for the scaling effect */
    position: relative;
    background: var(--color-light);
    border-radius: 16px;
    /* border: 4px solid var(--color-secondary); */
    padding: 20px; /* Add some padding so the shadow isn't clipped */
    box-shadow: 0 8px 16px rgba(255, 96, 0, 0.6), /* Regular shadow */
                0 6px 20px rgba(69, 69, 69, 0.4); /* Slightly larger, softer shadow */
  }
  .screen:hover {
    transform: scale(1.1); /* Scale the image to 110% on hover */
  }
  .screen:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 20px;
    right: 20px;
    bottom: 0;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(255, 96, 0, 0.);
    z-index: -1;
  }
  .screen-body {
    display: flex;
  }
  .screen-body-item {
    flex: 1;
    padding: 50px;
  }
  .screen-body-item.left {
    display: flex;
    flex-direction: column;
  }
  .app-title {
    display: flex;
    flex-direction: column;
    position: relative;
    color: var(--color-secondary);
    font-size: 26px;
  }
  .app-title:after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 40px;
    height: 4px;
    background: var(--color-dark);
  }
 
  .app-form-group {
    margin-bottom: 15px;
  }
  .app-form-group.message {
    margin-top: 40px;
  }
  .app-form-group.buttons {
    margin-bottom: 0;
    text-align: right;
  }
  .app-form-control {
    width: 100%;
    padding: 10px 0;
    background: none;
    border: none;
    border-bottom: 1px solid var(--color-secondary);
    color: var(--color-dark);
    font-size: 14px;
    text-transform: uppercase;
    outline: none;
    transition: border-color .2s;
  }
  .app-form-control::placeholder {
    color: var(--color-secondary);
  }
  .app-form-control:focus {
    border-bottom-color: var(--color-dark);
  }
  .app-form-button {
    background: none;
    border: none;
    color: var(--color-secondary);
    font-size: 14px;
    cursor: pointer;
    outline: none;
  }
  .app-form-button:hover {
    color: var(--color-dark);
  }
  .cancel {
    color: var(--color-primary);
  }
  /* COOKIE */
.cookie-popup {
  position: fixed;
  top: 85%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50%;
  background-color: var(--color-secondary);
  color: var(--color-background);
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  text-align: center;
  display: none;
  opacity: 0;
  transition: opacity 0.5s, transform 0.5s;
  z-index: 1000;
}
.cookie-popup.show {
  display: block;
  opacity: 1;
  transform: translate(-50%, -50%) translateY(0);
}
.cookie-popup h2 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  color: var(--color-dark);
}
.cookie-popup p {
  margin-bottom: 20px;
}
.cookie-popup button {
  padding: 10px 20px;
  margin: 0 10px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
.accept-button {
  background-color: var(--color-primary);
  color: var(--color-dark);
}
.decline-button {
  background-color: var(--color-dark);
  color: var(--color-secondary);
}

  @media (max-width: 1025px) { 
    #main-header nav {
      display: none;
    }
    .menu-btn {
      display: flex;
    }
    .bottom-section .vertical-text {
      display: none;
    }
    .content.animcontent {
      width: 600px;
    }
    .qr-code {
        width: 75px;
        height: 75px;
    }
        .container {
        max-width: 100vw;
        margin: 0 auto;
        padding: 0 2px; 
    }
    .header h1 {
        font-size: 2rem;
    }
    .lead {
        font-size: 16px;
    }
    .button {
        font-size: 16px;
        padding: 10px 20px;
    }
    .section {
        margin: 10px 0px 10px 0;
    }
    .section .content, .section .image, .content-form {
        flex: 1 0 100%;
        min-width: 100%;   
    }
    .section img {
        padding: 50px 0;
    }
    .background-video {
      position: fixed;
      width: 90vw; 
      height: 36vh; 
      object-fit: contain; 
      z-index: -1;
    }
    .mobile-whitespace {
      height: 30vh; 
    }
    
}
@media (max-width: 769px) {
  .logo img {
    width: 60px;
    margin-left: 0.6rem;
  }
  .desktop-image {
    display: none;
}
.mobile-image {
    display: block;
}
.main-titles {
  font-size: 2.6rem;
}
.card {
  flex: 1 1 100%; 
  order: 1; 
}
.card.card-2 {
  order: 2; 
}

.card.card-3 {
  order: 3; 
}
.process-anim {

  padding: 0;
}

.flexbox-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.flexbox {
  width: 100%;
  margin-bottom: 20px;
}
.flexbox img {
  width: 80px;
  margin-bottom: 15px;
}
.flexbox h3 {
  font-size: 1.4rem;
  margin: 10px 1rem;
  color: var(--color-dark);
}
.flexbox ul {
  padding: 1rem 4rem 1rem 10rem;
  text-align: left;
}
.flexbox ul li {
  margin: 0.6rem 2.5rem;
  color: var(--color-secondary);
} 
    .qr-container {
      display: none;
    }
    .contact-container {
            flex: 0 1 700px;
            margin: 10px 10px 50px 0;
            padding: 10px;
      }
    .screen-body {
        flex-direction: column;
        padding: 20px;
      }
    .screen-body-item {
        padding: 0;
      }
      .screen-body-item.left {
        margin-bottom: 30px;
      }
      .app-title {
        flex-direction: row;
      }
      .app-title span {
        margin-right: 12px;
      }
      .app-title:after {
        display: none;
      }
}
@media (max-width: 480px) {
  .flexbox h3 {
    font-size: 1.4rem;
    margin: 1rem 2rem;
    color: var(--color-dark);
  }
  .flexbox ul {
    padding: 1rem 0.2rem 1rem 2rem;
    text-align: center;
  }
  .flexbox ul li {
    margin: 0.6rem 0.2rem;
    text-align: left;
    color: var(--color-secondary);
  }
  .cookie-popup {
    width: 80%;
  }
}
@media (max-width: 400px) {

  #main-header {
    padding-bottom: 1rem;
  }
  .top-section {
    height: 34vh; 
  }
  .menu-btn {
    width: 2rem;
    height: 2rem;
   
  }
} 
  
      




