/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #0b33e6;
  color: #fff;
  padding: 12px 30px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar .logo img {
  width: 40px;
  margin-right: 10px;
}

.navbar .logo {
  display: flex;
  align-items: center;
  font-size: 20px;
  font-weight: bold;
}

.navbar .menu a {
  color: #fff;
  text-decoration: none;
  margin-left: 20px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.navbar .menu a:hover {
  color: #f39c12;
}

/* Landscape Section */
.landscape {
  padding: 50px 20px;
  background: #f8f9fa;
  text-align: center;
}

.landscape h1 {
  margin-bottom: 40px;
  font-size: 32px;
  color: #222;
}

/* Vertical Single Column Images */
.landscape-row {
  display: flex;
  flex-direction: column; /* vertical stacking */
  align-items: center;
  gap: 30px; /* spacing between images */
}

.landscape-row img {
  width: 90%;          /* full width of container */
  max-width: 1000px;   /* landscape wide size */
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.landscape-row img:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Responsive */
@media screen and (max-width: 768px) {
  .landscape-row img {
    width: 95%;
  }
}

/* Footer */
footer {
  background: #0b33e6;
  color: white;
  text-align: center;
  padding: 20px;
}
.social {
  margin-top: 10px;
}
.social a {
  display: inline-block;
  margin: 0 10px;
  text-decoration: none;
  color: white;
  font-weight: bold;
  border: 1px solid white;
  padding: 6px 12px;
  border-radius: 20px;
  transition: 0.3s;
}
.social a:hover {
  background: #f3129d;
  border-color: #f3129d;
  color: black;
}