html {
  position: relative;
  min-height: 100%;
}

:root {
  --brand-dark: #14151a;
  --brand-dark-alt: #1d1f26;
  --brand-accent: #c9a35c;
  --brand-cream: #f7f5f1;
}

body {
  margin-bottom: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #222;
  background-color: #fff;
}

h1, h2, h3, h4, h5, .brand-font {
  font-family: "Playfair Display", Georgia, serif;
}

a {
  color: var(--brand-dark);
}

a:hover {
  color: var(--brand-accent);
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem var(--brand-accent);
}

.btn-accent {
  background-color: var(--brand-accent);
  border-color: var(--brand-accent);
  color: #1a1a1a;
}

.btn-accent:hover {
  background-color: #b48f4c;
  border-color: #b48f4c;
  color: #1a1a1a;
}

.btn-outline-light:hover {
  color: #1a1a1a;
}

/* Navbar */
.navbar-brand-site {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.5rem;
  letter-spacing: 0.02em;
}

.site-navbar {
  background-color: var(--brand-dark);
}

.site-navbar .nav-link {
  color: rgba(255, 255, 255, 0.85);
}

.site-navbar .nav-link:hover,
.site-navbar .nav-link.active {
  color: #fff;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand-dark-alt) 60%, #2a2d38 100%);
  color: #fff;
  padding: 7rem 1rem 6rem;
  text-align: center;
}

.hero h1 {
  font-size: 3.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.hero p.lead {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.hero .btn {
  padding: 0.75rem 1.75rem;
  font-size: 1rem;
}

/* Feature cards */
.feature-card {
  border: none;
  border-radius: 0.5rem;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

/* Gallery grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}

.gallery-photo {
  position: relative;
  overflow: hidden;
  border-radius: 0.375rem;
  aspect-ratio: 1 / 1;
  background-color: #eee;
}

.gallery-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-photo:hover img {
  transform: scale(1.06);
}

.gallery-card {
  border: none;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

/* Section spacing */
.section {
  padding: 4rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 2.5rem;
}

/* Footer */
.site-footer {
  background-color: var(--brand-dark);
  color: rgba(255, 255, 255, 0.65);
  padding: 2.5rem 0;
  margin-top: 3rem;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.85);
}

.site-footer a:hover {
  color: var(--brand-accent);
}

/* Product / price badges */
.price-tag {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.25rem;
  color: var(--brand-dark);
}

.badge-type {
  background-color: var(--brand-cream);
  color: var(--brand-dark);
  border: 1px solid rgba(0, 0, 0, 0.08);
}
