@import url('https://fonts.googleapis.com/css2?family=Vend+Sans:ital,wght@0,300..700;1,300..700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ===== BODY ===== */
body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
  text-align: center;
  padding-top: 90px; /* space for fixed navbar */
  transition: all 0.3s ease;
  color: #000;
  opacity: 1;
  visibility: visible;
}

/* ===== NAVBAR ===== */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 25px;
  background-color: white;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
}

.logo img {
  width: 70px;
  height: auto;
}

/* ===== NAV LINKS ===== */
.nav-links {
  display: flex;
  list-style: none;
  gap: 25px;
}

.nav-links li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links li a:hover {
  color: #ff9800;
}

#txt-en{
  text-align: center;
}

#txt-ar{
  font-size: 17px;
  transform: translate(0px, 8px);
  text-align: center;
}

/* ===== TRANSLATE BUTTON ===== */
.translate-btn {
  background: none;
  color: white;
  border: none;
  padding: 6px 12px;
  cursor: pointer;
  font-weight: bold;
  margin-left: 10px;
  transition: background-color 0.3s;
}

/* ===== BURGER MENU ===== */
.burger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  margin-left: 10px;
  z-index: 200;
}

.burger div {
  width: 25px;
  height: 3px;
  background-color: #333;
  margin: 4px;
  transition: all 0.3s ease;
}

/* ===== RIGHT SLIDE MENU (MOBILE) ===== */
@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    position: fixed;
    top: 0;
    right: -250px; /* hidden off-screen to the right */
    width: 250px;
    height: 100%;
    background-color: white;
    text-align: left;
    padding: 80px 30px;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
    transition: right 0.4s ease;
    z-index: 99;
  }

  .nav-links.active {
    right: 0; /* slide in from right */
  }

  .burger {
    display: flex;
  }

  .burger.toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
  }

  .burger.toggle .line2 {
    opacity: 0;
  }

  .burger.toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
  }
}

    /* Simple scroll-in animation */
    .fade-in {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.8s ease, transform 0.8s ease;
    }
    .fade-in.visible {
      opacity: 1;
      transform: translateY(0);
    }

 .contact-section {
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 20px;
}

.contact-container {
  background-color: #444;
  padding: 40px;
  border-radius: 12px;
  max-width: 600px;
  width: 100%;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.contact-container h2 {
  text-align: center;
  margin-bottom: 25px;
  font-size: 28px;
  letter-spacing: 1px;
}

/* === Form Styling === */
.form-group {
  margin-bottom: 20px;
}

label {
  display: block;
  font-weight: bold;
  margin-bottom: 8px;
}

input,
textarea {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 6px;
  background-color: #555;
  color: white;
  font-size: 16px;
}

input:focus,
textarea:focus {
  outline: 2px solid #ff8c00;
}

/* === Button === */
#btn-submit {
  background-color: #ff8c00;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 6px;
  width: 100%;
  font-size: 18px;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}

#btn-submit:hover {
  color: #ff9f33;
  background-color: #fff;
}

#form-status {
  text-align: center;
  margin-top: 15px;
  font-size: 16px;
  font-weight: 500;
}

/* === Responsive === */
@media (max-width: 600px) {
  .contact-container {
    padding: 25px;
  }

  .contact-container h2 {
    font-size: 24px;
  }

  input,
  textarea {
    font-size: 15px;
  }
}

#or{
    font-size: 30px;
}

#a-email{
    font-size: 20px;
    color: #ff8c00;
    transform: translate(0px, 19px);
}

#txt-contact{
    font-size: 20px;
}

/* ===== SOCIAL BUTTON SECTION ===== */
.social-section {
  background-color: #333;
  padding: 50px 0;
  text-align: center;
  transform: translate(0px, 50px);
}

.social-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.social-btn {
      width: 60px;
      height: 60px;
      border: 0.5px solid #fff;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      background: none;
      color: #fff;
      font-size: 26px;
      text-decoration: none;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

.social-btn i{
  color: #fff;
  background: none;
}

/* Platform colors */
    .instagram { background: none; }
    .youtube { background: none; }
    .facebook { background: none; }
    .email { background: none; }

.social-btn:hover{
  transform: scale(1.1);
  background: #ff9800;
  color: #fff;
  border-color: #ff9800;
  box-shadow: 0px 0px 20px #ff9800;
}

.instagram, .youtube, .facebook, .email, i{
  color: #000;
  background: none;
}

@media (max-width: 480px) {
  .social-btn {
    width: 50px;
    height: 50px;
    font-size: 22px;
  }

  .social-section {
    padding: 40px 0;
  }
}
