@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@font-face {
  font-family: "Bogue";
  src: url("fonts/Bogue Bold.ttf");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Bogue-Medium";
  src: url("fonts/Bogue Medium.ttf");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Bogue-Regular";
  src: url("fonts/Bogue Regular.ttf");
  font-weight: 400;
  font-style: italic;
}
:root {
  /* Colors */
  --brand-primary: #000;
  --brand-secondary: #2a5c8b;
  --brand-accent: #e74c3c;
  --text-dark: #333;
  --text-light: #f8f9fa;
  --bg-light: #f8f9fa;

  /* Fonts */
  --font-primary: "Poppins", sans-serif;

  /* Spacing */
  --gutter: 1rem;
  --section-padding: 5rem 0;

  /* Transitions */
  --transition-base: all 0.3s ease;
}

body {
  font-family: var(--font-primary);
  color: var(--text-dark);
  line-height: 1.6;
  height: 100%;
  overflow-x: hidden;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  /* padding: var(--section-padding); */
  /*background-color: var(--bg-light);*/
  background: linear-gradient(60deg, rgba(89, 193, 164, 0.35) 0%, rgba(255, 255, 255, 0.05) 80%);
}

.text-blue{
    color: #16688a !important;
}

.hero-section h1 {
  font-size: 4rem;
  font-family: "Bogue-Medium", sans-serif;
  font-weight: 700;
  margin-bottom: var(--gutter);
  color: var(--brand-primary);
}

.hero-section .lead {
  font-size: 1.7rem;
  font-weight: 400;
  margin-bottom: 3rem;
  color: var(--brand-primary);
}

.scroll-prompt {
  font-size: 1.7rem;
  margin-top: 2rem;
  color: var(--brand-primary);
  opacity: 0.8;
}

/* Airplane SVG Styling */
.airplane-svg-container {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

#airplane-svg {
  position: absolute;
  left: 0;
  top: 40px;
  width: 80vw;
  height: auto;
  will-change: transform;
  fill: var(--brand-primary);
  transform: translateX(-80vw); /* initial position off-screen */
  transition: transform 0.1s linear;
}
.w-60 {
  width: 60%;
}

/* Boardroom Section */
.boardroom-section {
  padding: var(--section-padding);
  background-color: white;
}

.scrolldown {
  position: relative;
  padding-top: 100px; /* your existing spacing */
}

.scrolldown a img {
  transform: translateX(-50%);
  /* 2-second loop, infinite */
  animation: bounce 2s infinite;
}

/* bounce keyframes inspired by animate.css */
@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(20px);
  }
  60% {
    transform: translateX(-50%) translateY(10px);
  }
}

.section-title {
  font-size: 3.8rem;
  font-family: "Bogue-Medium", sans-serif;
  font-weight: 700;
  color: var(--brand-primary);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.8rem;
  color: var(--brand-primary);
  opacity: 0.8;
  margin-bottom: 3rem;
}

.director-avatar.chairman {
  width: 50%;
  object-fit: cover;
  margin: 0 auto 1.5rem;
}

.director-avatar.ceo {
  width: 60%;
  object-fit: cover;
  margin: 0 auto 1.5rem;
}

.director-avatar {
  width: 100%;
  object-fit: cover;
  margin: 0 auto 1.5rem;
}

.director-name {
  font-size: 1.8rem;
  font-family: "Bogue-Medium", sans-serif;
  letter-spacing: 0;
  font-weight: 500;
  margin-bottom: 0.3rem;
  color: var(--brand-primary);
}

.director-title {
  font-size: 1.3rem;
  font-family: "Poppins", sans-serif;
  color: var(--brand-primary);
  opacity: 0.7;
}

.staff-name {
  font-size: 1.3rem;
  font-family: "Bogue-Medium", sans-serif;
  letter-spacing: 0;
  font-weight: 500;
  margin-bottom: 0.3rem;
  color: var(--brand-primary);
}

.staff-title {
  font-size: 0.8rem;
  font-family: "Poppins", sans-serif;
  color: var(--brand-primary);
  opacity: 0.7;
}

footer {
  background: #16688a;
  text-align: center;
  font-size: 1.3rem;
  font-family: "Poppins", sans-serif;
  color: #fff;
  padding: 10px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  #airplane-svg {
    position: absolute;
    right: 28%;
    width: 100vw;
  }

  .hero-section h1 {
    font-size: 2.5rem;
  }

  .hero-section .lead {
    font-size: 0.9rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .scroll-prompt {
    font-size: 0.9rem;
  }

  .director-avatar {
    width: 100%;
  }

  footer {
    font-size: 0.8rem;
  }
}

@media (max-width: 576px) {
  #airplane-svg {
    position: absolute;
    right: 28%;
    width: 100vw;
  }

  .mt-sm-0 {
    margin-top: 0 !important;
  }

  .mb-sm-0 {
    margin-bottom: 0 !important;
  }

  .scrolldown {
    width: 100%;
    padding-top: 100px;
  }

  .hero-section h1 {
    font-size: 2rem;
    margin-top: 50px;
  }

  .section-subtitle {
    font-size: 1.2rem;
  }

  .director-name {
    font-size: 1rem;
  }

  .staff-name {
    font-size: 0.8rem;
  }

  .staff-title {
    font-size: 0.65rem;
    margin-bottom: 0 !important;
  }
  
  .director-title {
    font-size: 0.65rem;
    margin-bottom: 0 !important;
  }
}
