/* Minimalistinis, bet žaismingas dizainas */

/* Bendri nustatymai */
body {
  font-family: 'Segoe UI', Tahoma, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f9f9f9;
  color: #333;
}

/* Navigacija */
nav {
  background-color: #ffffff;
  border-bottom: 2px solid #ddd;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  padding: 10px 0;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 20px;
}

nav ul li a {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 20px;
  transition: all 0.3s ease;
}

nav ul li a:hover,
nav ul li a.active {
  background-color: #ffd54f; /* žaismingas geltonas akcentas */
  color: #000;
}

/* Header (logotipas) */
header {
  text-align: center;
  padding: 20px 0;
}

header img {
  max-width: 150px;
}

/* Pagrindinis turinys */
main {
  max-width: 1000px;
  margin: 20px auto;
  background-color: #ffffff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

/* Antraštės */
h1, h2, h3, h4 {
  color: #222;
  margin-top: 0;
}

.h3 {
  font-size: 2em;
  color: #ff4081; /* žaismingas rožinis akcentas */
  text-align: center;
  margin-bottom: 20px;
}

/* Pastraipos */
main p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
}

/* Footer */
footer {
  background-color: #ffffff;
  border-top: 2px solid #ddd;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
}

footer p, footer h2, footer h3 {
  margin: 10px 0;
  color: #333;
}

/* Socialinių tinklų nuorodos */
footer a {
  color: #ff4081;
  text-decoration: none;
  margin: 0 5px;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #ffd54f;
}

/* Responsyvumas */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    gap: 10px;
  }

  main {
    margin: 10px;
    padding: 20px;
  }

  .footer-container {
    flex-direction: column;
  }
}

/* Footer patobulinimas */
footer {
  background-color: #ffffff;
  border-top: 2px solid #ddd;
  padding: 30px 20px;
  margin-top: 40px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-section {
  margin: 10px;
  text-align: center;
}

.footer-section h3 {
  margin-bottom: 10px;
  color: #333;
}

.footer-section p {
  margin: 5px 0;
}

.footer-section a {
  margin: 0 8px;
  font-size: 24px;
  color: #000;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #ffd54f;
}

/* Lankytinų vietų kortelių tinklelis */
.places-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.place-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  padding: 10px;
}

.place-card:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.place-card img {
  width: 100%;
  border-radius: 10px;
}

.place-card p {
  margin: 10px 0 0;
  font-weight: 500;
}
