html, body {
  height: 100%;
  margin: 0;
}

/* Carousel height */
.carousel,
.carousel-inner,
.carousel-item {
  height: 100vh;
}

/* Position overlay correctly */
.carousel-item {
  position: relative;
}

/* Constrain and center images */
.carousel-item img {
  height: 100%;
  width: 100%;
  object-fit: cover;      /* use 'contain' if you prefer no cropping */
  object-position: center center;
  display: block;

}

/* Overlay (optional) */
.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.25) 60%, rgba(0,0,0,0.35) 100%);
  pointer-events: none;
}

header {
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.navbar .nav-link {
  color: #fff !important;
}

.navbar .nav-link.active {
  font-weight: 700;
}

:root {
  --brand-dark: #0e0b0a;
  --brand-accent: #f4b41a;
  --brand-muted: #6c757d;
  --overlay: rgba(10, 7, 6, 0.65);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", system-ui, -apple-system, sans-serif;
  color: var(--brand-dark);
  background-color: #f8f7f5;
}

.brand {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
}

.glassy-nav {
  backdrop-filter: blur(14px);
  background: rgba(0, 0, 0, 0.35);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.navbar-nav .nav-link {
  color: #f7f7f7;
  font-weight: 500;
  transition: color 0.2s ease, opacity 0.2s ease;
}
.navbar-nav .nav-link:hover {
  color: var(--brand-accent);
  opacity: 0.9;
}

.hero {
  position: relative;
  height: 90vh;
  min-height: 520px;
  overflow: hidden;
}

.hero .carousel,
.hero .carousel-inner,
.hero .carousel-item {
  height: 100%;
}

.hero .carousel-item img {
  filter: brightness(0.85);
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
      135deg,
      rgba(0, 0, 0, 0.65) 0%,
      rgba(0, 0, 0, 0.35) 40%,
      rgba(0, 0, 0, 0.65) 100%
    ),
    linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.75) 100%);
  z-index: 1;
}

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-content: center;
  padding: 0 1.5rem;
}

.hero .carousel-control-prev-icon,
.hero .carousel-control-next-icon {
  filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.5));
}

.eyebrow {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
  opacity: 0.85;
}

.section-title {
  font-family: "Playfair Display", serif;
  letter-spacing: 0.01em;
}

.letterspace-sm {
  letter-spacing: 0.12em;
}

.hero-heading h1 {
  font-family: "Playfair Display", serif;
}

.hero-logo {
  height: 64px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.img-card img {
  display: block;
  transition: transform 0.8s ease, filter 0.6s ease;
}
.img-card:hover img {
  transform: scale(1.03);
  filter: saturate(1.05);
}

.badge {
  border-radius: 999px;
  letter-spacing: 0.01em;
}

.btn-warning {
  background-color: var(--brand-accent);
  border-color: var(--brand-accent);
  color: #20160e;
}
.btn-warning:hover {
  background-color: #f3ad05;
  border-color: #f3ad05;
}

.btn-outline-light {
  border-width: 1.5px;
  color: #fff;
}
.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

@media (max-width: 767.98px) {
  .hero {
    height: 75vh;
  }
  .hero-content h1 {
    font-size: 2.25rem;
  }
  .hero-content .lead {
    font-size: 1rem;
  }
  .hero-logo {
    height: 52px;
  }
}