/* Basic resets */
body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  background: #fff;
}

html {
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
}

h1 {
  margin-block-start: 0;
  margin-block-end: 0;
  font-family: "Zain", serif;
  font-weight: 700;  /* Zain Bold */
  font-size: 60px;
  line-height: 90%;
}

h2 {
  margin-block-start: 0;
  margin-block-end: 0;
  font-family: "Inter", sans-serif;
  font-weight: 400; /* Regular */
  font-size: 30px;
}

h3{
  margin-block-start: 0;
  margin-block-end: 0;
  font-family: "Inter", sans-serif;
  font-weight: 300; /* Light */
  font-size: 24px;
}

.b-10 {
  margin-bottom: 10px !important;
}

.b-15 {
  margin-bottom: 15px !important;
}

.b-20 {
  margin-bottom: 20px !important;
}

.b-25 {
  margin-bottom: 25px !important;
}

.b-35 {
  margin-bottom: 35px !important;
}

.rounded-corners {
  border-radius: 15.63px;
}

.add-shadow {
  filter: drop-shadow(4px 4px 10px rgba(0, 0, 0, 0.2)); /* Adds shadow to the image */
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  transition: top 0.3s, background 0.3s;
  z-index: 1000;
}

/* Flex container for better control */
.header-container {
  display: flex;
  align-items: center;
  width: 90%;
  margin: 30px auto;
}

header.hidden {
  top: -100px;
}

header.visible {
  background: #6837C9;
}

/* Logo styling */
.logo img {
  height: 40px;
}

/* Hamburger button and bars */
.menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  height: 30px;
  width: 30px;
}

.bar {
  background: white;
  height: 3px;
  width: 100%;
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* Active state for the hamburger, turning it into a cross */
.menu-toggle.active .bar:nth-child(1) {
  transform: rotate(45deg);
  position: relative;
  top: 10px;
}

.menu-toggle.active .bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active .bar:nth-child(3) {
  transform: rotate(-45deg);
  position: relative;
  top: -10px;
}

/* Menu styles */
/* Initially hide the menu */
.menu {
  display: none;  /* Start with the menu hidden */
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #6837C9;
  color: white;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

/* Show menu when the active class is added */
.menu.active {
  display: flex;  /* Makes the menu visible when active */
}

.menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: right;
  position: absolute;
}

.menu li {
  margin: 20px 0;  /* Space out the items */
  padding: 0;
  margin: 0;
}

.menu a {
  color: white;
  text-decoration: none;
  transition: color 0.3s;
  font-family: "Zain", serif;
  font-weight: 700;  /* Zain Bold */
  font-size: 60px;
}

.menu a:hover {
  color: black;  /* Lighten the color when hovering */
}

.menu-bottom {
  position: absolute;
  bottom: 60px;
  text-align: center;
  max-width: 90%;
}

.menu-bottom h1 {
  font-family: "Zain", serif;
  font-weight: 500;  /* Zain Bold */
  font-size: 43px;
  margin-bottom: 10px;
}

.menu-bottom a {
  font-family: 'Inter', sans-serif;
    font-weight: 300; /* Light */
    font-size: 24px;
}

/* Prevent scrolling on body when menu is open */
body.no-scroll {
  overflow: hidden;  /* Disables scrolling */
}

.container-1240 {
  width: 1240px;
  max-width: 90%;
  margin: 0 auto; /* Centers the container */
}

/* Hero section */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  min-height: 700px;
}

.hero video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top right, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.60));
  z-index: 1; /* Ensures it appears above the video */
  pointer-events: none; /* Prevents it from blocking interactions */
}

.hero-darker {
  position: relative;
  height: 100vh;
  overflow: hidden;
  min-height: 700px;
}

.hero-darker video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-darker::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top right, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.70));
  z-index: 1; /* Ensures it appears above the video */
  pointer-events: none; /* Prevents it from blocking interactions */
}

.hero-lighter {
  position: relative;
  height: 100vh;
  overflow: hidden;
  min-height: 700px;
}

.hero-lighter video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-lighter::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top right, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.50));
  z-index: 1; /* Ensures it appears above the video */
  pointer-events: none; /* Prevents it from blocking interactions */
}

.hero-text {
  position: absolute;
  top: 50%; /* Centers the text vertically */
  left: 50%; /* Centers the text horizontally */
  transform: translate(-50%, -50%); /* Offsets the text to be perfectly centered */
  text-align: center; /* Centers the text within the container */
  width: 100%;
  color: white;
  z-index: 2; /* Ensures text appears above the overlay */
}

.hero-text h1 {
  font-size: 200px;
  font-weight: 1000; /* Extra Bold */
  line-height: 85%;
  max-width: 90%;
}

.hero-secondary h1{
  font-size: 150px;
  font-weight: 1000; /* Extra Bold */
  line-height: 85%;
  max-width: 90%;
}

.hero-text h3 {
  max-width: 90%;
}

.hero-90 {
  display: flex;
  flex-direction: column;
  justify-content: center;  /* Vertically center content */
  align-items: center;  /* Horizontally center content */
  text-align: center;  /* Ensure text inside is also centered */
}


.btn-white {
  width: 200px;
  height: 48px;
  border: 2px solid white;
  border-radius: 9px;
  background: none;
  color: white;
  font-family: "Inter", sans-serif;
  font-weight: 600; /* Medium */
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: all 0.3s ease;
}

.btn-white:hover {
  background: white;
  color: #6837C9;
}

.btn-purple {
  width: 200px;
  height: 48px;
  border: 2px solid #6837C9;
  border-radius: 9px;
  background: none;
  color: #6837C9;
  font-family: "Inter", sans-serif;
  font-weight: 600; /* Medium */
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: all 0.3s ease;
}

.btn-purple:hover {
  background: #6837C9;
  color: white;
}

.split-section {
  display: flex;
  width: 100%;
  height: 900px;
}

.split-left, .split-right {
  width: 50%; /* Ensures both sides are exactly half the screen */
  display: flex;
  justify-content: center;
}

.split-left {
  background: white;
  flex-direction: column;
}

.split-80 {
  max-width: 80%;
  margin: 0 auto;
}

.split-left h1 {
  margin: 0 auto;
}

.split-right {
  background: #6837C9;
  align-items: center;
}

.left-swap {
  background: #6837C9;
  color: white;
}

.right-swap {
  background: white;
}


.split-logo {
  height: 150px;
}

.split-livy-logo {
  width:90%;
}

.split-4C-logo {
  width:90%;
}

.split-lyle {
  width:70%;
}

.split-byte19-shark {
  width:80%;
}

/* Default (larger screens) - show the original logo */
.logo-large {
  display: block;
}

/* On smaller screens, hide the original logo and show the shark logo */
.logo-small {
  display: none;
}

.footer-email {
  width: 100%;
  background: #6837C9;  /* You can adjust the background color */
  padding: 50px 0;
  text-align: center;
  color: white;
  padding: 100px 0;
}

.contact-tagline {
  font-family: 'Zain', sans-serif;
  font-weight: bold;
  font-size: 100px;
  color: white;
  display: block;
  margin: 0 auto;
  max-width: 85%;
}

.contact-email {
  font-family: 'Inter', sans-serif;
  font-size: 30px;
  font-weight: 300;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-email:hover {
  color: black;
}

.contact-logo {
  height: 80px;
  margin-bottom: 35px;
}


@media (max-width: 1150px) {
  .hero-text h1 {
    font-size: 150px;
    font-weight: 1000; /* Extra Bold */
    line-height: 90%;
    max-width: 90%;
  }

  .hero-secondary h1{
    font-size: 100px;
    font-weight: 1000; /* Extra Bold */
    line-height: 85%;
    max-width: 90%;
  }

  .show-break-on-big {
    display: none;
}
}

@media (max-width: 700px) {
  .split-section {
    flex-direction: column; /* Stack the sections vertically */
    height: auto; /* Allow height to adjust automatically */
  }

  .split-left {
    width: 100%; /* Take full width of the screen */
    min-height: 700px;
    height: auto; /* Let them adjust based on content */
  }

  .split-right {
    width: 100%; /* Take full width of the screen */
    min-height: 700px; /* Set min-height to the width of the viewport */
    height: auto; /* Let them adjust based on content */
  }

  .split-80 {
    max-width: 90%;
    width:465px;
    margin: 75px auto;
  }

  .hero-text h1 {
    font-size: 80px;
    font-weight: 1000; /* Extra Bold */
    line-height: 85%;
    max-width: 90%;
  }

  .hero-secondary h1{
    font-size: 70px;
    font-weight: 1000; /* Extra Bold */
    line-height: 85%;
    max-width: 90%;
    width: 90%;
  }

  .hero-text h3 {
    max-width: 90%;
    width: 90%;
  }

  .logo-large {
    display: none; /* Hide the original logo */
  }
  .logo-small {
    display: block; /* Show the shark logo */
  }

  .contact-tagline {
    font-size: 60px;
  }
  
  .contact-email {
    font-size: 24px;
  }

  .left-swap {
    background: white;
    color: black;
  }
  
  .right-swap {
    background: #6837C9;
  }
  
}

@media (max-width: 700px) { /* Adjust breakpoint as needed */
  .show-break-on-small {
      display: inline;
  }
}

@media (min-width: 701px) {
  .show-break-on-small {
      display: none;
  }
}

/* Contact Form Styles 
.contact-form {
  display: flex;
  flex-direction: column;
}

.contact-wrap {
  width:80%;
  margin: 75px auto;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.input-group {
  display: flex;
  flex-direction: column;
}

.message-group {
  width: 100%;
}

label {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 5px;
}

input {
  font-family: 'Inter', sans-serif;
  font-size: 26px;
  font-weight: 300;
  padding: 10px;
  border: none;
  border-radius: 5px;
  width: 100%;
  box-sizing: border-box;
}

textarea {
  font-family: 'Inter', sans-serif;
  font-size: 26px;
  font-weight: 300;
  padding: 10px;
  border: none;
  border-radius: 5px;
  width: 100%;
  box-sizing: border-box;
  resize: none; /* Disables resizing 
}

.contact-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  text-align: center;
}
*/