@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Playfair+Display:wght@700&display=swap');

body {
  font-family: 'Lato', Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: linear-gradient(135deg, #fff0f6 0%, #fce4ec 100%);
  color: #4b2e39;
  min-height: 100vh;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('https://www.transparenttextures.com/patterns/flowers.png');
  opacity: 0.08;
  z-index: 0;
  pointer-events: none;
}

nav {
  background: #f8bbd0;
  padding: 1.5em 0 1em 0;
  text-align: center;
  box-shadow: 0 2px 8px rgba(248,187,208,0.15);
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  position: relative;
  z-index: 1;
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 2em;
}

nav ul li {
  display: inline-block;
}

nav ul li a {
  text-decoration: none;
  color: #a14d6a;
  font-family: 'Playfair Display', serif;
  font-size: 1.2em;
  font-weight: 700;
  padding: 0.5em 1.2em;
  border-radius: 20px;
  transition: background 0.2s, color 0.2s;
}

nav ul li a:hover, nav ul li a.active {
  background: #fce4ec;
  color: #d81b60;
}

main {
  padding: 3em 1em 2em 1em;
  text-align: center;
  width: 100vw;
  max-width: 100vw;
  margin: 0;
  position: relative;
  z-index: 1;
  /* Default: cover for large screens */
  background: linear-gradient(rgba(255,240,246,0.65), rgba(252,228,236,0.65)), url('images/vt30.jpg') center center/cover no-repeat;
  border-radius: 0;
  box-shadow: none;
  overflow: hidden;
  min-height: 100vh;
}

@media (max-width: 900px) {
  main {
    /* On small screens, show full image */
    background: linear-gradient(rgba(255,240,246,0.65), rgba(252,228,236,0.65)), url('images/vt30.jpg') center center/contain no-repeat;
    min-height: 100vh;
  }
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  color: #a14d6a;
  margin-bottom: 0.5em;
}

h1 {
  font-size: 2.8em;
  margin-top: 0.5em;
}

p {
  font-size: 1.15em;
  color: #4b2e39;
  margin-bottom: 1.2em;
}

/* Gallery grid improvements */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2em;
  align-items: start;
  padding: 2em 0;
}

.gallery-grid img {
  width: 100%;
  max-width: 350px;
  border-radius: 18px;
  box-shadow: 0 4px 16px rgba(161,77,106,0.10);
  border: 3px solid #f8bbd0;
  background: #fff0f6;
  transition: transform 0.2s, box-shadow 0.2s;
}

.gallery-grid img:hover {
  transform: scale(1.04) rotate(-2deg);
  box-shadow: 0 8px 24px rgba(216,27,96,0.13);
}

@media (max-width: 600px) {
  nav ul {
    flex-direction: column;
    gap: 1em;
  }
  main {
    padding: 2em 0.5em 1em 0.5em;
  }
  h1 {
    font-size: 2em;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1.2em;
  }
}
