* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

nav{
  width: 100%;
  height: 60px;
  background-color: black;
  display: flex;
  align-items: center;
  justify-content: space-between;
  p{
    color: white;
    padding-left: 30px;
    font-family: cursive;
  }
}

.logo{
  width: 25%;
  display: flex;
  a{
    text-decoration: none;
  }
}

.language-selector {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  margin-right: 20px;
}

.language-selector label {
  font-weight: bold;
  color: white;
}

.language-selector select {
  padding: 5px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: #fff;
  cursor: pointer;
}

.language-selector select:focus {
  outline: none;
  border-color: #007bff;
}

.list{
  width: 50%;
}

.list ul {
  display: flex;
  align-items: center;
  gap: 30px;
}

.list ul li a {
  color: white;
  text-decoration: none;
  transition: 1s;
}

.list ul li a:hover{
  color: blue;
}

footer {
    background-color: black;
    color: #f1f1f1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

footer .footlogo img {
    width: 200px;
    margin-bottom: 20px;
}

footer .footer-info {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    margin-top: 20px;
}

footer .contact, footer .social-links {
    width: 45%;
}

footer .contact h3, footer .social-links h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
}

footer .contact ul {
    list-style: none;
    padding: 0;
    line-height: 1.8;
}

footer .contact ul li {
    font-size: 1em;
}

footer .contact a {
    color: #00aeef;
    text-decoration: none;
}

footer .social-links a {
    color: #fff;
    font-size: 1.2em;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

footer .social-links a:hover {
    color: #00aeef;
}

@media (max-width: 768px) {
    .footer-info {
        flex-direction: column;
        align-items: center;
    }

    .footer-info .contact, .footer-info .social-links {
        width: 100%;
        margin-bottom: 20px;
    }
}

.gallery-section {
    padding: 40px 20px;
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.gallery-section h1 {
    font-size: 32px;
    margin-bottom: 20px;
}

.gallery-section p {
    font-size: 18px;
    margin-bottom: 40px;
    color: #666;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    width: 30%;
}

.hamburger {
  display: none;
  font-size: 26px;
  color: white;
  padding-right: 20px;
  cursor: pointer;
  z-index: 1001;
}


.gallery-item1{
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    width: 60%;
}

.gallery-item1:hover{
    transform: scale(1.05);
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item .gallery-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.1);
}

@media (max-width: 768px) {

  nav {
    width: 100%;
    padding: 0 15px;
    position: relative; 
    z-index: 1000;
  }

  nav .list ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: rgba(0, 0, 0, 0.95);
    width: 100%;
    border-radius: 8px;
    z-index: 999;
  }

  nav .hamburger {
    display: block;
    font-size: 30px;
    color: white;
    cursor: pointer;
    z-index: 1001;
  }

  nav .list ul.show {
    display: flex;
  }

  nav .list ul li {
    margin: 10px 0;
    text-align: center;
  }

  .gallery-item1{
    width: 100%;
    display: none;
  }

  footer .footer-info {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  footer .contact, footer .social-links {
    width: 100%;
    margin-bottom: 20px;
    text-align: center;
  }

  footer .contact ul li {
    font-size: 1em;
  }

  footer .social-links a {
    font-size: 1.5em;
  }
}