/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Poppins', 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;
    border-bottom: 2px solid #eaeaea;
  }
  
  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");
    padding: 25px 0;
    color: #000;
    text-align: center;
    /* Control the image behavior */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
  }
  
  .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);
  }
  
  .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: 20px 0;
    text-align: center;
    border-top: 1px solid #eaeaea;
    font-size: 14px;
    color: #777;
  }
  
  .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%;
  }
  .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;
  }
  .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;
  }

  .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;
  }

/* adaptive navigation */

  topnav {
  overflow: hidden;
  background-color: #333;
}

.topnav a {
  float: left;
  display: block;
  color: #9a7100;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

.topnav a:hover {
  background-color: #ddd;
  color: black;
}

.topnav a.active {
  background-color: #e4a701;
  color: white;
}

.topnav .icon {
  display: none;
}

@media screen and (max-width: 700px) {
 /* .topnav a:not(:first-child) {display: none;} */
  .topnav a { display: none; }
  .topnav a.icon {
    float: right;
    display: block;
  }
}

@media screen and (max-width: 700px) {
  .topnav.responsive {position: relative;}
  
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
  .topnav.responsive {
    background-color: white;
    border: 2px solid black;
  }
}
