/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #ff751f;
  --text-dark: #333;
  --text-light: #666;
  --bg-light: #f8f9fa;
  --white: #ffffff;
  --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "MuseoModerno", sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  transition: var(--transition);
  font-style: normal;
}

body[dir="rtl"] {
  font-family: "MuseoModerno", sans-serif;
}

* {
  font-style: normal !important;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: var(--white);
  box-shadow: var(--shadow);
  z-index: 1000;
  transition: var(--transition);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.logo-placeholder {
  background: var(--primary-color);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: 600;
}

.logo-img {
  height: 50px;
  /* adjust size */
  width: auto;
  display: block;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-menu a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

.nav-menu a:hover {
  color: var(--primary-color);
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: var(--transition);
}

.nav-menu a:hover::after {
  width: 100%;
}

.lang-toggle {
  display: flex;
  gap: 5px;
}

.lang-btn {
  background: none;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  padding: 5px 15px;
  border-radius: 20px;
  cursor: pointer;
  transition: var(--transition);
  font-weight: 500;
}

.lang-btn.active,
.lang-btn:hover {
  background: var(--primary-color);
  color: var(--white);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--text-dark);
  margin: 3px 0;
  transition: var(--transition);
}

/* Banner */
.banner {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  overflow: hidden;
}

.banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-color), #e65100);
  background-image: url("fonts/assets/images/banner.png");
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.banner-bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}

.banner-content {
  z-index: 1;
  max-width: 800px;
  padding: 0 20px;
}

.banner h1 {
  font-size: 5rem;
  font-weight: 500;
  margin-bottom: 1rem;
  font-weight: 500;
  animation: fadeInUp 1s ease;
}

.banner p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  font-weight: 200;
  animation: fadeInUp 1s ease 0.2s both;
}

.cta-btn {
  background: var(--primary-color);
  color: var(--white);
  border: none;
  padding: 15px 30px;
  font-size: 1.1rem;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  animation: fadeInUp 1s ease 0.4s both;
}

.cta-btn:hover {
  background: #e65100;
  transform: translateY(-2px);
}

/* About Section */
#about {
  background: var(--bg-light);
}

#about h2 {
  text-align: center;
  font-size: 4.5rem;
  margin-bottom: 3rem;
  color: var(--primary-color);
  font-weight: 300;
}

.about-content p {
  font-size: 1.25rem;
  line-height: 1.8;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  color: #000;
  font-weight: 300;
}

/* Vision & Mission */
.vision-section {
  background: var(--white);
}

.vision-mission {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
}

.vision,
.mission {
  padding: 2rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.vision {
  background: linear-gradient(135deg, var(--primary-color), #ff8a50);
  color: var(--white);
}

.mission {
  background: var(--white);
  border: 2px solid var(--primary-color);
}

.vision h3,
.mission h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.vision p,
.mission p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.mission ul {
  list-style: none;
  padding-left: 0;
}

.mission li {
  padding: 0.5rem 0;
  position: relative;
  padding-left: 1.5rem;
}

.mission li::before {
  content: "•";
  color: var(--primary-color);
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* Projects Section */
#projects {
  background: var(--bg-light);
}

#projects h2 {
  text-align: center;
  font-size: 4.5rem;
  margin-bottom: 3rem;
  color: var(--primary-color);
  font-weight: 300;
}

.project-group {
  margin-bottom: 4rem;
}

.project-logo {
  text-align: center;
  margin-bottom: 2rem;
}

.logo-item {
  text-align: center;
  display: inline-block;
}

.logo-item img {
  max-width: 250px;
  max-height: 120px;
  object-fit: contain;
}

.carousel {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.carousel-container {
  position: relative;
  width: 100%;
  height: 400px;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.carousel-slide.active {
  opacity: 1;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-slide {
  background-color: #000;
}

.carousel-slide img.contain-image {
  object-fit: contain;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.8);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  transition: var(--transition);
  z-index: 2;
}

.carousel-btn:hover {
  background: var(--white);
}

.carousel-btn.prev {
  left: 20px;
}

.carousel-btn.next {
  right: 20px;
}

.carousel-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 2;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background: var(--white);
}

/* Exhibition Section */
.exhibition-section {
  background: var(--white);
}

.exhibition-section h2 {
  text-align: center;
  font-size: 4.5rem;
  margin-bottom: 3rem;
  color: var(--primary-color);
  font-weight: 300;
}

.exhibition-section p {
  font-size: 1.25rem;
  line-height: 1.8;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  color: #000;
  font-weight: 300;
}

/* Contact Section */
#contact {
  background: var(--bg-light);
}

#contact h2 {
  text-align: center;
  font-size: 4.5rem;
  margin-bottom: 3rem;
  color: var(--primary-color);
  font-weight: 300;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-form input,
.contact-form textarea {
  padding: 15px;
  border: 2px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form button {
  background: var(--primary-color);
  color: var(--white);
  border: none;
  padding: 15px;
  font-size: 1.1rem;
  border-radius: 5px;
  cursor: pointer;
  transition: var(--transition);
}

.contact-form button:hover {
  background: #e65100;
}

.contact-details h4 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.contact-details p {
  margin-bottom: 0.5rem;
  color: var(--text-light);
}

/* .map-placeholder {
  background: #ddd;
  height: 200px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
  color: var(--text-light);
} */

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: var(--white);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 2rem;
    transition: var(--transition);
  }

  .nav-menu.active {
    left: 0;
  }

  .banner h1 {
    font-size: 2.5rem;
  }

  .vision-mission {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .logo-item {
    min-width: 150px;
    padding: 1.5rem;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .section {
    padding: 60px 0;
  }
}

@media (max-width: 480px) {
  .nav-container {
    padding: 1rem;
  }

  .banner h1 {
    font-size: 2rem;
  }

  .banner p {
    font-size: 1rem;
  }

  .section h2 {
    font-size: 2rem;
  }

  .carousel-container {
    height: 250px;
  }
}

/* RTL Support */
[dir="rtl"] .nav-menu {
  left: 100%;
}

[dir="rtl"] .nav-menu.active {
  left: 0;
}

[dir="rtl"] .carousel-btn.prev {
  right: 20px;
  left: auto;
}

[dir="rtl"] .carousel-btn.next {
  left: 20px;
  right: auto;
}

[dir="rtl"] .contact-form input,
[dir="rtl"] .contact-form textarea {
  text-align: right;
}

[dir="rtl"] .contact-details {
  text-align: right;
}