@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400;0,500;1,400&display=swap');

/* ====================
   Base Styles
==================== */

body {
  margin: 0;
  font-family: "EB Garamond", Georgia, serif;
  color: #333;
  background: #ededed;
}

body:not(.home) {
  background: #dedede;
}

/* ====================
   Header & Navigation
==================== */

header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
  text-align: center;
  padding: 20px 0 16px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(4px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.site-title {
  font-size: 2.1rem;
  letter-spacing: 0.12em;
  margin-bottom: 8px;
}

nav a {
  margin: 0 14px;
  text-decoration: none;
  color: #333;
  font-size: 1.15rem;
}

nav a:hover {
  text-decoration: underline;
}

/* ====================
   Home Page (Refined Fade)
==================== */

body.home {
  overflow: hidden;
}

.home-hero {
  position: fixed;
  inset: 0;
  z-index: 0;
  background: #000;
}

.home-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;

  opacity: 0;
  transition: opacity 1.5s ease-in-out; /* shortened for clean crossfade */
  z-index: 0;
}

.home-slide.visible {
  opacity: 1;
  z-index: 1;
}

/* ====================
   Gallery Layout (NO FADE)
==================== */

.gallery-container {
  display: flex;
  justify-content: center;
  padding: 140px 20px 60px;
}

.slideshow {
  position: relative;
  background: #f7f7f7;
  padding: 24px;
}

.slideshow img {
  display: block;
  margin: auto;
  max-width: 90vw;
  max-height: 80vh;
}

/* ====================
   Captions & Counters
==================== */

.caption {
  text-align: center;
  margin-top: 14px;
  font-size: 1rem;
}

.counter {
  text-align: center;
  font-size: 0.85rem;
  margin-top: 6px;
  color: #666;
}

/* ====================
   Navigation Arrows
==================== */

.nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 2.2rem;
  cursor: pointer;
  color: #555;
  z-index: 5;
}

.nav:hover {
  color: #000;
}

.prev { left: 18px; }
.next { right: 18px; }

/* ====================
   Contact Page
==================== */

.contact-wrapper {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
}

.contact-image {
  width: 55vw;
  max-width: 620px;
  min-width: 420px;
  height: auto;
  display: block;
  margin: 0 auto 32px;
}

.contact-form {
  max-width: 420px;
  margin: 0 auto;
  text-align: center;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  font-family: inherit;
  font-size: 1rem;
  padding: 10px;
  margin-bottom: 12px;
  border: 1px solid #ccc;
}

.contact-form button {
  font-family: inherit;
  font-size: 1rem;
  padding: 8px 18px;
  background: none;
  border: 1px solid #555;
  cursor: pointer;
}

.contact-form button:hover {
  background: #ddd;
}

/* ====================
   Footer
==================== */

footer {
  text-align: center;
  font-size: 0.95rem;
  color: #555;
  padding: 36px 0 32px;
  background: #dedede;
}

/* ====================
   Mobile
==================== */

@media (max-width: 600px) {
  .site-title {
    font-size: 1.7rem;
  }

  nav a {
    margin: 6px 10px;
    font-size: 1.05rem;
  }

  .slideshow {
    padding: 16px;
  }
}
