@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);
  }
}

/* ===== CONTENT ===== */
.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
  transition: all 0.3s ease;
}

.content img {
  width: 180px;
  height: auto;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.content h2 {
  font-size: 1.2rem;
  color: #111;
  margin-bottom: 5px;
  transition: all 0.3s ease;
}

.content h3 {
  font-size: 1rem;
  color: #222;
  transition: all 0.3s ease;
}

/* ===== TEXT STYLES ===== */
h1, h2 {
  font-family: 'Poppins', sans-serif;
  color: #222;
  line-height: 1.3;
  margin-bottom: 10px;
  text-align: left;
}

h1 {
  font-size: 2rem;
  margin-top: 20px;
}

h2 {
  font-size: 1.4rem;
  margin-top: 30px;
  color: #333;
}

p, li {
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  color: #444;
  line-height: 1.7;
  margin-bottom: 10px;
  text-align: left;
}

ul {
  margin-left: 25px;
  text-align: left;
}

/* ===== RESPONSIVE TEXT SCALING ===== */
@media (max-width: 768px) {
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.2rem; }
  p, li { font-size: 0.95rem; }
}

@media (max-width: 480px) {
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.1rem; }
  p, li { font-size: 0.9rem; }
}

/* ===== FADE-IN EFFECT ===== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== SYMBOL SECTION ===== */
#sym {
  color: #666;
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  font-size: 50px;
  justify-self: center;
  opacity: 0.6;
  transition: opacity 0.8s ease, transform 0.8s ease;
}

#sym-txt {
  color: #666;
  justify-self: center;
  text-align: center;
  font-size: 25px;
  transform: translate(0px, -20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

#sym-txt2 {
  color: #666;
  justify-self: center;
  transform: translate(0px, -5px);
  font-size: 23px;
  opacity: 0.7;
  transition: opacity 0.8s ease, transform 0.8s ease;
}

/* ===== 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; }
    .map-marker{ 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, .map-marker i{
  color: #fff;
  background: none;
}

@media (max-width: 480px) {
  .social-btn {
    width: 50px;
    height: 50px;
    font-size: 22px;
  }

  .social-section {
    padding: 40px 0;
  }
}
