@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&family=Quicksand:wght@300..700&display=swap");
:root {
  --primary-orange: #f28c28;
  /* Adjust to match the specific orange in image */
  --primary-red: #d32f2f;
  --dark-bg: #000000;
  --text-gray: #b0b0b0;
}

body {
  font-family: "Inter", sans-serif;
  background-color: var(--dark-bg);
  color: white;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
.navbar-brand {
  font-family: "Anton", sans-serif;
  /* Using Anton for the heavy block headers */
  text-transform: uppercase;
  letter-spacing: 1px;
}
.text-md {
  font-size: 16px;
}
.text-orange {
  color: var(--primary-orange);
}
.bg-orange {
  background-color: var(--primary-orange);
}
.btn-warning {
  background-color: var(--primary-orange);
  border: none;
  color: black;
  font-family: "Inter", sans-serif;
  font-weight: 700;
}

.btn-warning:hover {
  background-color: #d6761b;
  color: black;
}

/* Navbar overrides */
.navbar {
  background-color: rgba(0, 0, 0, 0.9) !important;
  backdrop-filter: blur(10px);
}

.nav-link {
  font-weight: 400;
  letter-spacing: 0.5px;
}

/* Hero Section */
.hero-section {
  min-height: 80vh;
  padding-top: 100px;
  background: radial-gradient(circle at 30% 50%, #1a1a1a 0%, #000000 70%);
  overflow: hidden;
  padding-bottom: 5rem;
}

.hero-image-container::before {
  content: "";
  position: absolute;
  width: 60%;
  height: 60%;
  background: radial-gradient(
    circle,
    rgba(242, 140, 40, 0.2) 0%,
    rgba(0, 0, 0, 0) 70%
  );
  top: 20%;
  left: 20%;
  z-index: -1;
}

.hero-image-container img {
  max-width: 100%;
  margin: 0 0 0 auto;
  display: block;
}
.hero-section .carousel-indicators {
  opacity: 0;
}

/* Intro Section */
.intro-section p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #cccccc;
}

/* About Section */
.about-section h2 {
  letter-spacing: 2px;
}

/* Vision Mission Section */
.vision-mission-section img {
  border-radius: 2px;
}

.badge.bg-warning {
  font-size: 0.8rem;
  letter-spacing: 1px;
}

/* Team Section */
.team-member img {
  border-color: #666 !important;
  transition: transform 0.3s ease;
}

.team-member img:hover {
  transform: scale(1.05);
}

/* Topics Section */
.col-md-2dot4 {
  flex: 0 0 auto;
  width: 20%;
}

@media (max-width: 768px) {
  .col-md-2dot4 {
    width: 50%;
  }
}
@media (min-width: 768px) {
  .carousel-control-prev {
    left: -56px;
    justify-content: start;
  }
  .carousel-control-next {
    right: -56px;
    justify-content: end;
  }
  .border-md-right {
    border-right: 1px solid #666;
  }
  .col-md-1_5 {
    flex: 0 0 auto;
    width: 20%;
  }
}
@media (max-width: 767px) {
  .carousel-control-prev,
  .carousel-control-next {
    top: inherit;
    bottom: -65px;
    height: auto;
    max-width: 46px;
    max-height: 46px;
    aspect-ratio: 1/1;
    color: #fff;
    background: #3f2108;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .carousel-control-next {
    right: inherit;
    left: 50%;
    transform: translate(30%, 15px);
  }
  .carousel-control-prev {
    left: 50%;
    transform: translate(-130%, 15px);
  }
  .hero-section {
    padding-bottom: 8rem;
  }
}

/* Footer */
.footer {
  background-color: #0d0d0d !important;
}

.footer span i {
  color: var(--primary-orange);
}

.text-qsand {
  font-family: "Quicksand", sans-serif;
}
.text-oswald {
  font-family: "Oswald", sans-serif;
  font-weight: 600;
}
