/* Base & Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&display=swap');
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #fff;
  color: #222;
}

/* Header */
.site-header {
  background: #3E1F0D;  /* rich chocolate brown */
  color: #fff;
  text-align: center;
  padding: 2rem 1rem;
  font-family: 'Playfair Display', serif;
}
.site-header .tagline {
  color: #f5f5f5;
  font-style: italic;
  margin-top: 0.5rem;
}

/* Hero */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60vh;
  background: linear-gradient(135deg, #3E1F0D 50%, #ffffff 50%);
  text-align: center;
}
.hero-text {
  opacity: 0;
  animation: fadeInUp 1.2s ease-out forwards;
  animation-delay: 0.5s;
  font-family: 'Playfair Display', serif;
}
.hero-text h2 {
  margin: 0 0 1rem;
  font-size: 2.5rem;
  line-height: 1.2;
  color: #D4AF37; /* soft gold accent */
}
.hero-buttons .btn {
  display: inline-block;
  margin: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: bold;
  text-decoration: none;
  transition: transform 0.2s ease;
  font-family: 'Playfair Display', serif;
}
.btn-cta {
  background: #D4AF37; /* soft gold accent */
  color: #3E1F0D;
}
.btn-cta:hover {
  transform: scale(1.05);
}
.btn-secondary {
  background: #333;
  color: #fff;
}
.btn-secondary:hover {
  transform: scale(1.05);
}

/* Creative Showcase */
.creative-showcase {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  padding: 2rem 1rem;
}
.creative-item {
  flex: 1 1 200px;
  max-width: 300px;
  position: relative;
  transition: transform 0.3s ease;
}
.creative-item img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transform: rotate(var(--rotate, 0deg));
}
.creative-item:hover {
  transform: scale(1.08) rotate(0deg);
  z-index: 2;
}
/* Random rotations for a dynamic feel */
.creative-item:nth-child(1) img { --rotate: -2deg; }
.creative-item:nth-child(2) img { --rotate: 3deg; }
.creative-item:nth-child(3) img { --rotate: -4deg; }
.creative-item:nth-child(4) img { --rotate: 2deg; }

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.85);
  display: flex;
  align-items: center;
  justify-content: 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); }

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive tweaks */
@media (max-width: 600px) {
  .hero-text h2 { font-size: 2rem; }
}
