/* This file contains the global styles for the application. It sets up the font, colors, and basic styles for all elements. */
/* Global Styles */

@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-family), sans-serif !important;
  overflow-x: hidden;
}

:root {
  --primary-color: #0b447c;
  --secondary-color: #27a8e0;
  --tertiary-color: #934bf9;
  --quaternary-color: #d62c89;
  --font-family: "Montserrat", sans-serif;
  --blue-primary: #4690d4;
  --purple-secondary: #8726b7;
  --dark-bg: #121212;
  --dark-bg-lighter: #1e1e1e;
  --card-bg: rgba(32, 32, 32, 0.5);
  --border-color: #333;
  --text-primary: #ffffff;
  --text-secondary: #b0b0b0;
  --text-muted: #888888;
}

/* Video Background */
/* The video background will cover the entire viewport and be fixed in place. */

.video-container {
  position: fixed;
  width: 100%;
  height: 100vh;
  z-index: -1;
}

.video-container .video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.904);
  z-index: 1;
}

.video-container video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -1;
  transform: translate(-50%, -50%);
}

/* Video Background */

/* Header Styles */

header {
  position: relative;
  width: 100%;
  height: 10vh;
  padding: 2rem 15%;
  transition: all ease-in-out 0.3s;
}

.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 10%;
  padding: 2rem 15%;
  background-color: #0b437c13;
  backdrop-filter: blur(10px);
  z-index: 10;
  transition: all ease-in-out 0.3s;
}

header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  outline: none;
}

header nav .logo .desktop-logo {
  max-width: 80%;
  width: 100%;
  height: auto;
}

header nav .logo .mobile-logo {
  display: none;
}

header nav .nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

header nav .nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

header nav .nav-links a:hover {
  color: var(--secondary-color);
}

header nav .cta a {
  color: #fff;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2rem;
  background: linear-gradient(
    to right,
    var(--primary-color),
    var(--secondary-color)
  );
  padding: 0.5rem 2rem;
  border-radius: 30px;
  transition: all ease-in-out 0.3s;
}

header nav .cta a:hover {
  background: linear-gradient(
    to right,
    var(--secondary-color),
    var(--primary-color)
  );
}

/* Header Styles */

/* Active Link Styles */

.active-link {
  color: var(--secondary-color) !important;
}

/* Hamburger Menu Styles */

.mobile-navigation {
  display: none;
}

.mobile-navigation .hamburger {
  width: 50px;
  height: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10;
}

.mobile-navigation .hamburger .line1,
.mobile-navigation .hamburger .line2,
.mobile-navigation .hamburger .line3 {
  width: 30px;
  height: 2px;
  margin-top: 5px;
  background-color: #fff;
  transition: all 0.3s ease-in-out;
}

.mobile-navigation .hamburger.active .line1 {
  transform: rotate(45deg) translate(5px, 5px);
  transition: all 0.3s ease-in-out;
}

.mobile-navigation .hamburger.active .line2 {
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

.mobile-navigation .hamburger.active .line3 {
  transform: rotate(-45deg) translate(5px, -5px);
  transition: all 0.3s ease-in-out;
}

/* Footer Styles */

.footer {
  width: 100%;
  padding: 5rem 15% 2rem 15%;
  background: linear-gradient(170deg, #4e73df, #a74af9);
  color: white;
  border-radius: 2rem 2rem 0 0;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}

.footer-section {
  flex: 1 1 200px;
}

.logo-section .logo {
  max-width: 100%;
  width: 50%;
  height: auto;
}

.footer-section h4 {
  font-weight: bold;
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 1rem;
}

.footer-section a {
  color: white;
  text-decoration: none;
  transition: 0.3s ease;
}

.footer-section a:hover {
  text-decoration: underline;
}

.contact-info {
  margin-bottom: 2rem;
}

.contact-info i {
  margin-right: 0.5rem;
}

.social-icons {
  margin-top: 1rem;
}

.social-icons a {
  color: white;
  margin-right: 1rem;
  font-size: 1.2rem;
  transition: transform 0.2s ease;
}

.social-icons a:hover {
  transform: scale(1.1);
}

.footer-bottom {
  text-align: center;
  margin-top: 10rem;
  font-size: 1rem;
  opacity: 1;
}

/* Responsive Styles */

@media screen and (max-width: 1430px) {
  header {
    padding: 2rem 5%;
  }

  header nav .logo img {
    max-width: 60%;
    width: 100%;
    height: auto;
  }

  header nav .nav-links {
    display: flex;
    gap: 1rem;
    list-style: none;
  }

  header nav .nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
  }

  header nav .cta a {
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    background: linear-gradient(
      to right,
      var(--primary-color),
      var(--secondary-color)
    );
    padding: 0.5rem 1rem;
    border-radius: 30px;
    transition: all ease-in-out 0.3s;
  }
}

@media screen and (max-height: 1020px) {
  .sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 15%;
    padding: 2rem 15%;
    background-color: #0b437c13;
    backdrop-filter: blur(10px);
    z-index: 10;
    transition: all ease-in-out 0.3s;
  }
}

@media screen and (max-width: 900px) {
  header {
    background-color: #0b447c;
    padding: 1rem 5%;
    height: 6rem;
  }

  .sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 6rem;
    padding: 1rem 5%;
    background-color: #0b437c13;
    backdrop-filter: blur(10px);
    z-index: 10;
    transition: all ease-in-out 0.3s;
  }

  header nav {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background-color: #0b447c;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    padding: 1rem 5%;
    transition: all 0.3s ease-in-out;
    z-index: 9;
  }

  header nav .logo .desktop-logo {
    display: none;
  }

  header nav .logo .mobile-logo {
    display: block;
    max-width: 35%;
    width: 100%;
    height: auto;
  }

  header nav .nav-links {
    display: flex;
    flex-direction: column;
    margin-top: 5rem;
  }

  header nav .nav-links a {
    color: #fff;
  }

  header nav .cta {
    margin-top: 5rem;
  }

  header .mobile-navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  header .mobile-navigation .logo img {
    max-width: 35%;
    width: 100%;
    height: auto;
  }
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    text-align: left;
  }

  .footer-section {
    flex: 1 1 100px;
  }

  .footer {
    margin-top: 5rem;
    padding: 2rem 5%;
    border-radius: 1rem;
  }

  .social-icons {
    justify-content: flex-start;
  }
}

@media screen and (max-width: 500px) {
  header {
    height: 5rem;
    background-color: #0b437c13;
  }

  .sticky-header {
    height: 5rem;
    background-color: #0b437c13;
  }

  header nav .logo .mobile-logo {
    display: block;
    max-width: 55%;
    width: 100%;
    height: auto;
  }

  header .mobile-navigation .logo img {
    max-width: 55%;
    width: 100%;
    height: auto;
  }
}
