* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Trebuchet MS", Arial, sans-serif;
  height: 100vh;
  display: flex;
}

.sidebar {
  width: 200px;
  background-color: #ffffff;
  color: black;
  padding: 20px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo {
  display: block;
  max-width: 100%;
  height: auto;
margin-left: 30px;
  margin-bottom: 20px;
}

.menu {
  list-style-type: none;
  padding: 30px;
margin-left: 30px;
  margin: 0;
  width: 100%;
}

.menu li {
  margin-bottom: 5px;
}

.menu a {
  display: block;
  font-size: 25px;
  padding: 10px 0;
  background-color: #ffffff;
  text-align: center;
  color: black;
  text-decoration: none;
  transition: background-color 0.3s;
}

.menu a:hover {
  background-color: #f5f5f5;
}

.content {
  flex: 1;
  background-color: #ffffff;
  overflow-y: auto;
  padding: 40px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-top: 1cm;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.gallery-grid img {
  width: 100%;
  height: auto;
  display: block;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  object-fit: cover;
 cursor: pointer; /
}

/* Lightbox */
.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.lightbox-overlay img {
  max-width: 90%;
  max-height: 90%;
  box-shadow: 0 0 0px #fff;
}

.lightbox-overlay.active {
  display: flex;
}

.close-lightbox {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 30px;
  color: white;
  cursor: pointer;
}
.content {
  margin-left: 220px;
  padding: 2rem;
  max-width: 800px;
}


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

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.6rem;
  border: 1px solid #ccc;
  font-size: 1rem;
  font-family: sans-serif;
}
.telephone {
  font-size: 18px;
  font-weight: bold;
  margin-top: 150px; 
margin-left: 0px;

  color: #222;
  display: block;
  white-space: normal;
}

.contact-form button {
  width: fit-content;
  padding: 0.6rem 1.2rem;
  font-size: 1rem;
  background-color: #2a6dfc;
  color: white;
  border: none;
  cursor: pointer;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 600px;
}


.contact-image {
  margin-top: 2rem;
}

.contact-image img {
  max-width: 100%;
  height: auto;
  border: 1px solid #ccc;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
