/* Reset بسيط */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Cairo', sans-serif;
}

body {
  min-height: 100vh;

  /* Spotlight + Vignette */
  background: radial-gradient(
    circle at 50% 30%,
     #8A97A3 0%,
  #6F7C88 45%,
  #4E5963 85%
  );

  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
}



/* Navbar Base */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 20px 40px;
  transition: 0.3s ease;
  z-index: 1000;
}

.navbar.scrolled {
  background: #4E5963;
  backdrop-filter: blur(10px);
  padding: 15px 40px;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}



/* Logo */
.logo img {
  height: 100px;
  width: 150px;
  opacity: 0;
}

.logo img.show{
  opacity: 1;
}
/* Links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: #F5F5F5;
  font-weight: 500;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #A63D40;
}

/* Language Toggle */
.lang-switch button {
  background: #A63D40;
  border: none;
  padding: 6px 18px;
  border-radius: 20px;
  color: #ddd;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.lang-switch button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 10px rgba(192,192,192,0.5);
}


/* Mobile Menu */
.menu-btn {
  display: none;
  cursor: pointer;
  width: 30px;
}
.menu-btn span {
  display: block;
  height: 3px;
  background: white;
  margin: 6px 0;
  transition: 0.3s;
}

/* لما يتضاف كلاس open */
.menu-btn.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-btn.open span:nth-child(2) {
  opacity: 0;
}

.menu-btn.open span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}


/* Responsive */
@media (max-width: 992px) {
  .nav-links {
    position: absolute;
    top: 80px;
    right: -100%;
    flex-direction: column;
    background: #4E5963;
    width: 250px;
    padding: 30px;
    transition: 0.3s;
  }

  .nav-links.active {
    right: 0;
  }

  .menu-btn {
    display: block;
  }
}



.main-footer {
  min-height: 100vh;
    background: #4E5963;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 80px 5%;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

/* Left */
.footer-left {
  flex: 1;
  min-width: 300px;
}

.footer-logo {
  width: 180px;
  margin-bottom: 30px;
  border-radius: 20px;
}

.social-icons {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.social-icons a {
  width: 45px;
  height: 45px;
  background: #868F99;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #A63D40;
  font-size: 18px;
  transition: 0.3s;
}

.social-icons a:hover {
  background: #A63D40;
  color: #ddd;
}

.contact-boxes {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-item {
  background: #868F99;
  padding: 15px 20px;
  border-radius: 12px;
  font-size: 15px;
  transition: 0.3s;
}

.contact-item:hover {
  background: #A63D40;
  color: #ddd;
}

/* Right */
.footer-right {
  flex: 1;
  min-width: 300px;
}

.footer-right h3 {
  font-size: 28px;
  margin-bottom: 25px;
  color: #A63D40;
  font-weight: bold;
}

.footer-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-form input,
.footer-form textarea {
  padding: 14px;
  border-radius: 10px;
  border: none;
  outline: none;
  background: #868F99;
  color: #ddd;
}

.footer-form input::placeholder,
.footer-form textarea::placeholder {
  color: #bbb;
}

.footer-form button {
  background: #A63D40;
  color: #ddd;
  padding: 14px;
  border: none;
  border-radius: 30px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.footer-form button:hover {
  background: #fff;
  color: #000;
}

/* Bottom */
.footer-bottom {
  text-align: center;
  padding-top: 40px;
  font-size: 14px;
  opacity: 0.7;
}

/* Responsive */
@media (max-width: 900px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }
}


.footer-bottom {

  color: #fff;
  text-align: center;
  padding: 15px 20px;
  font-size: 14px;
}

.footer-bottom a {
  color: #A63D40; /* لون مميز للرابط */
  text-decoration: none;
  font-weight: bold;
}

.footer-bottom a:hover {
  text-decoration: underline;
}