@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

.open-sans {
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
    font-family: Open Sans, sans-serif;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #000;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1rem 2rem;
  z-index: 1000;
  height: 80px;
  line-height: 80px;
    font-family: Open Sans, Sans serif;
}

.header-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1.5rem;
}

header .logo img {
  max-height: 50px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header nav {
  position: relative;
}

header nav ul {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.5rem;
}

header nav ul li a {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
}

.menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}

main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #383E42;
  padding-top: 120px;
  padding-bottom: 120px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#hero {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  background-color: #383E42;
  color: #fff;
  min-height: 70vh;
  padding: 2rem;
}

#hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

#hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

#hero a {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #ff6600;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
}

#hero a:hover {
  background-color: #e65500;
}

footer {
  background-color: #000;
  color: #fff;
  text-align: center;
  padding: 1rem;
  width: 100%;
  position: relative; 
  bottom: 0;
  left: 0;
  margin-top: auto;
  z-index: 10;
}

#about {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 900px;
  margin: 2rem auto;
  text-align: center;
  gap: 1.5rem;
}

#about h1 {
  font-size: 2.5rem;
  color: orangered;
}

#about .text p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: azure;
  margin-bottom: 1rem;
}

#about img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  -o-object-fit: cover;
     object-fit: cover;
  max-height: 600px;
}

#about h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: orangered;
}

#about p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  line-height: 1.6;
  color: azure;
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 2rem;
  }

  #hero p {
    font-size: 1rem;
  }

  #hero a {
    padding: 0.6rem 1.2rem;
  }

  #about {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }

  #about img, #about .text {
    width: 100%;
  }

  .menu-toggle {
    display: block;
  }

  header nav ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    display: none;
    background-color: #000;
    position: absolute;
    top: 80px;
    right: 0;
    width: 200px;
    padding: 1rem;
    gap: 1rem;
  }

  header nav ul.show {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

#contact {
  background-color: #383E42;
  color: #fff;
  padding: 4rem 2rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.contact-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.contact-container h1 {
  color: orangered;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.contact-container p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.contact-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 2rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.contact-form, .contact-info {
  background-color: #2f3437;
  padding: 2rem;
  border-radius: 10px;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 45%;
          flex: 1 1 45%;
}

.contact-form label {
  display: block;
  text-align: left;
  margin-top: 1rem;
  color: #ddd;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem;
  margin-top: 0.5rem;
  border: none;
  border-radius: 5px;
  background-color: #444;
  color: #fff;
}

.contact-form button {
  margin-top: 1.5rem;
  padding: 0.75rem 1.5rem;
  background-color: orangered;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
}

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

.contact-info h2 {
  margin-bottom: 1rem;
  color: orangered;
}

.contact-info p {
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.contact-info a {
  color: #ff6600;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

#lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    z-index: 9999;
}

#lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 3rem;
    color: white;
    cursor: pointer;
}

.lightbox-img {
    cursor: -webkit-zoom-in;
    cursor: zoom-in;
}

@media (max-width: 768px) {
  .contact-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .contact-form, .contact-info {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
  }
}

#services {
  background-color: #383E42;
  color: #fff;
  padding: 4rem 2rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.services-container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.services-container h1 {
  color: orangered;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.services-container p {
  font-size: 1.1rem;
  margin-bottom: 3rem;
  color: #ddd;
}

.services-grid {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.service-card {
  background-color: #2f3437;
  padding: 2rem;
  border-radius: 10px;
  text-align: left;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  -webkit-transition: background-color 0.2s ease, -webkit-transform 0.2s ease;
    -o-transition: transform 0.2s ease, background-color 0.2s ease;
    transition: transform 0.2s ease, background-color 0.2s ease, -webkit-transform 0.2s ease;
}

.service-card:hover {
  -webkit-transform: translateY(-5px);
      -ms-transform: translateY(-5px);
          transform: translateY(-5px);
  background-color: #444;
}

.service-card h2 {
  color: orangered;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}

.service-card p {
  color: #ccc;
  line-height: 1.6;
  font-size: 1rem;
}

#gallery {
    background-color: #383E42;
    color: #fff;
    padding: 4rem 2rem;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
}

.gallery-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.gallery-container h1 {
    color: orangered;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.gallery-container p {
    color: #ddd;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.gallery-pair {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 2rem 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.gallery-item {
    background-color: #2f3437;
    padding: 1rem;
    border-radius: 10px;
}

.gallery-item span {
    display: block;
    font-weight: bold;
    color: orangered;
    margin-bottom: 0.5rem;
}

.gallery-item img {
    width: 100%;
    height: 300px;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 8px;
}

#about-images {
    background-color: #383E42;
    color: #fff;
    padding: 4rem 2rem;
}

#about-images .content-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}

#about-images .text {
    max-width: 500px;
    text-align: center;
}

#about-images .text h2 {
    color: orangered;
    font-size: 2rem;
    margin-bottom: 1rem;
}

#about-images .text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: azure;
}

#about-images .left-image,
#about-images .right-image {
    width: 250px;
    height: 250px;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 8px;
}

#container-photo {
    padding: 60px 20px;
    text-align: center;
    background: #383E42;
}

.container-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    background-color: #383E42;
}

.image-box img {
    max-width: 400px;
    width: 100%;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-box img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}


.gallery-section {
    padding: 60px 20px;
    text-align: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1100px;
    margin: 40px auto 0;
}

.gallery-grid img {
    width: 100%;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-grid img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
    #about-images .content-wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }

    #about-images .left-image,
    #about-images .right-image {
        width: 100%;
        max-width: 400px;
        height: auto;
    }
}


@media (max-width: 768px) {
    .gallery-pair {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }

    .gallery-item img {
        height: 220px;
    }
}

@media (max-width: 768px) {
  .services-container h1 {
    font-size: 2rem;
  }

  .service-card {
    text-align: center;
  }
}

@media (max-width: 768px) {
    .lang-switcher img {
        width: 24px;
    }
}
