* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Poppins", serif;
  text-decoration: none;
  scroll-behavior: smooth;
  scroll-padding-top: 3rem;
}
:root {
  --primary-colour: #cb6ce2;
  --secondary-colour: #2c2c2c;
  --text-colour-light: #ffffff;
  --text-colour-dark: #2c2c2c;
  --bg-colour: #f4f4f4;

  --font-size-h1: 2.25rem;
  --font-size-h2: 1.875rem;
  --body1-font-size: 1.125rem;
  --body2-font-size: 1rem;
  --caption-font-size: 0.875rem;
}

h1 {
  font-size: var(--font-size-h1);
  font-weight: 400;
}

h2 {
  font-size: var(--font-size-h2);
  font-weight: 500;
}

body {
  background-color: var(--bg-colour);
  color: var(--text-colour-dark);
}

/* Navbar */
.navbar {
  position: fixed;
  align-items: center;
  width: 100%;
  height: 128px;
  top: 0;
  right: 0;
  z-index: 10000;
  background: rgba(244, 244, 244, 0.9);
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(2px);
  padding: 0 14%;
  display: flex;
  justify-content: space-between;
}
.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.navbar .logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: 100%;
}
.navbar .logo img {
  max-height: 125px;
  width: auto;
  object-fit: contain;
}
.navbar .main-menu {
  flex: 2;
  display: flex;
  justify-content: center;
}
.navbar .main-menu ul {
  display: flex;
  list-style: none;
}
.navbar .main-menu ul li a {
  color: var(--text-colour-dark);
  margin: 0 24px;
  transition: all 0.5s ease;
}
.navbar .main-menu ul li:hover {
  transform: scale(1.1);
  transition: 0.3s;
}
.navbar .main-menu ul li a:hover {
  color: var(--primary-colour);
  font-weight: 600;
}
.navbar .main-menu ul li a.active {
  color: var(--primary-colour);
  font-weight: 600;
}
.navbar .quote-button {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}
.navbar .quote-button .btn {
  margin-left: auto;
}

/* Hamburger Button */
.hamburger-button {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 10000;
}
.hamburger-button .hamburger-line {
  width: 30px;
  height: 3px;
  background: var(--text-colour-dark);
  margin: 6px 0;
  transition: 0.4s;
}
.open .hamburger-line:nth-child(1) {
  transform: rotate(-45deg) translate(-6px, 6px);
}
.open .hamburger-line:nth-child(2) {
  opacity: 0;
}
.open .hamburger-line:nth-child(3) {
  transform: rotate(45deg) translate(-6px, -8px);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 128px;
  right: 0;
  height: calc(100vh - 64px);
  width: 50%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(2px);
  z-index: 10000;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.mobile-menu.active {
  display: flex;
}
.mobile-menu ul {
  margin: 32px;
  width: 100%;
}
.mobile-menu ul li {
  list-style: none;
  width: 100%;
}
.mobile-menu ul li a {
  font-size: 20px;
  transition: 0.3s;
  color: var(--text-colour-dark);
  display: block;
  width: 100%;
  padding: 24px;
}
.mobile-menu ul li a:hover {
  color: var(--primary-colour);
  font-weight: 600;
  background: rgba(244, 244, 244, 0.9);
}

/* Footer */
.footer {
  background-color: var(--secondary-colour);
  padding: 30px 14%;
  clear: both;
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-logo img {
  max-height: 200px;
  width: auto;
  object-fit: contain;
  margin-right: 200px;
}
.footer-links {
  flex: 1;
}
.footer-links h4 {
  margin-bottom: 16px;
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--text-colour-light);
}
.footer-links ul {
  list-style: none;
  padding: 0;
}
.footer-links ul li {
  margin-bottom: 10px;
}
.footer-links ul li a {
  text-decoration: none;
  color: var(--text-colour-light);
  transition: color 0.3s;
}
.footer-links ul li a:hover {
  color: #cb6ce2;
  font-weight: 600;
}
.footer-links ul li a.active {
  color: #cb6ce2;
  font-weight: 600;
}
.footer-contact {
  flex: 1;
}
.footer-contact h4 {
  margin-bottom: 20px;
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--text-colour-light);
}
.footer-contact p {
  margin-bottom: 9px;
  margin-top: 9px;
}
.footer-contact address {
  margin: 0;
  font-style: normal;
  color: var(--text-colour-light);
}
.footer-contact a {
  color: var(--text-colour-light);
  text-decoration: none;
}
.footer-contact a:hover {
  color: #cb6ce2;
  font-weight: 600;
}
.footer-social {
  margin-top: 20px;
}
.footer-social a {
  margin: 0 10px;
  display: inline-block;
}
.footer-social img {
  width: 30px;
  height: 30px;
  transition: transform 0.3s;
}
.footer-social img:hover {
  transform: scale(1.1);
}
.footer-copyright {
  text-align: center;
  margin-top: 30px;
  font-size: 0.875rem;
  color: #bbb;
}

/* Buttons */
.btn {
  color: var(--primary-colour);
  display: inline-block;
  padding: 13px 20px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-align: center;
  transition: 0.5s;
}
.btn:hover {
  opacity: 0.8;
}
.btn-primary {
  background: var(--primary-colour);
  color: #fff;
  border-radius: 4px;
}
.btn-secondary {
  border: 2px solid var(--primary-colour);
  border-radius: 4px;
  background: transparent;
}
.btn-secondary:hover {
  background: #fae4ff;
}

/* Utilities */
.custom-bullets {
  list-style-type: disc;
  padding-left: 20px;
}
.custom-bullets li {
  margin-bottom: 8px;
}
.caption {
  font-size: var(--caption-font-size);
  color: #acabab;
  justify-content: left;
  text-align: left;
  font-style: italic;
}

/* Arrow line Vector & doodles */
.arrow-image {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.doodle-above {
  display: inline-block;
  position: relative;
  top: -10px;
  left: -5px;
  width: 20px;
}
.doodle-next {
  display: inline-block;
  width: 25px;
  margin-left: 8px;
}

/* Media Queries */
@media (max-width: 1200px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.5rem;
  }
  .navbar {
    padding: 0 5%;
  }
  .navbar .main-menu {
    display: none;
  }
  .arrow-image {
    display: none;
  }
  .navbar .hamburger-button {
    display: block;
  }
  .navbar .quote-button {
    display: none;
  }
  .footer-logo img {
    margin-right: 0px;
  }
  .footer-social {
    display: flex;
    justify-content: center;
    text-align: center;
  }
  .footer-social a {
    margin: 0 10px;
  }
  .footer-container {
    flex-direction: column;
    align-items: center;
  }
  .footer-links h4,
  .footer-contact h4, address {
    font-size: 1rem;
    text-align: center;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 1.5rem;
  }
  h2 {
    font-size: 1.25rem;
  }
  .navbar .main-menu {
    display: none;
  }

  .navbar .hamburger-button {
    display: block;
  }

  .navbar .quote-button {
    display: none;
  }
  .btn {
    padding: 10px 15px;
    width: 100%;
    margin: 10px 0;
  }
  .footer-container {
    flex-direction: column;
    align-items: center;
  }
  .footer-logo img {
    margin-right: 0;
  }
  .footer-links,
  .footer-contact {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .navbar .main-menu {
    display: none;
  }
  .navbar .hamburger-button {
    display: block;
  }
  .mobile-menu {
    width: 70%;
  }
  .footer-logo img {
    margin-right: 0;
  }
  .footer-links h4,
  .footer-contact h4 {
    font-size: 1rem;
    text-align: center;
  }
}
