@charset "utf-8";

/* ========== TYPOGRAPHY ========== */
body {
  background-color: #ffffff;
  font-family: "elza", sans-serif;
  font-weight: 400;
  font-style: normal;
}

h1, h2, h3, h4 {
  font-family: "futura-pt-bold", sans-serif;
  font-weight: 700;
  font-style: normal;
}

strong {
  font-family: "elza", sans-serif;
  font-weight: 900;
  font-style: normal;
}

/* ========== NAVBAR ========== */
.custom-navbar {
  background-color: #025a74;
}

.navbar .navbar-nav .nav-link {
  display: flex;
  align-items: flex-end;
  height: 100%;
  padding: 1rem 2rem;
  font-size: 1rem;
  gap: 2rem;
}

.navbar .navbar-nav .nav-item {
  margin-right: 2rem;
}

.custom-navbar .nav-link,
.custom-navbar .navbar-brand,
.custom-navbar span,
.custom-navbar a {
  color: white !important;
}

.custom-navbar .nav-link:hover {
  color: #9da5ad !important;
  text-decoration: underline;
}

/* ========== FOOTER ========== */
.custom-footer {
  background-color: #025a74;
  color: white;
  padding: 2rem 1rem;
}

.custom-footer .footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-logo img.f-logo {
  display: block;
  max-width: 100%;
  height: auto;
}

.footer-sitemap {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
}

.footer-sitemap li {
  margin: 0;
}

.footer-sitemap a {
  color: white !important;
  text-decoration: none;
  font-weight: 400;
  font-size: 0.875rem;
  padding: 0.25rem 0;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-sitemap a:hover {
  color: #9da5ad !important;
  text-decoration: underline;
}

.custom-footer .designer-credit-container {
  margin-top: 1rem;
  text-align: center;
}

.custom-footer .designer-credit {
  color: white;
  display: inline-block;
  transition: color 0.3s ease;
}

.custom-footer .designer-credit:hover {
  color: #9da5ad;
}

/* ========== TOP BAR ========== */
.top-bar {
  background-color: #024f66;
  color: white;
  font-size: 1rem;
}

.top-bar a {
  color: white;
  text-decoration: none;
}

.top-bar a:hover {
  color: #9da5ad;
}

.custom-topbar {
  padding: 0.6rem 0;
  font-size: 1rem;
}

.custom-topbar .top-social i {
  font-size: 1.4rem;
}

/* ========== LAYOUT HELPERS ========== */
.col-md-6.left-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-right: 15px;
}

.col-md-6.left-content > div {
  display: block;
}

.col-md-6.right-image img {
  height: auto !important;
  width: auto !important;
  max-width: 100%;
  object-fit: contain;
  border-radius: 8px;
  visibility: hidden;
  transition: visibility 0.3s ease;
}

.row.align-items-start {
  align-items: flex-start;
}

.row.align-items-center .col-md-7 p {
  text-align: center;
}

/* ========== TEXT ALIGNMENT ========== */
.col-md-4 .p-3.h-100 h3,
.col-md-4.mb-4.mb-md-0 .p-3.h-100 h3,
.col-md-6.left-content .p-3 h3 {
  text-align: center;
}

.col-md-4 .p-3.h-100 p,
.col-md-4.mb-4.mb-md-0 .p-3.h-100 p,
.col-md-6.left-content .p-3 p {
  text-align: center;
}

.container .container.my-5 h1,
.container.my-5 p {
  text-align: center;
  padding-bottom: 20px;
}

.container.my-5 .row.g-5 #contact {
  text-align: left;
  padding-bottom: 0px;
}

.col .p-4.text-center.text-white p {
  padding-bottom: 0;
  margin-bottom: 0;
}

.row.mt-3 .col.text-center small {
  font-size: x-small;
  font-style: italic;
}

.service-item .service-text.dark h3,
.service-item .service-text h3 {
  text-align: center;
}

.col-8 .card-body .card-title {
  text-align: center;
}

/* ========== FOOTER SPECIFIC PADDING & LOGO ========== */
.col-auto .footer-logo .f-logo {
  padding-left: 0;
}

.footer-sitemap li a {
  padding-right: 0;
}

/* ========== RESPONSIVE STYLES ========== */
@media (max-width: 767.98px) {
  .row.mb-4 > .col-md-4.text-center img,
  .col-md-4.text-center img {
    margin-bottom: 1.5rem;
    width: 100% !important;
    height: auto !important;
    display: block;
  }

  .row.mb-4 > .col-md-4:not(.text-center) {
    margin-top: 1rem;
  }

  .row.mb-4 > .col-md-4:first-child > div {
    margin-bottom: 1.5rem;
  }

  .p-3 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .custom-footer .footer-row {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .footer-logo img.f-logo {
    margin-bottom: 0.5rem;
  }

  .footer-sitemap {
    margin-top: 0.5rem;
  }
}


/* ========== BUTTONS ========== */
button,
.btn,
input[type="submit"],
input[type="button"] {
  transition: all 0.3s ease;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.15);
  border-radius: 4px;
}

button:hover,
.btn:hover,
input[type="submit"]:hover,
input[type="button"]:hover {
  transform: scale(1.15);
  box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.25);
}

/* Custom button style */
.btn-custom {
  background-color: #ffffff;
  color: #000;
  border: 1px solid #5f7185;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.btn-custom:hover {
  background-color: #5f7185;
  color: #ffffff;
  border-color: #5f7185;
  box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.3);
}

/* ========== ICONS ========== */
i,
svg {
  transition: all 0.3s ease;
  display: inline-block;
}

i:hover,
svg:hover {
  transform: scale(1.25);
}

/* Social icons */
.social-icon,
.social-icons a i,
.top-social a i {
  transition: all 0.3s ease;
  color: #ffffff;
}

.social-icon:hover,
.social-icons a:hover i,
.top-social a:hover i {
  color: #5f7185 !important;
  transform: scale(1.25);
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
}

/* General link hover effects */
.top-bar a:hover,
.top-social a:hover,
.social-icons a:hover,
.social-icon:hover,
.p-4 a:hover {
  color: #5f7185 !important;
  text-decoration: none;
  opacity: 1;
  transform: scale(1.25);
}

.top-bar a,
.top-social a,
.social-icons a,
.social-icon,
.p-4 a {
  transition: color 0.3s ease, transform 0.3s ease;
}

