/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: system-ui, sans-serif;
  background-color: #f9f9f9;
  color: #333;
  line-height: 1.6;
  padding: 2rem;
}

.navbar {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.navbar a {
  text-decoration: none;
  color: #007acc;
  font-weight: bold;
}

.navbar a:hover {
  text-decoration: underline;
}

.hero {
  text-align: center;
  padding: 4rem 1rem;
  background: #e0f7fa;
  border-radius: 1rem;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.gallery-grid img {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
}

.gallery-grid img:hover {
  transform: scale(1.03);
}
.blog-post {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #ddd;
}

.blog-post h2 {
  margin-bottom: 0.5rem;
  color: #222;
}

.post-date {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1rem;
}
.about-vera {
  padding: 4rem 2rem;
  background: #f7f1e3;
  color: #2c2c54;
  font-family: 'Georgia', serif;
  text-align: center;
}

.about-vera h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #706fd3;
}

.about-vera p {
  max-width: 600px;
  margin: 0 auto 1.5rem;
  line-height: 1.6;
}

.about-cta {
  margin-top: 2rem;
}

.about-cta .button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  margin: 0 0.5rem;
  border: none;
  border-radius: 2rem;
  background: #706fd3;
  color: white;
  text-decoration: none;
  transition: background 0.3s;
}

.about-cta .button:hover {
  background: #474787;
}

.button-secondary {
  background: #b33939;
}
