/* ===== Reset & Base ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth
}

body {
  font-family: 'Futura', 'Helvetica Neue', Arial, sans-serif;
  color: #fff;
  overflow-x: hidden;
  background: #000
}

a {
  text-decoration: none;
  color: inherit
}

img {
  display: block;
  max-width: 100%;
  height: auto
}

/* ===== Custom Fonts ===== */
@font-face {
  font-family: 'Futura';
  src: url('assets/fonts/Futura-Book.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap
}

@font-face {
  font-family: 'Futura';
  src: url('assets/fonts/Futura-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap
}

@font-face {
  font-family: 'Futura';
  src: url('assets/fonts/Futura-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap
}

/* ===== Hero Section ===== */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 50px 50px 100px;
  overflow: hidden
}

/* Slideshow */
.slideshow {
  position: absolute;
  inset: 0;
  z-index: 0
}

.slideshow__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity .8s ease-in-out;
  will-change: opacity, transform;
  transform: scale(1)
}

.slideshow__slide.active {
  opacity: 1;
  animation: kenBurns 6s ease-in-out forwards
}

@keyframes kenBurns {
  0% {
    transform: scale(1)
  }

  100% {
    transform: scale(1.08)
  }
}

/* Overlay gradient */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(198deg, rgba(148, 48, 50, 0) 0%, #000 100%);
  pointer-events: none
}

/* Hero content */
.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column
}

.hero__logo {
  width: 190px;
  margin-bottom: 20px
}

.hero__title {
  font-size: 70px;
  font-weight: 400;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px
}

.hero__subtitle {
  font-size: 27px;
  color: #fff;
  font-weight: 400;
  margin-bottom: 20px
}

/* ===== Buttons Row ===== */
.buttons-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 15px;
  position: relative;
  z-index: 2
}

/* Gold-border pill button */
.btn-gold {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 40px;
  border-radius: 100px;
  font-family: 'Futura', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  background: transparent;
  border: none;
  cursor: pointer;
  overflow: hidden;
  z-index: 1;
  text-decoration: none;
  transition: transform .2s ease
}

.btn-gold:hover {
  transform: scale(1.05)
}

.btn-gold::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(90deg, #fedb37 0%, #fdb931 15%, #9f7928 30%, #8a6e2f 70%, #fdb931 85%, #fedb37 100%);
  border-radius: inherit;
  z-index: -1
}

.btn-gold::after {
  content: '';
  position: absolute;
  inset: 2px;
  background: #923032;
  border-radius: inherit;
  z-index: -1
}

.btn-gold svg {
  width: 18px;
  height: 18px;
  fill: #fff;
  flex-shrink: 0
}

/* ===== Modal Overlay ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, .8);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
  padding: 20px
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible
}

/* Modal Box */
.modal {
  background: #fff;
  color: #000;
  max-width: 800px;
  width: 100%;
  border-radius: 4px;
  box-shadow: 2px 8px 23px 3px rgba(0, 0, 0, .2);
  position: relative;
  transform: scale(.85);
  transition: transform .35s ease;
  overflow: hidden
}

.modal-overlay.open .modal {
  transform: scale(1)
}

.modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 10;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, .5);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: background .2s
}

.modal__close:hover {
  background: rgba(0, 0, 0, .8)
}

.modal__body {
  display: flex;
  flex-direction: row
}

/* Modal image */
.modal__img {
  width: 45%;
  flex-shrink: 0
}

.modal__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

/* Modal info */
.modal__info {
  flex: 1;
  padding: 20px 20px 20px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 15px
}

.modal__name {
  font-family: 'Poppins', 'Futura', sans-serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.3;
  color: #000
}

/* Icon box row */
.icon-box {
  display: flex;
  align-items: flex-start;
  gap: 15px
}

.icon-box__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #943032;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.icon-box__icon svg {
  width: 20px;
  height: 20px;
  fill: #FFE993
}

.icon-box__label {
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  color: #000
}

.icon-box__text {
  font-size: 15px;
  color: #333;
  margin-top: 2px
}

.icon-box__text a {
  color: #333;
  text-decoration: underline
}

/* Order Online button inside modal */
.btn-order {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 100px;
  font-family: 'Futura', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  background: #923032;
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 0 10px rgba(0, 0, 0, .98);
  margin-top: 20px;
  align-self: flex-start;
  transition: transform .2s
}

.btn-order:hover {
  transform: scale(1.05)
}

.btn-order svg {
  width: 20px;
  height: 20px;
  fill: #fff
}

/* ===== Menu Modal (PDF) ===== */
.modal--menu .modal__body {
  flex-direction: column
}

.modal--menu iframe {
  width: 100%;
  height: 70vh;
  border: none
}

/* ===== Responsive ===== */
@media(max-width:1024px) {
  .modal {
    max-width: 700px;
    border-radius: 10px
  }

  .modal__img img {
    border-radius: 10px
  }
}

@media(max-width:767px) {
  .hero {
    min-height: 100vh;
    justify-content: center;
    padding: 50px 20px
  }

  .hero__logo {
    width: 150px;
    margin-left: auto;
    margin-right: auto
  }

  .hero__title {
    font-size: 35px;
    text-align: center
  }

  .hero__subtitle {
    font-size: 20px;
    text-align: center
  }

  .buttons-row {
    flex-direction: column;
    justify-content: center;
    gap: 10px
  }

  .btn-gold {
    width: 100%;
    justify-content: center;
    font-size: 14px;
    padding: 15px 20px
  }

  .modal {
    max-width: 360px;
    border-radius: 10px
  }

  .modal__body {
    flex-direction: column
  }

  .modal__img {
    width: 100%
  }

  .modal__img img {
    height: 300px;
    object-fit: cover;
    border-radius: 10px
  }

  .modal__info {
    padding: 20px 0
  }

  .modal__name {
    font-size: 18px
  }

  .btn-order {
    font-size: 14px
  }

  .modal--menu iframe {
    height: 50vh
  }
}