/* GENERAL */
body {
  font-family: Arial, sans-serif;
  color: #333;
  line-height: 1.6;
  margin: 0;
}

/* NAVBAR */
.custom-nav {
  background-color: #1F3A5F;
}

.navbar-brand {
  font-weight: bold;
}

.nav-link {
  color: white !important;
}

.nav-link:hover {
  color: #F2C94C !important;
}

/* LOGO */
.logo {
  width: 95px;
  height: auto;
}

/* HERO */
.hero {
  background-color: #1F3A5F;
  color: white;
  padding: 80px 20px;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: bold;
}

/* HEADERS */
.page-header {
  background-color: #f5f5f5;
  padding: 40px 20px;
  border-bottom: 4px solid #F2C94C;
}

.page-header h1 {
  color: #1F3A5F;
}

/* SECTION TITLES */
.section-title {
  color: #1F3A5F;
  margin-bottom: 20px;
}

/* CARDS */
.card-custom {
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: 8px;
  background-color: white;
  margin-bottom: 20px;
}

.card-custom {
  margin-bottom: 20px;
}

.section-title {
  margin-top: 10px;
}

/* BUTTON */
.btn-main {
  background-color: #4A90E2;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  display: inline-block;
}

.btn-main:hover {
  background-color: #1F3A5F;
}

/* FOOTER */
footer {
  background-color: #1F3A5F;
  color: white;
  padding: 20px;
  margin-top: 40px;
}

/* HERO SLIDESHOW */
#heroCarousel {
  position: relative;
}

.hero-img {
  height: 500px;
  object-fit: cover;
}

#heroCarousel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
  z-index: 2;
}

.hero-overlay h1 {
  font-size: 3rem;
  font-weight: bold;
}

.carousel-inner {
  position: relative;
  z-index: 0;
}

@media (max-width: 768px) {
  .hero-img {
    height: 350px;
  }

  .hero-overlay h1 {
    font-size: 2rem;
  }
}

.icon-style {
  font-size: 2.5rem;
  color: #1F3A5F;
  margin-bottom: 10px;
}

.social-icon {
  color: white;
  font-size: 1.8rem;
  margin: 0 10px;
  display: inline-block;
  transition: transform 0.2s, color 0.2s;
}

.social-icon:hover {
  color: #F2C94C;
  transform: scale(1.2);
}

.hero-img {
  height: 500px;
  object-fit: cover;
  filter: blur(3px);
  transform: scale(1.05);
}

/* MOBILE */
@media (max-width: 768px) {
  .hero {
    padding: 60px 15px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .logo {
    width: 40px;
  }
}
