:root {
  --primary: #ff9800;
  --dark: #1a1a1a;
  --light: #fff;
  --gray: #666;
  --bg-light: #fafafa;
  --max-width: 1100px;
  --transition: 0.3s ease;
}

/* --- HERO SECTION --- */
.about-hero {
  position: relative;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: var(--light);
  margin-top: -26px;
}


.about-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; /* matches the hero section height */
    margin: 0;
    background: url('https://cdn.pixabay.com/photo/2020/06/09/15/32/camp-5278843_640.png') center/cover no-repeat;
    filter: brightness(0.4);
    z-index: 1;
}

.about-hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 0 1rem;
}

.about-hero h4 {
  font-size: 3.8rem;
  font-weight: 100px;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  animation: fadeIn 2s ease-in-out;
}

.about-hero-mission {
  font-size: 30px;
  animation: fadeIn 2.5s ease-in-out;
}

@keyframes fadeIn {
  from {opacity: 0; transform: translateY(20px);}
  to {opacity: 1; transform: translateY(0);}
}

/* --- ABOUT DESCRIPTION CARD --- */
.about-desc-section {
  max-width: var(--max-width);
  margin: 4rem auto;
  padding: 2rem;
  background: var(--light);
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: left;
}

.about-desc-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1rem;
}

.about-desc-text {
  font-size: 1.1rem;
  color: var(--gray);
  line-height: 1.7;
}

.about-desc-text p {
  margin-bottom: 1rem;
}

#about-desc-par {
  font-size: 1.1rem;
  color: var(--gray);
}

/* --- BUTTONS --- */
.about-buttons {
  text-align: center;
  margin: 2rem 0;
}

.btn {
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  border: 2px solid var(--primary);
  cursor: pointer;
  font-size: 1rem;
  font-family: 'PT Sans', sans-serif;
  transition: var(--transition);
  margin: 0.5rem;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, #FFC107 0%, #FF9800 50%, #F57C00 100%);
  color: var(--light);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #FFB300 0%, #FB8C00 50%, #E65100 100%);
}

.btn-outline {
  background: transparent;
  color: linear-gradient(135deg, #FFC107 0%, #FF9800 50%, #F57C00 100%);
}

.btn-outline:hover {
  background: var(--primary);
  color: linear-gradient(135deg, #FFB300 0%, #FB8C00 50%, #E65100 100%);
}

/* --- MISSION & VISION CARDS --- */
.about-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  max-width: var(--max-width);
  margin: 3rem auto;
  padding: 0 1rem;
}

.about-card {
  background: var(--light);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  padding: 1.5rem;
  flex: 1 1 300px;
  text-align: left;
}

.about-card-title {
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}
.about-card-text {
  color: var(--gray);
  line-height: 1.6;
  font-size: 1.1rem;
}

/* --- IMAGE SECTION --- */
.about-quote-section {
  margin: 3rem 0;
  text-align: center;
}

.about-quote-img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

/* --- MORE TEXT SECTION --- */
.more-text {
  max-width: var(--max-width);
  margin: 2rem auto;
  padding: 0 1rem;
}

.more-text h4 {
  color: var(--primary);
}
.more-text p {
  color: var(--gray);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

/* --- TEAM SECTION --- */
.team-section {
  background: var(--light);
  padding: 3rem 1rem;
  text-align: center;
  border-radius: 20px;
}

.team-title {
  color: var(--primary);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-align: center;
}

.team-subtitle {
  color: var(--gray);
  margin-bottom: 2rem;
  text-align: center;
}

.team-card {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: left;
}

.team-img-wrap {
  flex: 1 1 300px;
}

.team-img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.team-info {
  flex: 1 1 300px;
}

.team-title-role {
  color: var(--primary);
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 0.5rem;
}

.team-desc {
  margin-bottom: 1rem;
  color: var(--gray);
}

.team-social-centered {
  text-align: center; /* center the icons */
  display: flex;
  justify-content: center;
  gap: 10px; /* spacing between icons */
}

.team-social-icon {
  display: inline-flex;           /* inline and flexible for centering icon */
  align-items: center;            /* vertically center icon */
  justify-content: center;        /* horizontally center icon */
  width: 40px;                    /* circle size */
  height: 40px;                   /* circle size */
  border-radius: 50%;             /* makes it round */
  color: #fff;                     /* icon color white */
  text-decoration: none;          /* remove underline */
  font-size: 18px;                /* icon size */
  transition: transform 0.3s;     /* optional hover effect */
}

.team-social-icon:hover {
  transform: scale(1.1);          /* slight grow on hover */
}

/* Specific background colors */
#faceb { background: linear-gradient(45deg, #1877F2, #3b5998);}     /* Facebook blue gradient */
#in { background: linear-gradient(45deg, #0A66C2, #004182);}      /* LinkedIn blue gradient */
#twit { background-color: #000000; }    /*Twitter black gradient*/
#inst {background: radial-gradient(circle at 30% 107%,#fdf497 0%,#fdf497 5%,#fd5949 45%,#d6249f 60%,#285AEB 90%); font-size: 23px;}   /* Instagram gradient fallback with solid pink */

/* --- LOCATION SECTION --- */
.location-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
  background: #f8f9fb; /* subtle background for contrast */
}

.location-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px #00000014;
  padding: 40px 30px;
  max-width: 400px;
  width: 100%;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.location-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.location-title {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--primary);
}

.location-desc {
  font-size: 1.1rem;
  color: var(--gray);
}

.location-icon {
  font-size: 24px;
  background: linear-gradient(135deg, #ff4b2b, #e63946, #b5171b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  margin-right:0px;
}


/* ✅ Responsive behavior */
@media (max-width: 600px) {
  .location-card {
    padding: 30px 20px;
  }

  .location-title {
    font-size: 1.5rem;
  }

  .location-desc {
    font-size: 1rem;
  }
}


/* --- RESPONSIVE DESIGN --- */
@media (max-width: 768px) {
  .about-hero {
    height: 60vh;
    margin-top: -16px
    
  }

  .about-hero h4 {
    font-size: 2.8rem;
  }

  .about-hero-mission {
    font-size: 24px;
  }

  .team-card {
    flex-direction: column;
    text-align: center;
  }

  .team-social-centered {
    justify-content: center;
  }

  .about-desc-section {
    padding: 1.5rem;
    margin: 2rem 1rem;
  }
  .team-section {
    padding: 2rem 1rem;
    height: auto;
  }
  .team-img-wrap, .team-info {
    flex: 1 1 100%;
  }
  .location-section {
    padding: 40px 10px; 
  }
  .btn {
    padding: 0.5rem 1rem;
  }
}
