/* =============== GENERAL =============== */

body {
  font-family: "Source Sans Pro", system-ui, -apple-system, "Segoe UI", sans-serif;
  background-color: #ffffff;
  color: #222;
}

.letter-spacing {
  letter-spacing: 0.15em;
}

.sk-max-800 {
  max-width: 800px;
}

/* =============== NAVBAR (LIGHT HEADER) =============== */

.sk-navbar {
  background: #ffffff !important;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.08);
  transition: box-shadow 0.3s ease, padding 0.3s ease, background 0.3s ease;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.navbar.scrolled {
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.16);
}

.sk-logo {
  height: 38px;
}

.sk-navbar .navbar-nav .nav-link {
  color: #111827;
  font-weight: 500;
  padding-left: 0.9rem;
  padding-right: 0.9rem;
}

.sk-navbar .navbar-nav .nav-link:hover {
  color: #2563eb;
}

.sk-navbar .navbar-nav .nav-link.active {
  color: #1d4ed8;
}

/* =============== HERO WITH VIDEO =============== */

.sk-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.sk-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.sk-hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sk-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  /* MUCH lighter overlay so image is closer to original look */
   background: rgba(0, 0, 0, 0); /* completely transparent */
}

/* center hero content + text + button */
.sk-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;   /* horizontally center */
  text-align: center;    /* center text */
}

/* keep content nicely constrained & centered */
.sk-hero-content .row {
  width: 100%;
  display: flex;
  justify-content: center;  /* center the column */
}

.sk-hero-content .col-lg-7 {
  max-width: 800px;
}

/* center the Learn More button under the text */
.sk-hero-content .d-flex {
  justify-content: center;
}

/* =============== QUOTE =============== */

.sk-quote {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* =============== IMAGE SECTION (BRAND STRIP) =============== */

.sk-image-section {
  position: relative;
  min-height: 1000px; /* was 300px → much bigger hero-like appearance */
  background-image: url("../images/about/3.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.sk-image-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2); /* was 0.35 → lighter so image is more visible */
}

/* =============== MAP WRAPPER =============== */

.sk-map-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
  overflow: hidden;
  border-radius: 0.5rem 0.5rem 0 0;
}

.sk-map-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* =============== FOOTER =============== */

.sk-footer {
  background: #111827;
}

.sk-footer-link {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}

.sk-footer-link:hover {
  color: #ffffff;
  text-decoration: underline;
}

.sk-subscribe-form .form-control {
  border-radius: 999px 0 0 999px;
}

.sk-subscribe-form .btn {
  border-radius: 0 999px 999px 0;
}

/* Social icons from existing font-icons.css */
.sk-footer .social-icon i {
  line-height: 1;
}

/* =============== RESPONSIVE TWEAKS =============== */

@media (max-width: 767.98px) {
  .sk-hero {
    text-align: center;
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .sk-image-section {
    background-attachment: scroll;
  }
}
/* MAKE SUBTITLE + PARAGRAPH FULLY READABLE */
.sk-hero .text-uppercase,
.sk-hero p.lead {
  color: #000000 !important; /* pure black */
  text-shadow:
    0 0 4px rgba(255,255,255,0.7),
    0 0 7px rgba(255,255,255,0.5); /* halo glow for readability */
  font-weight: 700;
}

/* Ensure only the big headline stays white */
.sk-hero h1 {
  color: #FFFFFF !important;
  text-shadow: 0 3px 20px rgba(0,0,0,0.9);
}
/* Footer social icons */
.sk-footer .social-links a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.25rem;
  line-height: 1;
}

.sk-footer .social-links a:hover {
  color: #60A5FA; /* light blue hover */
}
/* Default: white */
.sk-footer .social-links a i {
  color: rgba(255,255,255,0.85);
}

/* Hover: brand colors */
.sk-footer .social-links a[aria-label="LinkedIn"]:hover i {
  color: #0A66C2;
}

.sk-footer .social-links a[aria-label="Instagram"]:hover i {
  color: #E4405F;
}

.sk-footer .social-links a[aria-label="Facebook"]:hover i {
  color: #1877F2;
}

.sk-footer .social-links a[aria-label="YouTube"]:hover i {
  color: #FF0000;
}
