:root {
  --primary: #F47621;
  /* Logo Orange */
  --primary-dark: #E66000;
  --secondary: #111111;
  /* Black */
  --accent: #FF9E4D;
  --white: #ffffff;
  --bg-light: #fafafa;
  --bg-dark: #0a0a0a;
  --text-main: #1a1a1a;
  --text-muted: #666666;
  --glass: rgba(255, 255, 255, 0.05);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Lato', sans-serif;
  background: var(--white);
  color: var(--text-main);
  overflow-x: hidden;
}

/* ── NAVBAR ── */
.navbar-custom {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: all .4s ease;
  background: transparent;
}

.navbar-custom.scrolled {
  background: rgba(26, 14, 0, .95);
  backdrop-filter: blur(12px);
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, .4);
}

.navbar-brand-custom {
  font-family: 'Dancing Script', cursive;
  font-size: 2rem;
  color: var(--accent) !important;
  text-decoration: none;
  letter-spacing: 1px;
  min-width: 270px;
}

.navbar-custom .nav-link {
  color: rgba(255, 255, 255, .85) !important;
  font-family: 'Lato', sans-serif;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 14px !important;
  transition: color .3s;
}

.navbar-custom .nav-link:hover {
  color: var(--accent) !important;
}

.btn-reservation {
  background: var(--primary);
  color: #fff !important;
  border-radius: 2px;
  padding: 10px 22px !important;
  letter-spacing: 1.5px;
  font-weight: 700;
  font-size: .78rem;
  text-transform: uppercase;
  transition: background .3s;
}

.btn-reservation:hover {
  background: var(--accent);
  color: var(--secondary) !important;
}

.navbar-toggler {
  border: 1px solid rgba(255, 255, 255, .4);
}

.navbar-toggler-icon {
  filter: invert(1);
}

/* ── HERO SLIDER ── */
.hero-slider {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.slide.active {
  opacity: 1;
}

.slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 14, 0, .65) 0%, rgba(44, 26, 14, .4) 100%);
}

.slide-1 {
  background-image: url('../images/hero-1.jpg');
}

.slide-2 {
  background-image: url('../images/hero-2.jpg');
}

.slide-3 {
  background-image: url('../images/hero-3.jpg');
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  z-index: 2;
}

.hero-label {
  font-family: 'Dancing Script', cursive;
  font-size: 1.6rem;
  color: var(--accent);
  margin-bottom: 10px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp .8s .3s forwards;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 700;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp .9s .5s forwards;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp .8s .7s forwards;
}

.btn-hero-primary {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 14px 36px;
  font-family: 'Lato', sans-serif;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 2px;
  text-decoration: none;
  transition: all .3s;
}

.btn-hero-primary:hover {
  background: var(--accent);
  color: var(--secondary);
  transform: translateY(-2px);
}

.btn-hero-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, .6);
  padding: 14px 36px;
  font-family: 'Lato', sans-serif;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 2px;
  text-decoration: none;
  transition: all .3s;
}

.btn-hero-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* slide nav dots */
.slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 5;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .4);
  cursor: pointer;
  transition: all .3s;
}

.dot.active {
  background: var(--primary);
  transform: scale(1.3);
}

/* slide arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  background: rgba(26, 14, 0, .4);
  border: 1px solid rgba(200, 146, 42, .4);
  color: var(--accent);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .3s;
  font-size: 1.1rem;
}

.slider-arrow:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.slider-arrow.prev {
  left: 24px;
}

.slider-arrow.next {
  right: 24px;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── SECTION HELPERS ── */
.section-label {
  font-family: 'Dancing Script', cursive;
  font-size: 1.3rem;
  color: var(--primary);
  display: block;
  margin-bottom: 6px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--secondary);
  line-height: 1.2;
}

.section-title.light {
  color: #fff;
}

.section-subtitle {
  font-size: .95rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 520px;
}

.primary-divider {
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  margin: 16px 0 24px;
}

/* ── INFO SECTIONS ── */
.info-section {
  background: var(--white);
}

.info-section:nth-of-type(even) {
  background: var(--bg-light);
}

.info-section .section-title {
  margin-bottom: 20px;
}

.info-section img {
  border: 8px solid rgba(255, 255, 255, .5);
}

.info-card {
  text-align: center;
  padding: 40px 30px;
  position: relative;
}

.info-icon {
  width: 72px;
  height: 72px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 1.6rem;
  color: #fff;
  transition: transform .3s;
}

.info-card:hover .info-icon {
  transform: scale(1.1) rotate(-5deg);
}

.info-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 12px;
}

.info-card p {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.btn-link-primary {
  color: var(--primary);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1.5px solid var(--primary);
  padding-bottom: 2px;
  transition: color .3s;
  display: inline-block;
  margin-top: 14px;
}

.btn-link-primary:hover {
  color: var(--primary-dark);
  border-color: var(--primary-dark);
}

/* ── FEATURES ── */
.features-section {
  background: var(--secondary);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

.features-section::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 40px solid rgba(200, 146, 42, .06);
}

.feature-item {
  display: flex;
  gap: 20px;
  margin-bottom: 36px;
}

.feature-icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  background: rgba(200, 146, 42, .12);
  border: 1px solid rgba(200, 146, 42, .3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.2rem;
}

.feature-text h5 {
  font-family: 'Playfair Display', serif;
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.feature-text p {
  color: rgba(255, 255, 255, .55);
  font-size: .88rem;
  line-height: 1.6;
}

/* ── RESERVATION BAND ── */
.reservation-band {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.reservation-band::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/reservation-bg.jpg') center/cover;
  opacity: .07;
}

.reservation-band .content {
  position: relative;
  z-index: 1;
}

.hours-card {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(200, 146, 42, .25);
  border-radius: 4px;
  padding: 24px 28px;
  margin-bottom: 16px;
}

.hours-card .day {
  color: rgba(255, 255, 255, .6);
  font-size: .82rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.hours-card .time {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--accent);
  letter-spacing: 3px;
}

.time-sep {
  color: var(--primary);
  margin: 0 8px;
}

/* ── TESTIMONIALS ── */
.testimonials-swiper {
  padding-bottom: 50px !important;
  margin: 0 -15px;
  padding-left: 15px !important;
  padding-right: 15px !important;
}

.testimonials-swiper .swiper-slide {
  height: auto;
}

.swiper-pagination-bullet {
  background: var(--primary-dark) !important;
  opacity: 0.3;
}

.swiper-pagination-bullet-active {
  background: var(--primary) !important;
  opacity: 1;
  transform: scale(1.2);
}

.testimonial-card {
  background: #fff;
  border-radius: 4px;
  padding: 36px 30px;
  box-shadow: 0 4px 30px rgba(44, 26, 14, .08);
  height: 100%;
  position: relative;
  transition: transform .3s;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  left: 24px;
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  line-height: 1;
  color: var(--primary);
  opacity: .3;
}

.testimonial-card h5 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--secondary);
  margin-bottom: 14px;
}

.testimonial-card p {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.author-name {
  font-weight: 700;
  font-size: .85rem;
  color: var(--secondary);
}

.author-date {
  font-size: .75rem;
  color: var(--text-muted);
}

/* ── STATS ── */
.stats-section {
  background: linear-gradient(135deg, var(--primary-dark), var(--secondary));
  padding: 70px 0;
}

.stat-item {
  text-align: center;
  padding: 20px;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--accent);
  display: block;
}

.stat-label {
  color: rgba(255, 255, 255, .6);
  font-size: .8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 6px;
}

.stat-divider {
  width: 1px;
  background: rgba(200, 146, 42, .3);
  align-self: stretch;
  margin: 20px 0;
}

/* ── APP SECTION ── */
.app-section {
  background: var(--white);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

.app-section::before {
  content: '';
  position: absolute;
  right: -100px;
  top: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 146, 42, .08) 0%, transparent 70%);
}

.app-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--secondary);
  color: #fff;
  padding: 12px 26px;
  border-radius: 4px;
  text-decoration: none;
  margin-right: 12px;
  margin-bottom: 12px;
  transition: background .3s;
}

.app-badge:hover {
  background: var(--primary-dark);
  color: #fff;
}

.app-badge i {
  font-size: 1.4rem;
  color: var(--accent);
}

.app-badge span {
  display: flex;
  flex-direction: column;
}

.app-badge .small-text {
  font-size: .65rem;
  opacity: .7;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.app-badge .big-text {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: .95rem;
}

.phone-mockup {
  width: 220px;
  background: var(--secondary);
  border-radius: 36px;
  padding: 12px;
  box-shadow: 0 30px 60px rgba(26, 14, 0, .3);
  margin: 0 auto;
  position: relative;
}

.phone-screen {
  background: linear-gradient(160deg, var(--primary-dark), var(--secondary));
  border-radius: 28px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  opacity: .8;
}

/* ── BLOG ── */
.blog-section {
  background: var(--bg-light);
  padding: 90px 0;
}

.blog-card {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(44, 26, 14, .07);
  transition: transform .3s, box-shadow .3s;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(44, 26, 14, .15);
}

.blog-img {
  height: 260px;
  background: var(--primary-dark);
  overflow: hidden;
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}

.blog-card:hover .blog-img img {
  transform: scale(1.06);
}

.blog-tag {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 2px;
  margin-bottom: 10px;
}

.blog-body {
  padding: 24px;
}

.blog-body h5 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--secondary);
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-body p {
  font-size: .85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.blog-meta {
  font-size: .75rem;
  color: var(--text-muted);
  margin-top: 14px;
}

/* ── NEWSLETTER ── */
.newsletter-section {
  background: var(--secondary);
  padding: 70px 0;
  text-align: center;
}

.newsletter-input {
  display: flex;
  max-width: 500px;
  margin: 30px auto 0;
  border: 1px solid rgba(200, 146, 42, .3);
  border-radius: 2px;
  overflow: hidden;
}

.newsletter-input input {
  flex: 1;
  background: rgba(255, 255, 255, .05);
  border: none;
  outline: none;
  padding: 14px 20px;
  color: #fff;
  font-size: .9rem;
}

.newsletter-input input::placeholder {
  color: rgba(255, 255, 255, .35);
}

.newsletter-input button {
  background: var(--primary);
  border: none;
  padding: 14px 28px;
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .3s;
}

.newsletter-input button:hover {
  background: var(--accent);
  color: var(--secondary);
}

/* ── FOOTER ── */
.footer-section {
  background: #100900;
  padding: 70px 0 30px;
}

.footer-logo {
  font-family: 'Dancing Script', cursive;
  font-size: 2rem;
  color: var(--accent);
  display: block;
  margin-bottom: 16px;
}

.footer-text {
  color: rgba(255, 255, 255, .45);
  font-size: .87rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-heading {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: #fff;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--primary);
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, .45);
  text-decoration: none;
  font-size: .87rem;
  transition: color .3s;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  color: rgba(255, 255, 255, .45);
  font-size: .87rem;
  margin-bottom: 12px;
  align-items: flex-start;
}

.footer-contact-item i {
  color: var(--primary);
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.footer-gallery-item {
  aspect-ratio: 1;
  background: var(--primary-dark);
  border-radius: 2px;
  overflow: hidden;
}

.footer-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s;
}

.footer-gallery-item:hover img {
  transform: scale(1.1);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .07);
  padding-top: 24px;
  margin-top: 50px;
  text-align: center;
  color: rgba(255, 255, 255, .3);
  font-size: .8rem;
}

/* ── RESERVATION MODAL ── */
.modal-content {
  background: var(--secondary);
  border: 1px solid rgba(200, 146, 42, .2);
  border-radius: 4px;
}

.modal-header {
  border-bottom: 1px solid rgba(200, 146, 42, .15);
}

.modal-title {
  font-family: 'Playfair Display', serif;
  color: #fff;
}

.btn-close {
  filter: invert(1);
}

.modal-form-label {
  color: rgba(255, 255, 255, .6);
  font-size: .8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.modal-form-control {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(200, 146, 42, .2);
  color: #fff;
  border-radius: 2px;
  padding: 10px 14px;
  width: 100%;
  font-size: .9rem;
}

.modal-form-control:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(255, 255, 255, .08);
}

.modal-form-control option {
  background: var(--secondary);
}

/* scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* back to top */
.back-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s, transform .3s;
  z-index: 999;
}

.back-top.show {
  opacity: 1;
  pointer-events: auto;
}

.back-top:hover {
  background: var(--accent);
  transform: translateY(-3px);
}

@media (max-width:768px) {
  .hero-title {
    font-size: 3rem;
  }

  .stat-divider {
    display: none;
  }

  .newsletter-input {
    flex-direction: column;
  }

  .newsletter-input button {
    border-radius: 0 0 2px 2px;
  }
}



/* menu tabs inline */
.menu-tab {
  background: transparent;
  border: 1.5px solid rgba(92, 61, 30, .25);
  color: var(--primary-dark);
  padding: 9px 24px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  transition: all .3s;
}

.menu-tab:hover,
.menu-tab.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.menu-tab-content {
  display: none;
}

.menu-tab-content.active {
  display: block;
}

.menu-item-card {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(44, 26, 14, .07);
  transition: transform .3s, box-shadow .3s;
}

.menu-item-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(44, 26, 14, .14);
}

.menu-item-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.menu-item-body {
  padding: 16px;
}

.menu-item-body h6 {
  font-family: 'Playfair Display', serif;
  font-size: .95rem;
  color: var(--secondary);
  margin-bottom: 4px;
}

.menu-price {
  color: var(--primary);
  font-weight: 700;
  font-size: .9rem;
  display: inline-block;
  margin-bottom: 6px;
}

.menu-item-body p {
  color: var(--text-muted);
  font-size: .8rem;
  line-height: 1.5;
  margin: 0;
}

.menuLogo {
  margin-top: 8px;
  position: absolute;
  height: 45px !important;
  width: auto !important;
  background: linear-gradient(to right, rgb(255 255 255 / 78%), rgb(255 255 255 / 50%));
  padding: 4px 5px 4px 8px;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
}