/* Navigation Bar */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 2.5rem 1.2rem 2.5rem;
  background: transparent;
  color: var(--ivory);
  z-index: 1000;
}
.nav ul {
  display: flex;
  flex-direction: row;
  gap: 2.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: center;
  align-items: center;
}
.nav a {
  color: var(--ivory);
  text-decoration: none;
  font-size: 1.15rem;
  font-weight: 500;
  transition: color 0.2s;
  padding: 0.2em 0.5em;
  border-radius: 0.5em;
}
.nav a:hover, .nav a:focus {
  color: var(--amethyst);
  background: rgba(143,107,255,0.08);
}
.nav.scrolled {
  background: var(--ivory);
  color: var(--amethyst);
}
.logo {
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  letter-spacing: 0.05em;
}

/* Button */
.btn {
  display: inline-block;
  padding: .9rem 2rem;
  background: var(--ivory);
  color: var(--amethyst);
  border-radius: 40px;
  font-weight: 600;
  font-family: Inter, sans-serif;
  transition: all .2s;
  border: none;
  cursor: pointer;
}
.btn:hover, .btn:focus {
  background: var(--amethyst);
  color: var(--ivory);
  box-shadow: 0 0 8px var(--amethyst);
}

/* Card / Glassmorphism */
.card, .glass {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  border-radius: 2rem;
  box-shadow: 0 4px 32px rgba(0,0,0,0.12);
  padding: 2.2rem 2rem;
  margin-bottom: 2rem;
  color: var(--ivory);
  text-align: center;
}

/* Section reveal animation */
@keyframes sectionReveal {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: none; }
}
.section-reveal {
  animation: sectionReveal 0.4s ease;
}

/* Logo breathing */
@keyframes breathe {
  0%,100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}
.logo {
  animation: breathe 6s infinite;
}

/* Gallery styles */
.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.gallery img {
  border-radius: 0.375rem;
  max-width: 180px;
  height: auto;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}

/* Responsive card layout */
@media (max-width: 600px) {
  .card {
    padding: 1rem;
  }
  .gallery img {
    max-width: 100px;
  }
} 