@font-face {
  font-family: 'Inter';
  src: url('/assets/fonts/Inter-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('/assets/fonts/Inter-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
  }
  
/* Logo styling */

 /* Updated container with gradient background (light touch) */
  a {
    text-decoration: none;
    color:  #9a7100;
    font-weight: 500;
    text-decoration: underline;
  }

 .container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
  }
  
  /* Header */
  header {
    background-color: #fff;
    padding: 20px 0;
  }

  header {
    box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  }
  
  header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  header h1 {
    font-size: 24px;
    color: #e4a701;
  }
  
  /* Hero Section */
  .hero {
    background-color: #e4a701;
    background-image: url("/assets/images/beach cropped.png");
    min-height: 240px;
    display: flex;
    align-items: center;
    color: #000;
    text-align: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
  }

  .hero .container {
    width: 100%;
    padding: 24px 0;
  }
  
  .hero h2 {
    font-size: 36px;
    margin-bottom: 20px;
    backdrop-filter: blur(2px);
  }
  
  .hero p {
    font-size: 18px;
    margin-bottom: 20px;
    backdrop-filter: blur(4px);
  }
  
  .btn {
    background-color: #fff;
    color: #e4a701;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: background-color 0.3s ease;
  }
  
  .btn:hover {
    background-color: #e6e6e6;
  }
  
  .viz {
    border: 1px solid black;
  }
  
  /* Features Section */
  .features {
    padding: 30px 0;
    background-color: #f1f1f1;
  }
  
  .features .container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
  }
  
  .feature {
    flex: 1 1 30%;
    background-color: #fff;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.2), 0 4px 10px 0 rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
  }

  @media (max-width: 768px) {
    .feature {
      flex: 1 1 100%;
    }
  }
  
  .feature h3 {
    margin-bottom: 10px;
    color: #e4a701;
  }
  
  .feature ul {
    padding: 10px;    
  }

  /* Testimonial Section */
  .testimonial {
    text-align: center;
  }
  
  .testimonial blockquote {
    font-style: italic;
    color: #555;
    margin-bottom: 20px;
    margin-top: 20px;
  }
  
  .testimonial cite {
    font-weight: 600;
    color: #333;
  }
  
  .video-container {
    position: relative;
    overflow: hidden;
    padding-top: 45%; /* 16:9 aspect ratio (9/16 = 0.5625) */
    margin-top: 40px;
  }

  .responsive-iframe {
    position: absolute;
    top: 0;
    left: 10%;
    bottom: 0;
    right: 0;
    width: 80%; /* if you want to change the height/width of this class, be sure to also change the padding-top in .video-container */
    height: 100%;
    border: 0;
  }

  /* Footer */
  footer {
    background-color: #fff;
    padding: 28px 0 16px;
    border-top: 1px solid #eaeaea;
    font-size: 14px;
    color: #777;
  }

  .footer-top {
    margin-bottom: 10px;
    text-align: center;
  }

  .footer-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    border-top: 1px solid #eaeaea;
    padding-top: 14px;
    text-align: left;
  }

  .footer-col {
    flex: 1;
    min-width: 200px;
  }

  .footer-badges {
    flex: 0 0 auto;
  }

  .footer-slogan {
    font-weight: 600;
    color: #444;
    font-size: 1em;
    margin-bottom: 0;
  }

  .footer-avg {
    font-size: 0.82em;
    color: #aaa;
    margin-top: 10px;
  }

  .footer-badges-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    justify-content: flex-end;
  }

  @media (max-width: 700px) {
    .footer-grid {
      flex-direction: column;
    }
    .footer-col {
      min-width: 100%;
    }
    .footer-badges-row {
      justify-content: flex-start;
    }
  }
  
  .team-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }
  
  .team-member {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.2), 0 4px 10px 0 rgba(0, 0, 0, 0.2);
    padding: 20px;
    width: 300px;
    transition: transform 0.3s ease;
  }
  
  .team-member:hover {
    transform: translateY(-10px);
  }
  
  .team-member img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 15px;
  }
  
  .team-member h3 {
    margin-bottom: 10px;
    color: #e4a701;
  }

  .contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding: 60px 20px;
  }
  .contact-details, .map-section {
    flex: 1;
    min-width: 100%;
    display: flex;
    flex-direction: column;
  }
  .contact-details h2, .map-section h2 {
    color: #e4a701;
  }
  .contact-details p {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
  }
  .map-section iframe {
    width: 100%;
    height: auto;
    border: none;
    border-radius: 12px;
  }
  #map {
    width: 100%;
    flex: 1;
    min-height: 300px;
    border-radius: 4px;
  }
  .vcard-download {
    margin-top: 20px;
  }
  .vcard-download a {
    display: inline-block;
    background-color: #e4a701;
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
  }

  .tech-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .tech-item {
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 10px;
    padding: 16px 18px;
  }

  .tech-item dt {
    font-weight: 600;
    color: #e4a701;
    font-size: 1em;
    margin-bottom: 8px;
  }

  .tech-item dd {
    margin: 0;
    color: #555;
    font-size: 0.92em;
    line-height: 1.6;
  }

  .tech-item--todo dt {
    color: #c07000;
  }

  .tech-item--todo dd {
    color: #c07000;
  }

  .tech-item dd ul {
    margin: 0;
    padding-left: 16px;
  }

  .tech-item dd ul li {
    margin-bottom: 4px;
  }

  @media (max-width: 700px) {
    .tech-list {
      grid-template-columns: 1fr;
    }
  }

  .case-section {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding: 10px 0;
    border-bottom: 2px solid #eee;
  }
  .case-logo {
    flex: 1;
    min-width: 200px;
    max-width: 25%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .case-logo img {
    margin-left: 0;
    max-height: 125px;
    max-width: 200px;
  }

  .case-content {
    flex: 2;
    min-width: 300px;
  }
  .case-content h2 {
    color: #e4a701;
  }

/* Navigation */

header {
  position: relative;
}

.logo-link {
  text-decoration: none;
}

.nav-hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  color: #444;
  cursor: pointer;
  padding: 8px;
  line-height: 1;
}

#site-nav {
  display: flex;
  align-items: center;
}

#site-nav .nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

#site-nav .nav-links a {
  display: block;
  padding: 8px 14px;
  font-size: 15px;
  font-weight: 400;
  color: #444;
  text-decoration: none;
  border-radius: 4px;
  position: relative;
  transition: color 0.15s;
}

#site-nav .nav-links a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: #e4a701;
  transform: scaleX(0);
  transition: transform 0.15s;
}

#site-nav .nav-links a:hover {
  color: #e4a701;
  text-decoration: none;
}

#site-nav .nav-links a:hover::after {
  transform: scaleX(1);
}

#site-nav .nav-links a.nav-active {
  color: #e4a701;
  font-weight: 600;
  text-decoration: none;
}

#site-nav .nav-links a.nav-active::after {
  transform: scaleX(1);
}

@media screen and (max-width: 700px) {
  .nav-hamburger {
    display: block;
  }

  #site-nav .nav-links {
    display: none;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid #eaeaea;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    z-index: 100;
  }

  #site-nav.open .nav-links {
    display: flex;
  }

  #site-nav .nav-links li {
    border-bottom: 1px solid #f0f0f0;
  }

  #site-nav .nav-links li:last-child {
    border-bottom: none;
  }

  #site-nav .nav-links a {
    padding: 13px 20px;
    border-radius: 0;
  }

  #site-nav .nav-links a::after {
    display: none;
  }

  #site-nav .nav-links a.nav-active {
    border-left: 3px solid #e4a701;
    padding-left: 17px;
  }
}
