@font-face {
  font-family: 'FlowersOfNineties';
  src: url('../logo/font/FlowersOfNineties-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'FlowersOfNineties';
  src: url('../logo/font/FlowersOfNineties-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: 'FlowersOfNineties';
  src: url('../logo/font/FlowersOfNineties-MediumItalic.otf') format('opentype');
  font-weight: 500;
  font-style: italic;
}
@font-face {
  font-family: 'FlowersOfNineties';
  src: url('../logo/font/FlowersOfNineties-Bold.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: 'FlowersOfNineties';
  src: url('../logo/font/FlowersOfNineties-SmboldItalic.otf') format('opentype');
  font-weight: 600;
  font-style: italic;
}
@font-face {
  font-family: 'FlowersOfNineties';
  src: url('../logo/font/FlowersOfNineties-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
}

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

:root {
  --brown-dark: #2c2419;
  --gold:       #cba272;
  --white:      #ffffff;
}

html, body {
  width: 100%;
  height: 100%;
}

body {
  font-family: 'FlowersOfNineties', Georgia, serif;
  background: var(--brown-dark);
  color: var(--white);
  min-height: 100vh;
  overflow-x: hidden;
}

/* ── HERO ── */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

/* Background video */
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

/* Dark overlay so text is legible over the warm coffee photo */
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.25) 0%,
    rgba(0,0,0,0.10) 40%,
    rgba(0,0,0,0.40) 100%
  );
  z-index: 1;
}

/* Content sits above overlay */
.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  padding: 2rem 1.5rem;
}

/* ── LOGO ── */
.logo {
  width: clamp(200px, 30vw, 297px);
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.45));
  animation: fadeDown 0.9s ease both;
}

/* ── HEADLINE ── */
.headline {
  font-family: 'FlowersOfNineties', Georgia, serif;
  font-weight: 400;
  font-size: clamp(1.4rem, 3.5vw, 2.5rem);
  line-height: 1.35;
  color: #000000;
  text-shadow: none;
  animation: fadeUp 0.9s 0.2s ease both;
  letter-spacing: 0.01em;
}
.headline strong {
  font-weight: 700;
}

/* ── BUTTONS ── */
.buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  animation: fadeUp 0.9s 0.4s ease both;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: var(--brown-dark);
  color: var(--gold);
  border: none;
  border-radius: 79px;
  padding: 0.85rem 1.6rem;
  font-size: 1.35rem;
  line-height: 1;
  font-family: 'FlowersOfNineties', Georgia, serif;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, transform 0.18s;
  white-space: nowrap;
  min-width: 200px;
  justify-content: center;
}
.btn:hover {
  background: var(--gold);
  color: var(--brown-dark);
  transform: translateY(-2px);
}
.btn span {
  display: flex;
  align-items: center;
}

.btn img {
  width: 1.35em;
  height: 1.35em;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
  /* tint icon white */
  filter: brightness(0) invert(1);
  transition: filter 0.25s;
}
.btn:hover img {
  filter: brightness(0) saturate(100%);
}

/* ── ANIMATIONS ── */
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── RESPONSIVE ── */
@media (max-width: 480px) {
  .buttons { flex-direction: column; align-items: center; }
  .btn { min-width: 220px; }
}
