*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
}
.header-text{
  display: flex;
  align-items: center;
  justify-content: center;

}
.header-text img{
  width: 130px;
  height: 130px;
  margin-right: 10px;
}
nav h1{
  color: white;
  margin-right: 80px;
}
.nav_bottom{
  display: flex;
  justify-content: space-around;
  align-items: center;
  background-color: rgb(58, 56, 56);
  height: 50px;
}
.nav_bottom a{
  color: white;
  text-decoration: none;
  font-size: 16px;
  margin: 0 20px;
}
.nav_bottom a:hover{
  color: #e19110;
  transition: 0.5s;
}

nav {

  display: flex;
  justify-content: space-around;
  align-items: center;
  background-color: rgb(30, 29, 29);
  height: 60px;
} 
.nav-links {
  list-style: none;
  display: flex;
  margin-left: 350px;

}

.as{
    width: 40px;
}

.mede{
    display: flex;
    justify-content: center;
    
}
.mede img{
    width: 300px;
    border-radius: 150px;
    height: 200px;
}

.nav-links li a {
    margin: 0px 30px;
    color: rgb(255, 255, 255);
    text-decoration: none;
    font-size: 18px;
}

.nav-links a:hover {
    color: #c58c07;
    transition: 0.5s;
}
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
}

#language-select {
  padding: 0px;
}
  .slider {
    width: 100%;
    height: 700px;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.7);
    position: relative;
    cursor: default;
  }
.footer {
  background: #111;
  color: #ccc;
  padding: 50px 20px 20px;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 60px;
  max-width: 1200px;
  margin: auto;
}

.footer-about h2 {
  color: #fff;
  margin-bottom: 15px;
}

.footer-about p {
  font-size: 14px;
  line-height: 1.6;
}

.footer-column h3 {
  color: #fff;
  margin-bottom: 15px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-column ul li a:hover {
  color: #f39c12;
}

.footer-bottom {
  border-top: 1px solid #333;
  margin-top: 30px;
  padding-top: 15px;
  text-align: center;
  font-size: 14px;
  color: #777;
}

.footer-links a {
  color: #ccc;
  margin: 0 5px;
  text-decoration: none;
}

.footer-links a:hover {
  color: #f39c12;
}
footer img{
  width: 150px;
}
.slides {
  display: flex;
  width: 400%;
  height: 100%;
  transition: transform 0.8s ease-in-out;
}

.slides img {
  width: 100%;
  height: 700px;
  object-fit: cover;
  user-select: none;
  pointer-events: none;
}

@media (max-width: 1000px) {
  .slides img {
    width: 100vw;
  }
}
.container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.contact-card, .map-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    flex: 1;
    min-width: 300px;
}

h2 {
    margin-top: 0;
    font-size: 20px;
    font-weight: bold;
}

.info-box {
    background: #f5f6f8;
    padding: 12px;
    border-radius: 8px;
    font-size: 14px;
    margin-top: 10px;
    color: #444;
}


.openbtn {
  font-size: 18px;
  padding: 10px 20px;
  margin: 20px;
  background: #333;
  color: #fff;
  border: none;
  cursor: pointer;
  border-radius: 6px;
}
.openbtn:hover {
  background: #444;
}


.sidebar {
  height: 100%;
  width: 0;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #111;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 60px;
  display: flex;
  flex-direction: row;
  z-index: 9999;
}
.sidebar a{
  text-decoration: none;
  color: #fff;
}
.nav-links button{
  background: none;
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
}

.sidebar .closebtn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 35px;
  color: #fff;
  cursor: pointer;
}


.catalog-list {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 220px;
}

.catalog-list li {
  padding: 15px;
  font-size: 16px;
  color: #eee;
  border-bottom: 1px solid #333;
  cursor: pointer;
  transition: background 0.3s;
}

.catalog-list li:hover {
  background: #333;
  color: #fff;
}


.preview {
  flex: 1;
  display: flex;
  flex-direction: column; 
  align-items: center;
  justify-content: flex-start;
  padding: 20px;
  color: #fff;
  text-align: center;
}

.preview img {
  max-width: 220px;
  max-height: 220px;
  display: none;
  margin-bottom: 15px;
  border-radius: 10px;

}
.nav-mobile {
  display: none;
}

.preview .info {
  display: none;
}

.preview .info h3 {
  margin: 5px 0;
  font-size: 18px;
  color: #fff;
}

.preview .info p {
  font-size: 14px;
  color: #ccc;
}

@media (max-width: 768px) {


  nav {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 8px 15px;
  }

  .header-text h1:nth-child(3) { 
    display: none;
  }

  .menu-toggle {
    display: block;
    font-size: 18px;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
  }


  nav > div[style] {
    display: none !important; 
  }

  .nav-right {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  #home{
    display: none;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background: #222;
    position: absolute;
    top: 55px;
    right: 10px;
    width: 200px;
    border-radius: 8px;
    padding: 10px;
    z-index: 1000;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    list-style: none;
    margin: 8px 0;
  }
  .nav_bottom{
    text-align: center;
  }
  .nav_bottom a{
    margin: 0 10px;
    font-size: 14px;
  }
  .nav-links a, 
  .nav-links button {
    color: #fff;
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 14px;
    width: 100%;
  }

   .slider {
    height: 300px; 
  }

  .slides img {
    height: 100%;
  }
   .nav-mobile {
    display: flex; 
    align-items: center;
    gap: 10px;
  }


  .sidebar {
    width: 0;
    max-width: 300px;
  }

  .footer-container {
    flex-direction: column;
    text-align: center;
    padding: 15px;
  }

  .footer-about img {
    width: 50px;
    margin-bottom: 5px;
  }

  .footer-about h2 {
    font-size: 18px;
  }

  .footer-about p,
  .footer-column p,
  .footer-column ul li a {
    font-size: 13px;
  }

  .footer-column {
    margin: 12px 0;
  }

  iframe {
    width: 100% !important;
    height: 180px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    font-size: 12px;
    gap: 6px;
  }
}
