/* RESET AND BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #0f0f0f;
  color: #ffffff;
  line-height: 1.6;
}

/* NAVIGATION */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: #000;
  border-bottom: 2px solid #e60000;
  position: relative;
  z-index: 100;
}

.nav__logo a {
  color: #e60000;
  font-size: 1.8rem;
  font-weight: bold;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.nav__logo img {
  height: 40px;
  margin-right: 10px;
  border-radius: 6px;
}

.nav__links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin-left: auto;
  align-items: center;
  justify-content: flex-end;
}

.nav__links li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav__links li a:hover {
  color: #e60000;
}

#languageSwitcher {
  padding: 0.4rem 0.6rem;
  background-color: #111;
  color: #fff;
  border: 1px solid #e60000;
  border-radius: 4px;
  cursor: pointer;
  margin-left: 20px;
}

.nav__toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: white;
  cursor: pointer;
}

@media (max-width: 768px) {
  .nav__toggle {
    display: block;
  }

  .nav__links {
    position: absolute;
    top: 70px;
    right: 20px;
    background-color: #000;
    flex-direction: column;
    gap: 15px;
    padding: 15px 20px;
    border: 1px solid #e60000;
    display: none;
  }

  .nav__links.active {
    display: flex;
  }

  #languageSwitcher {
    position: absolute;
    top: 15px;
    right: 60px;
  }
}

/* ABOUT SECTION */
.about__hero {
  background: linear-gradient(to right, #111, #e60000);
  color: white;
  padding: 4rem 2rem;
  text-align: center;
}

.about__hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.about__hero p {
  font-size: 1.2rem;
}

.about__info {
  padding: 3rem 2rem;
  background: #1a1a1a;
}

.about__info .container {
  max-width: 800px;
  margin: auto;
}

.about__info h2,
.about__info h3 {
  color: #e60000;
  margin-bottom: 1rem;
}

.about__info ul {
  padding-left: 1.5rem;
  list-style: none;
}

.about__info ul li {
  padding-left: 1rem;
  margin-bottom: 0.5rem;
  position: relative;
}

.about__info ul li::before {
  content: "✔️";
  position: absolute;
  left: 0;
}

/* CTA SECTION */
.cta__section {
  background: #000;
  color: white;
  text-align: center;
  padding: 3rem 2rem;
}

.cta__button {
  display: inline-block;
  background: #e60000;
  color: white;
  padding: 0.75rem 1.5rem;
  margin-top: 1rem;
  border: none;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.cta__button:hover {
  background: #b20000;
}

/* FOOTER */
ooter {
  background-color: #222;
  color: #eee;
  padding: 40px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 14px;
  line-height: 1.6;
}

.footer__container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer__top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.footer__logo-contact {
  flex: 1 1 300px;
  min-width: 280px;
}

.footer__logo-contact h4 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: #e74c3c; /* NestUp gold-ish */
}

.footer__logo-contact p {
  margin-bottom: 20px;
  color: #ccc;
}

.footer__form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

.footer__form input[type="email"] {
  padding: 8px 12px;
  width: 100%;
  max-width: 320px;
  margin-bottom: 12px;
  border: none;
  border-radius: 4px;
  outline: none;
}

.footer__form button {
  background-color: #e74c3c;
  border: none;
  color: #222;
  padding: 10px 18px;
  font-weight: 700;
  cursor: pointer;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.footer__form button:hover {
  background-color: #e74c3c;
}

.footer__links {
  flex: 1 1 150px;
  min-width: 150px;
}

.footer__links h5 {
  margin-bottom: 12px;
  color: #e74c3c;
}

.footer__links ul {
  list-style: none;
  padding: 0;
}

.footer__links ul li {
  margin-bottom: 10px;
}

.footer__links ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer__links ul li a:hover {
  color: #e74c3c;
}

.footer__social {
  flex: 1 1 150px;
  min-width: 150px;
}

.footer__social h5 {
  margin-bottom: 12px;
  color: #e74c3c;
}

.social__icons a {
  color: #ccc;
  font-size: 1.6rem;
  margin-right: 15px;
  transition: color 0.3s ease;
}

.social__icons a:hover {
  color: #f1c40f;
}

.footer__bottom {
  margin-top: 30px;
  text-align: center;
  color: #777;
  font-size: 13px;
  border-top: 1px solid #444;
  padding-top: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .footer__top {
    flex-direction: column;
  }

  .footer__logo-contact,
  .footer__links,
  .footer__social {
    min-width: 100%;
  }

  .footer__form input[type="email"] {
    max-width: 100%;
  }
}
