@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600&display=swap');

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

:root {
  --gold: #c9a96e;
  --gold-light: #e4c98a;
  --bg-dark: #0d0d0d;
  --bg-section: #111111;
  --bg-card: #1a1a1a;
  --text-primary: #f5f0e8;
  --text-secondary: #a89f91;
  --text-muted: #6b6359;
  --accent: #c9a96e;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg-dark);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 3px;
}

/* ─── NAVBAR ─── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.5rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all .4s ease;
  background: transparent;
}

.navbar.scrolled {
  background: rgba(13, 13, 13, .92);
  backdrop-filter: blur(20px);
  padding: 1rem 4rem;
  box-shadow: 0 2px 30px rgba(0, 0, 0, .5);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.nav-logo-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-primary);
  text-decoration: none;
  font-size: .85rem;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 4px;
  transition: color .3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width .3s ease;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-reserve-btn {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: .7rem 1.8rem;
  font-size: .8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  font-family: var(--font-body);
  transition: all .3s;
}

.nav-reserve-btn:hover {
  background: var(--gold);
  color: var(--bg-dark);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
}

.hamburger span {
  width: 25px;
  height: 2px;
  background: var(--text-primary);
  transition: all .3s;
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  transition: transform 8s ease;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .8) 0%, rgba(0, 0, 0, .7) 40%, rgba(13, 13, 13, 1) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 2rem;
}

.hero-subtitle {
  font-size: .85rem;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-weight: 400;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp .8s ease .3s forwards;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp .8s ease .5s forwards;
}

.hero-title em {
  color: var(--gold);
  font-style: italic;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp .8s ease .7s forwards;
}

.hero-btns {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp .8s ease .9s forwards;
}

.btn-primary {
  padding: .9rem 2.5rem;
  background: var(--gold);
  color: var(--bg-dark);
  border: none;
  font-size: .85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 600;
  transition: all .3s;
  text-decoration: none;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201, 169, 110, .25);
}

.btn-outline {
  padding: .9rem 2.5rem;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .25);
  color: var(--text-primary);
  font-size: .85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  font-family: var(--font-body);
  transition: all .3s;
  text-decoration: none;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  animation: fadeUp .8s ease 1.2s forwards;
  opacity: 0;
}

.scroll-indicator span {
  font-size: .7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scrollPulse 2s ease infinite;
}

/* ─── SECTION BASICS ─── */
.section {
  padding: 7rem 4rem;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-tag {
  font-size: .75rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  margin-bottom: 1rem;
}

.section-line {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 1.5rem auto 0;
}

.section-desc {
  color: var(--text-secondary);
  max-width: 550px;
  margin: 1rem auto 0;
  font-size: .95rem;
}

/* ─── QUICK LINKS ─── */
.quick-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem 0;
}

.quick-link-card {
  border-radius: 12px;
  padding: 2.5rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--bg-dark);
  transition: transform 0.3s ease;
  min-height: 220px;
}

.quick-link-card:hover {
  transform: translateY(-5px);
}

.ql-reserve {
  background-color: #feebe8;
}

.ql-cards {
  background-color: #e5fbb8;
}

.ql-catering {
  background-color: #ffe8cc;
}

.ql-takeaway {
  background-color: #e6f8fd;
}

.quick-link-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  line-height: 1;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.quick-link-text {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* ─── ABOUT ─── */
.about {
  background: var(--bg-section);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.about-image {
  position: relative;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform .6s ease;
}

.about-image:hover img {
  transform: scale(1.05);
}

.about-image-badge {
  position: absolute;
  bottom: 2rem;
  right: -1rem;
  background: var(--gold);
  color: var(--bg-dark);
  padding: 1.5rem;
  text-align: center;
  font-family: var(--font-display);
}

.about-image-badge .number {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

.about-image-badge .label {
  font-size: .7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.about-text h3 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.about-text h3 em {
  color: var(--gold);
  font-style: italic;
}

.about-text p {
  color: var(--text-secondary);
  margin-bottom: 1.2rem;
  font-size: .95rem;
  line-height: 1.8;
}

.about-stats {
  display: flex;
  gap: 3rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.stat .stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
  font-weight: 700;
}

.stat .stat-label {
  font-size: .75rem;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: .3rem;
}

/* ─── MENU ─── */
.menu {
  background: var(--bg-dark);
}

.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.menu-tab {
  padding: .7rem 2rem;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .1);
  color: var(--text-secondary);
  font-size: .8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  font-family: var(--font-body);
  transition: all .3s;
}

.menu-tab.active,
.menu-tab:hover {
  background: var(--gold);
  color: var(--bg-dark);
  border-color: var(--gold);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.menu-card {
  display: flex;
  gap: 1.2rem;
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, .04);
  transition: all .3s;
  cursor: default;
}

.menu-card:hover {
  border-color: rgba(201, 169, 110, .2);
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, .3);
}

.menu-card-img {
  width: 90px;
  height: 90px;
  border-radius: 4px;
  object-fit: cover;
  flex-shrink: 0;
}

.menu-card-info {
  flex: 1;
}

.menu-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: .5rem;
}

.menu-card-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
}

.menu-card-price {
  color: var(--gold);
  font-weight: 600;
  font-size: 1rem;
  white-space: nowrap;
  margin-left: 1rem;
}

.menu-card-desc {
  font-size: .82rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ─── GALLERY ─── */
.gallery {
  background: var(--bg-section);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item:nth-child(1) {
  grid-row: span 2;
}

.gallery-item:nth-child(4) {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, .6));
  opacity: 0;
  transition: opacity .3s;
}

.gallery-item:hover::after {
  opacity: 1;
}

/* ─── RESERVATION ─── */
.reservation {
  background: var(--bg-dark);
  position: relative;
}

.reservation-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

.reservation-info h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.reservation-info p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  font-size: .95rem;
  line-height: 1.8;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  color: var(--text-secondary);
  font-size: .9rem;
}

.info-icon {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(201, 169, 110, .3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}

.reservation-form {
  background: var(--bg-card);
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, .06);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  font-size: .75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: .5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .85rem 1rem;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: .9rem;
  transition: border-color .3s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.form-group select option {
  background: var(--bg-card);
}

.form-submit {
  width: 100%;
  padding: 1rem;
  background: var(--gold);
  color: var(--bg-dark);
  border: none;
  font-size: .85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 600;
  transition: all .3s;
  margin-top: .5rem;
}

.form-submit:hover {
  background: var(--gold-light);
}

/* ─── TESTIMONIALS ─── */
.testimonials {
  background: var(--bg-section);
}

.testimonials-track {
  display: flex;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonial-card {
  min-width: 340px;
  flex: 1;
  padding: 2.5rem;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, .04);
  text-align: center;
  transition: all .4s;
}

.testimonial-card:hover {
  border-color: rgba(201, 169, 110, .2);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 3px;
  margin-bottom: 1.2rem;
}

.testimonial-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.testimonial-author {
  font-size: .8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}

/* ─── FOOTER ─── */
.footer {
  background: var(--bg-dark);
  padding: 5rem 4rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, .06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-brand .nav-logo {
  font-size: 2rem;
  display: inline-block;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: .9rem;
  line-height: 1.8;
  max-width: 320px;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: .8rem;
}

.footer-col a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: .85rem;
  transition: color .3s;
}

.footer-col a:hover {
  color: var(--gold);
}

.footer-bottom {
  max-width: 1200px;
  margin: 3rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, .06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .8rem;
  color: var(--text-muted);
}

.social-links {
  display: flex;
  gap: 1.2rem;
}

.social-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: .85rem;
  transition: color .3s;
}

.social-links a:hover {
  color: var(--gold);
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: .3;
    transform: scaleY(1);
  }

  50% {
    opacity: 1;
    transform: scaleY(1.2);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all .7s cubic-bezier(.25, .46, .45, .94);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── MOBILE NAV ─── */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(13, 13, 13, .97);
  backdrop-filter: blur(20px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu a {
  color: var(--text-primary);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 2rem;
  transition: color .3s;
}

.mobile-menu a:hover {
  color: var(--gold);
}

.mobile-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 2rem;
  cursor: pointer;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 992px) {
  .quick-links {
    grid-template-columns: repeat(2, 1fr);
  }

  .navbar {
    padding: 1.2rem 2rem;
  }

  .nav-links,
  .nav-reserve-btn {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .section {
    padding: 5rem 2rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-image img {
    height: 350px;
  }

  .reservation-wrapper {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 220px;
  }

  .gallery-item:nth-child(1) {
    grid-row: span 1;
  }

  .gallery-item:nth-child(4) {
    grid-column: span 1;
  }
}

@media (max-width: 600px) {
  .quick-links {
    grid-template-columns: 1fr;
  }

  .hero-btns {
    flex-direction: column;
    align-items: center;
  }

  .menu-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .about-stats {
    gap: 1.5rem;
  }

  .testimonials-track {
    flex-direction: column;
  }
}