* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  min-height: 100vh;
}

.banner {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(255, 255, 255);
  text-align: center;
  overflow: hidden;
}

.banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1;
}

.banner-text {
  z-index: 2;
  padding: 0 20px;
}

.banner-text h1 {
  font-size: clamp(1.8rem, 5vw, 3rem);
}

.banner-text h2 {
  font-size: clamp(1.1rem, 3vw, 2rem);
  font-weight: 300;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.8);
}

li a {
  display: flex;
  align-items: center;
  gap: 0px;
  text-decoration: none;
}

li img {
  height: 50px; /* adjust size */
}

nav {
  background-color: rgb(0, 0, 0);
  box-shadow: 3px 3px 3px 5px rgba(0, 0, 0, 0.1);
}
nav ul {
  width: 100%;
  list-style: none;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
nav li {
  height: 70px;
}
nav a {
  height: 100%;
  padding: 0 20px;
  text-decoration: none;
  display: flex;
  align-items: center;
  color: rgb(255, 255, 255);
  transition:
    color 0.2s ease,
    background-color 0.2s ease;
}
nav li.active a {
  color: orange;
}

nav a:hover {
  color: orange;
  background-color: rgba(255, 255, 255, 0.08);
  transform: scale(1.1);
}
nav li:first-child {
  margin-right: auto;
}
.sidebar {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 250px;
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px); /*how much blur its depends on the background-color above*/
  box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1);
  display: none;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.sidebar li {
  width: 100%;
}
.sidebar a {
  width: 100%;
}
.sidebar a:hover {
  transform: none;
}
.menu-btn {
  display: none;
}
.cta-btn {
  display: inline-block;
  width: 170px;
  margin-top: 30px;
  padding: 14px 36px;
  background-color: orange;
  color: black;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.cta-btn:hover {
  background-color: darkorange;
}

.cta-section {
  /* background-color: rgb(20, 20, 20); */
  background-color: #f5f5f5;
  padding: 100px 40px;
  text-align: center;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: rgb(0, 0, 0);
  margin-bottom: 20px;
}

.cta-content p {
  color: rgba(12, 12, 12, 0.7);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 36px;
}
nav a svg {
  fill: white;
}

nav a:hover svg {
  fill: orange;
}
.orange {
  color: orange;
}

footer {
  background-color: rgb(20, 20, 20);
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 40px 0 40px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Left - Logo */
.footer-logo {
  flex: 1;
}

.footer-logo img {
  height: 100px;
  margin-bottom: 15px;
  border-radius: 3px;
}

.footer-logo p {
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Middle - Nav */
.footer-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-nav h3,
.footer-contact h3 {
  color: white;
  font-size: 1rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}

.footer-nav h3::after,
.footer-contact h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 30px;
  height: 2px;
  background-color: orange;
}

.footer-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav ul a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-nav ul a:hover {
  color: orange;
}

.footer-nav li.active a {
  color: orange;
}

/* Right - Contact */
.footer-contact {
  flex: 1;
}

.footer-contact p {
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

.social-icons a:hover {
  background-color: orange;
}

.social-icons svg {
  fill: white;
}

/* Bottom copyright */
.footer-bottom {
  text-align: center;
  padding: 20px 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom span {
  color: orange;
  font-weight: 600;
}
.adress {
  margin: auto 30px;
}
@media (max-width: 750px) {
  .hideOnMobile {
    display: none;
  }
  .menu-btn {
    display: block;
  }

  .footer-content {
    flex-direction: column;
    gap: 40px;
  }
  .banner {
    height: 350px;
    background-position: center center;
  }
  .about-banner {
    background-position: 70% center;
  }
}
@media (max-width: 400px) {
  .sidebar {
    width: 100%;
  }
}
