/* UNIVERSAL */
:root {
  --primary-color: #bcb8f7;
  --secondary-color: #ed6b7a;
  --background-color: #000000;
  --heading-color: #ffffff;
  --text-color-light: #eaeaea;
  --text-color-dark: #131313;
  --font-family-primary: "Roboto", sans-serif;
  --font-family-secondary: "Inter", sans-serif;
}

body {
  background-color: var(--background-color);
  color: var(--text-color-light);
  font-family: var(--font-family-secondary);
}

* {
  margin: 0;
  box-sizing: border-box;
}

section {
  display: flex;
  padding: 5%;
  padding-bottom: 0;
  gap: 5%;
}

div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-family-primary);
  font-weight: 700;
  color: var(--heading-color);
  margin: 0;
}

p,
span {
  font-family: var(--font-family-secondary);
}

.section-heading {
  font-size: 42px;
}

#services-btn {
  margin-top: 16px;
}

.btn {
  padding: 12px 18px;
  border: 3px solid var(--secondary-color);
  border-radius: 32px;
  color: var(--text-color-light);
  font-family: var(--font-family-primary);
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s;
  line-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
}

.btn:hover {
  border: 3px solid var(--primary-color);
}

.btn i {
  margin-left: 8px;
}

.heading-accent-primary {
  color: var(--primary-color);
}

.heading-accent-secondary {
  color: var(--secondary-color);
}

.banner-section {
  justify-content: center;
}

.banner-text {
  font-size: 24px;
  line-height: 1.5;
}

.body-text {
  font-size: 20px;
  line-height: 1.5;
}

.text-container {
  gap: 16px;
  align-items: flex-start;
  max-width: 800px;
}

.hamburger {
  display: none; /* Hide by default on desktop */
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.hamburger-box {
  width: 30px;
  height: 24px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  width: 100%;
  height: 3px;
  background-color: #fff;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}

.hamburger-inner::before,
.hamburger-inner::after {
  content: "";
  width: 100%;
  height: 3px;
  background-color: #fff;
  position: absolute;
  left: 0;
  transition: transform 0.3s ease;
}

.hamburger-inner::before {
  top: -8px;
}

.hamburger-inner::after {
  top: 8px;
}

/* Mobile Menu Styles */
.mobile-menu {
  position: fixed;
  top: 120px;
  right: -100%; /* Hide off-screen by default */
  width: 250px;
  height: 100vh;
  background-color: #000000;
  transition: right 0.3s ease;
  z-index: 1000;
  border-left: 2px solid var(--primary-color);
}

.mobile-menu.open {
  right: 0; /* Slide in when open */
  top: 120px;
}

/* Hamburger to "X" Animation */
.hamburger.is-active .hamburger-inner {
  transform: rotate(45deg);
}

.hamburger.is-active .hamburger-inner::before {
  transform: rotate(90deg);
  top: 0;
}

.hamburger.is-active .hamburger-inner::after {
  transform: rotate(90deg);
  top: 0;
}

/* Show Hamburger on Mobile */
@media (max-width: 768px) {
  .hamburger {
    display: block; /* Show hamburger on mobile */
  }

  .nav-menu:not(.mobile-menu .nav-menu) {
    display: none; /* Hide desktop menu on mobile */
  }
}

.header-section {
  width: 100%;
  padding: 32px 64px;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid var(--primary-color);
  height: 120px;
}

.nav-menu {
  display: flex;
  flex-direction: row;
  gap: 24px;
}

.nav-link {
  color: var(--text-color-light);
  font-family: var(--font-family-primary);
  font-weight: 600;
  font-size: 18px;
  text-decoration: none;
  transition: all 0.3s;
}

.nav-link:hover {
  color: var(--primary-color);
}

.logo-container {
  flex-direction: row;
  gap: 24px;
}

.site-logo {
  width: 74px;
}

.mobile-heading-container {
  display: none;
}

.footer-section {
  border-top: 2px solid var(--primary-color);
  padding: 32px;
  justify-content: center;
}

.footer-content {
  width: auto;
  gap: 24px;
  flex-direction: row;
}

#footer-text-container {
  align-items: start;
}

.footer-text {
  justify-content: start;
  align-items: start;
  text-align: left;
}

#footer-logo {
  width: 120px;
}

#footer-btn {
  margin-top: 16px;
}

.logo-heading {
  font-size: 28px;
}

/* #home-text-container {
  max-width: 900px;
} */

/* #home-image-container {
  max-width: 750px;
} */

.large-heading {
  font-size: 64px;
}

.image-container {
  width: 100%;
  max-width: 600px;
}

.image-container img {
  width: 100%;
  height: 100%;
}

.services-section {
  justify-content: center;
  align-items: center;
  padding-bottom: 5%;
}

.services-content-container {
  width: auto;
  gap: 32px;
}

#services-intro {
  width: auto;
  max-width: 800px;
  gap: 8px;
}

.card-container {
  width: 100%;
  max-width: 832px;
  flex-direction: row;
  gap: 32px;
  height: auto;
  align-items: stretch;
  flex-wrap: wrap;
}

.card {
  padding: 32px;
  gap: 8px;
  width: calc(50% - 16px);
  border: 3px solid var(--primary-color);
  border-radius: 16px;
  align-items: start;
  justify-content: start;
  transition: 500ms;
}

.card:hover {
  box-shadow: 0 8px 20px 4px var(--primary-color);
  transform: translateY(-8px);
}

.card-icon {
  font-size: 32px;
  color: var(--secondary-color);
  margin-bottom: 16px;
}

.card-heading {
  font-size: 24px;
  font-weight: 400;
}

.card-text {
  font-size: 18px;
}

/* #services-image-container {
  max-width: 850px;
} */

.standout-section {
  justify-content: center;
}

/* #standout-image-container {
  max-width: 700px;
} */

/* #standout-text-container {
  width: 1000px;
} */

.contact-banner {
  justify-content: center;
  text-align: center;
}

#contact-text-container {
  align-items: center;
}

.form-section {
  justify-content: center;
  padding-bottom: 5%;
}

.contact-form {
  display: flex;
  flex-direction: column;
  border: 2px solid;
  border-radius: 16px;
  padding: 32px;
  gap: 16px;
  width: 500px;
}

.form-group {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  width: 100%;
}

label {
  font-family: var(--font-family-primary);
  font-weight: 500;
  font-size: 18px;
  color: var(--primary-color);
}

input,
textarea {
  width: 100%;
  background-color: transparent;
  padding: 8px 16px;
  color: var(--text-color-light);
  font-family: var(--font-family-secondary);
  font-size: 18px;
  border: 2px solid white;
  border-radius: 32px;
}

textarea {
  border-radius: 16px;
}

#submit-btn {
  width: 50%;
  padding: 16px 32px;
  margin-top: 16px;
}

.pricing-tier-section {
  flex-direction: column;
}

.tier-container {
  flex-direction: row;
  gap: 24px;
  align-items: stretch;
  padding-bottom: 5%;
}

.pricing-tier {
  align-items: start;
  padding: 32px;
  border: 2px solid var(--primary-color);
  border-radius: 16px;
  width: 100%;
  max-width: 500px;
  min-width: 400px;
  gap: 24px;
}

.tier-heading {
  font-size: 42px;
}

.tier-content {
  align-items: start;
  width: 100%;
}

.pricing-text-container {
  align-items: start;
}

.tier-list li:first-child {
  margin-top: 8px;
}

/* Mobile Styling */
@media only screen and (max-width: 768px) {
  .nav-menu {
    height: 100%;
    width: 100%;
    padding: 32px;
    flex-direction: column;
  }

  .banner-section,
  .standout-section,
  .services-section {
    flex-direction: column;
    gap: 32px;
  }

  .text-container {
    gap: 4px;
  }

  .large-heading {
    font-size: 32px;
  }

  .tier-heading {
    font-size: 24px;
  }

  .body-text {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .standout-section {
    flex-direction: column-reverse;
  }

  .card-container {
    gap: 16px;
  }

  .card {
    width: 100%;
    gap: 4px;
    padding: 24px;
    border: 1px solid var(--primary-color);
  }

  .card-heading {
    font-size: 18px;
  }

  .card-text {
    font-size: 16px;
  }

  label,
  input {
    font-size: 16px;
  }

  .header-section,
  .footer-section {
    padding: 16px;
  }

  header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #333;
    color: #fff;
    padding: 1rem;
    transition: transform 0.3s ease;
  }

  #logo-heading-desktop {
    display: none;
  }

  .mobile-heading-container {
    display: flex;
    align-items: start;
  }

  .logo-container {
    gap: 16px;
  }

  .logo-heading {
    font-size: 18px;
  }

  .tier-container {
    flex-direction: column;
    width: 100%;
  }

  .pricing-tier {
    width: 100%;
    min-width: auto;
    gap: 16px;
  }

  .tier-list {
    padding-left: 24px;
  }

  .footer-content {
    gap: 16px;
  }

  #footer-btn {
    margin-top: 12px;
  }

  #footer-text-container {
    font-size: 14px;
  }
}
