@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&display=swap');

body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  color: #222;
  background: #fff;
}

.site-header {
  background: #000;
  color: #fff;
  padding: 2rem;
  text-align: center;
  font-family: 'Playfair Display', serif;
}

.site-header .tagline {
  color: #bbb;
  font-style: italic;
  margin-top: 0.5rem;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60vh;
  background: linear-gradient(135deg, #000 50%, #A0522D 50%);
  color: #fff;
  text-align: center;
  font-family: 'Playfair Display', serif;
}

.hero-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.btn {
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: bold;
  display: inline-block;
  margin: 0.5rem;
  transition: transform 0.2s ease;
}

.btn-cta {
  background: #A0522D;
  color: #fff;
  font-family: 'Playfair Display', serif;
}

.btn-cta:hover {
  background: #8b3f1c;
  transform: scale(1.05);
}

.btn-secondary {
  background: #333;
  color: #fff;
  font-family: 'Playfair Display', serif;
}

.btn-secondary:hover {
  background: #111;
  transform: scale(1.05);
}

.showcase {
  padding: 2rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.showcase-img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.showcase-img:hover {
  transform: scale(1.1);
}

.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  display: flex;
  justify-content: center;
  align-items: center;
}

.lightbox.hidden {
  display: none;
}

.lightbox-img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 8px;
}

.close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.close:hover {
  transform: scale(1.2);
}

.hero-title {
  opacity: 0;
  animation: fadeInUp 1s ease-out forwards;
  animation-delay: 0.3s;
}
.hero-sub {
  opacity: 0;
  animation: fadeInUp 1s ease-out forwards;
  animation-delay: 0.8s;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
