
* {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #f7f7fa;
  color: #222;
  line-height: 2.6;
  font-size: 2.0rem;
}


header {
  background: linear-gradient(90deg, #4b6cb7 0%, #182848 100%);
  color: #ce6e14;
  box-shadow: 0 2px 8px rgba(207, 85, 85, 0.08);
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 5vw;
  flex-wrap: wrap;
}

#logo img {
  width: 150px;
  height: auto;
  border-radius: 50%;
  border: 2px solid #fff;
  background: #fff;
}

#text h1 {
  font-size: 2.2rem;
  letter-spacing: 2px;
  margin-left: 1rem;
  color: darkkhaki;
}

nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
  font-size: 1.5rem;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
  padding: 0.5rem 1rem;
  border-radius: 5px;
}

nav ul li a:hover {
  background: #fff;
  color: #182848;
}

#image-commune img {
  width: 100%;
  max-height: 550px;
  object-fit: cover;
  margin-bottom: 2rem;
  border-bottom: 6px solid #4b6cb7;
}


main {
  padding: 2rem 5vw;
}

.boxer {
  width: 40%;
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.5;
  color:rgb(238, 223, 8);
}


section {
  margin-bottom: 3rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(75,108,183,0.07);
  padding: 2rem;
}

h2 {
  color:rgb(238, 223, 8);
  margin-bottom: 1rem;
  font-size: 2.7rem;
  padding-left: 0.7rem;
}

ul {
  list-style: none;
}

.image-row {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.image-item {
  margin-top: 80px;
  flex-direction: row;
  gap: 100px;
  align-items: flex-start;
}

.lucas{
  color: black;
}


.image-item img {
  height: 500px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 0.7rem;

}

.image-item:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 4px 16px rgba(75,108,183,0.13);
}

.monument-list {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.monument-list li {
  text-align: center;
}

.monument-list img {
  width: 500px;
  height: 500px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #4b6cb7;
  margin-bottom: 0.5rem;
}

.video-row {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.video-block {
  background: #da6d15;
  border-radius: 10px;
  padding: 1rem;
  box-shadow: 0 1px 5px rgba(94, 110, 148, 0.05);
  margin-bottom: 1rem;
}

@media (max-width: 900px) {
  nav {
    flex-direction: column;
    gap: 1rem;
  }
  .image-row, .monument-list, .video-row {
    flex-direction: column;
    align-items: center;
  }
  .image-item, .video-block {
    width: 100%;
    max-width: 350px;
  }
}
