/* Global Variable Declaration */

:root {
  --charcoal-black: #111111;
  --dark-grey: #585757;
  --soft-beige: #f5ece4;
  --vibrant-orange: #fc6a0a;
  --bright-red: #e74504;
  --eerie-black: #1f1f1f;

  /* Typography */
  --ff-neue-black: "neue-black", sans-serif;
  --ff-neue-bold: "neue-bold", sans-serif;
  --ff-neue-light: "neue-light", sans-serif;
  --ff-neue-medium: "neue-medium", sans-serif;
  --ff-neue-roman: "neue-roman", sans-serif;
  --ff-neue-thin: "neue-thin", sans-serif;
}

/* Reset Properties */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--ff-neue-medium);
  color: var(--soft-beige);
}

html,
body {
  height: 100%;
  width: 100%;
  user-select: none;
  background-color: var(--charcoal-black);
}

::-webkit-scrollbar {
  display: none;
}

a {
  text-decoration: none;
  color: var(--soft-beige);
}

/* Navbar CSS */

#navbar {
  display: flex;
  position: relative;
  top: 0;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  z-index: 100;
  padding: 1vw 4vw;
  background-color: var(--charcoal-black);
}

.menu {
  display: flex;
  padding: 3vw 2.5vw 1vw 2.5vw;
  gap: 2vw;
  font-size: 1.2vw;
}

.logo {
  padding: 0vw 0vw;
}

.cta h4 {
  position: relative;
  padding: 15px 25px;
  border: 2px solid #fc6b0a78;
  border-radius: 50px;
  font-weight: 550;
  font-size: 17px;
  transition: all ease 0.4s;
  overflow: hidden;
}

.cta h4 a {
  position: relative;
  z-index: 9;
}

.cta h4::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: var(--vibrant-orange);
  left: 0;
  bottom: -100%;
  border-radius: 50%;
  transition: all ease 0.4s;
}

.cta h4:hover::after {
  bottom: 0;
  border-radius: 0;
}

.cta h4:hover a {
  color: var(--charcoal-black);
}

.menu p a {
  color: var(--soft-beige);
}

.menu p a:hover {
  color: var(--vibrant-orange);
  transition: 0.5s ease;
}

/* Hamburger Menu Styles */
.hamburger {
  display: none;
  cursor: pointer;
  padding: 15px;
  z-index: 101;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  margin: 5px auto;
  background: var(--soft-beige);
  transition: all 0.3s ease-in-out;
  border-radius: 1px;
}

/* Mobile Menu Styles */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--charcoal-black);
  padding: 80px 20px 20px;
  z-index: 100;
  transform: translateX(-100%);
  transition: transform 0.3s ease-in-out;
}

.mobile-menu.active {
  transform: translateX(0);
}

/* Hamburger Animation */
.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-20px);
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Responsive Media Queries */
@media screen and (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .menu,
  .cta {
    display: none;
  }

  .mobile-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .mobile-menu p {
    font-size: 18px;
    margin: 10px 0;
  }

  .mobile-menu .cta {
    display: block;
    margin-top: 20px;
  }

  #navbar {
    padding: 10px 20px;
  }

  .logo {
    padding: 0;
    width: 15px;
  }
}

/* Additional responsive adjustments */
@media screen and (max-width: 480px) {
  .mobile-menu p {
    font-size: 16px;
  }

  .cta h4 {
    padding: 12px 20px;
    font-size: 15px;
  }

  .logo {
    padding: 0;
    width: 5px;
  }
}

/* Footer Styles */
.footer {
  padding: 4rem 0;
  background-color: var(--charcoal-black);
  border-top: var(--dark-grey) 1px solid;
}

/* Footer headings */
.footer h1 {
  font-size: 5vw;
  margin-bottom: 2rem;
}

.footer h3 {
  font-size: 1rem;
  text-transform: uppercase;
  color: var(--dark-grey);
  margin-bottom: 1.5rem;
  font-family: var(--ff-neue-medium);
}

/* Footer text and links */
.footer p {
  font-size: 1rem;
  margin-bottom: 0.75rem;
  color: var(--soft-beige);
}

.footer a {
  color: var(--soft-beige);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--vibrant-orange);
}

/* Location section */
.footer .location-text {
  font-size: 2rem;
  line-height: 1.2;
  margin-top: 0.5rem;
}

/* Footer bottom */
.footer-bottom {
  padding: 1rem 0;
  border-top: 1px solid var(--dark-grey);
  margin-top: 2rem;
}

.footer-bottom p {
  font-size: 0.9rem;
  color: var(--dark-grey);
}

/* Responsive styles */
@media screen and (max-width: 992px) {
  .footer h1 {
    font-size: 3.5rem;
  }

  .footer .location-text {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 768px) {
  .footer {
    padding: 3rem 0;
  }

  .footer h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }

  .footer .col-4,
  .footer .col-8,
  .footer .col-3 {
    width: 100%;
    margin-bottom: 2rem;
  }

  .footer .location-text {
    font-size: 1.25rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
}

@media screen and (max-width: 576px) {
  .footer {
    padding: 2rem 0;
  }

  .footer h1 {
    font-size: 2rem;
  }

  .footer h3 {
    margin-bottom: 1rem;
  }

  .footer .location-text {
    font-size: 1.1rem;
  }
}