/* KPGC Ventures — custom styles (works with Tailwind CDN) */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Playfair+Display:wght@600;700&display=swap');

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
}

.font-display {
  font-family: 'Playfair Display', Georgia, serif;
}

.section-padding {
  padding: 4rem 1rem;
}

@media (min-width: 768px) {
  .section-padding {
    padding: 4rem 2rem;
  }
}

@media (min-width: 1024px) {
  .section-padding {
    padding: 6rem 4rem;
  }
}

.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.875rem;
  font-weight: 700;
  color: #0c2340;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .section-title {
    font-size: 3rem;
  }
}

.section-subtitle {
  margin-top: 0.5rem;
  font-size: 1.125rem;
  color: #6b7280;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.375rem;
  background-color: #c9a227;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #061528;
  transition: all 0.3s;
}

.btn-primary:hover {
  background-color: #e0bc4a;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.375rem;
  border: 2px solid white;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: white;
  transition: all 0.3s;
}

.btn-outline:hover {
  background-color: white;
  color: #0c2340;
}

.card-hover {
  transition: all 0.3s;
}

.card-hover:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1);
}

.header-scrolled {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
}

.nav-active {
  background-color: #c9a227;
  color: #061528;
}

.hero-bg {
  background-size: cover;
  background-position: center;
}

.page-hero {
  min-height: 45vh;
}

.home-hero {
  min-height: 100vh;
}

.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

#lightbox {
  display: none;
}

#lightbox.active {
  display: flex;
}
