/*Fonts*/
@import url("https://fonts.googleapis.com/css?family=Open+Sans|Roboto:400,700&display=swap");
@import url("variabels.css");
@import url("components/menu.css");
@import url("components/map-store.css");
@import url("components/footer.css");
@import url("components/gallery.css");


/*---------------------- Global Styles ---------------------*/
*::before,
*::after {
    box-sizing: border-box;
}   
body {
    margin: 0;
    font-family: var(--font-family);
    background-color: var(--clr-white);  
}

ul {
  list-style-type: none;
}
a {
  text-decoration: none;
}

/* desktop */
@media screen and (min-width: 768px) {
  h1 {
    font-size: 4rem;
  }
  h2 {
    font-size: 2.5rem;
  }
  h3 {
    font-size: 1.75rem;
  }
  h4 {
    font-size: 1rem;
  }
  body {
    font-size: 1rem;
  }
  h1,
  h2,
  h3,
  h4 {
    line-height: 1;
  }
}

/*----------------------Navbar-------------------------*/
nav {
  background-color: var(--clr-white);
  /* box-shadow: var(--light-shadow); */
}

.nav-center{
  width: 100%;
}

.nav-header {
  display: flex;
  align-items: center;
  padding: 1rem;
  justify-content: space-between; 
}
.nav-toggle {
  font-size: 1.5rem;
  color: var(--clr-orange-1);
  background: transparent;
  border-color: transparent;
  transition: var(--transition);
  cursor: pointer;
  
}
.nav-toggle:hover {
  color: var(--clr-grey-12);
  transform: rotate(90deg);
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.25rem; 
}
.logo-img {
  height: 6rem;
}
.logo-text{
  color: var(--clr-brown-1);
  font-family: var(--font-family);
  font-size: var(--font-size-medium);
  font-weight: 500;
  
}
.menu-links {
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease-in-out;
  font-weight: 500;
  width: 100%;
  font-size: var(--font-size-medium);
}
.menu-links a {
  color: var(--clr-orange-1);
  font-size: var(--font-size-medium);
  text-transform: capitalize;
  letter-spacing: var(--spacing);
  display: block;
  padding: 0.5rem 1rem;
  transition: var(--transition);
  font-weight: 500;

}
.menu-links a:hover {
  background: #fff;
  color: var(--clr-grey-12);
    font-size: var(--font-size-medium);

}

/* Language Switcher Link */
.lang-switcher {
  background: var(--clr-orange-1) !important;
  color: var(--clr-white) !important;
  border: 2px solid var(--clr-orange-1);
  padding: 0.4rem 1rem !important;
  font-size: 0.9rem !important;
  font-weight: 600 !important;
  letter-spacing: var(--spacing);
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  margin: 0.75rem 1rem;
  display: inline-block !important;
  width: fit-content;
  text-align: center;
}
.lang-switcher:hover {
  background: transparent !important;
  color: var(--clr-orange-1) !important;
}

.show-links {
  height: 16rem;
}
/*desktop*/
@media screen and (min-width: 768px) {
  .nav-center {
    max-width: 1170px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .nav-header {
    padding: 0;
    width: 100%;
  }
  .nav-toggle {
    display: none;
    text-align: right;
    justify-content: right;
    margin-left: auto;
  }
  .menu-links {
    height: auto;
    display: flex;
    text-align: right;
    justify-content: right;
  }
  .menu-links a {
    padding: 0;
    margin: 0 0.5rem;
    font-weight: 500;

  }
  .menu-links a:hover {
    padding: 0;
    background: transparent;
    color: var(--clr-grey-12);
    font-size: 1.05rem;
    font-weight: 500;

  }
  .lang-switcher {
    margin: 0 0 0 0.5rem;
    padding: 0.3rem 0.6rem;
    font-size: 0.8rem;
  }
  .logo-img{
    align-items: center;
    height: 10rem;

  }
  .logo-text{
  color: var(--clr-brown-1);
  font-family: var(--font-family);
  font-size: var(--font-size-large);
  font-weight: 500;
  
}
}

/*------------------------------- HERO ---------------------------------*/
/* .hero-image {
  width: 100% ;
  height: 100vh;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
    box-shadow: 0 16px 32px -8px rgba(0,0,0,0.4);

} */


/* .hero-text {
  text-align: center;
  position: absolute;
  width: 40%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;

}
.hero-text p{
  font-size: 20px;
} */

.hero-image {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* تصویر بک‌گراند از طریق <img> */

.hero-image picture,
.hero-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image img {
  object-fit: cover;
  z-index: 1; /* پایین‌ترین لایه */
}

/* گرادیانت روی کل صفحه */
.hero-image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2; /* بالای عکس */
  background: linear-gradient(
    rgba(0, 0, 0, 0.75),
    rgba(0, 0, 0, 0.2)
  );
}

/* متن روی گرادیانت */
.hero-text {
  position: relative;
  z-index: 3; /* بالاترین لایه */
  color: white;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.hero-text h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero-text p {
  font-size: 1.2rem;
}

.hero-text .hero-cta{
  border: solid 2px white;
  background: transparent;
  color: white;
  min-width: 120px;
  height: 44px;
  border-radius: 5px;
  box-shadow: 0 5px 10px rgba(0,0,0,0.4);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  text-transform: uppercase;
}

.hero-text .hero-cta:hover{
  background:var(--clr-orange-1);
  color: #2B2B2B;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.35);
}

.hero-button{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

/*--------------------------About Us-------------------------------*/
.about-modern {
  padding: 5rem 2rem;
  background: #fafafa;
}

.about-wrapper {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-img img {
  width: 100%;
  border-radius: 20px;
  filter: brightness(90%);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  object-fit: cover;
}

.about-content .line {
  width: 60px;
  height: 4px;
  background: var(--clr-orange-1);
  display: block;
  margin-bottom: 1.5rem;
  border-radius: 5px;
}

.about-content h2 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  color: #222;
  letter-spacing: 1px;
}

.about-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  max-width: 500px;
}

.about-content a {
  color: var(--clr-orange-1);
  font-weight: 600;
}

.about-content a:hover {
  text-decoration: underline;
}

.about-icons {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 2rem;
}

.about-icons h3 {
  font-size: 1.3rem;
  margin-bottom: .3rem;
}

.about-icons p {
  font-size: .95rem;
  color: #666;
}

/* Responsive */
@media(max-width: 900px) {
  .about-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-content p {
    margin: auto;
  }

  .about-icons {
    grid-template-columns: 1fr;
  }
}
