/* ===== Custom Properties ===== */
:root {
  --bg-dark: #030218;
  --gold: #E7C46B;
  --text-light: #FBF7F0;
  --bg-dark-lighter: #080625;
  --gold-dim: rgba(231, 196, 107, 0.3);
  --overlay: rgba(3, 2, 24, 0.65);
  --font-heading: 'Josefin Sans', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

ul {
  list-style: none;
}

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

/* ===== Navbar ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--bg-dark);
  border-bottom: 1px solid var(--gold-dim);
  transition: background 0.3s;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  margin: 0 1.5rem;
  flex-shrink: 0;
}

.nav-logo img {
  height: 85px;
  width: auto;
}

.nav-logo-wordmark {
  height: 80px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-left {
  flex: 1;
  justify-content: flex-end;
}

.nav-right {
  flex: 1;
  justify-content: flex-start;
}

.nav-links a {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-light);
  position: relative;
  padding: 0.25rem 0;
  transition: color 0.3s;
}

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

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

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

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

.nav-close {
  display: none;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--text-light);
  transition: transform 0.3s, opacity 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== Hero Section ===== */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--bg-dark);
}

.hero-poster {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: opacity 0.5s ease;
  display: none;
  background: var(--bg-dark);
}

.hero-poster.hidden {
  opacity: 0;
  pointer-events: none;
}

.hero-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--bg-dark) 0%, #0f0c30 50%, var(--bg-dark) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-top: 85px;
}

.hero-logo {
  width: 500px;
  max-width: 80vw;
  animation: logoFloat 4s ease-in-out infinite;
}

@keyframes logoFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: var(--font-heading);
  animation: fadeInUp 1s ease 1s both;
}

.hero-scroll-hint span {
  display: block;
  margin-top: 0.5rem;
  font-size: 1.2rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

/* ===== Intro Strip ===== */
.intro-strip {
  text-align: center;
  padding: 5rem 2rem;
  background: var(--bg-dark);
}

.intro-strip h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.intro-strip p {
  max-width: 650px;
  margin: 0 auto;
  font-size: 1.05rem;
  opacity: 0.9;
  line-height: 1.8;
}

/* ===== Page Banner ===== */
.page-banner {
  padding: 8rem 2rem 4rem;
  text-align: center;
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-dark-lighter) 100%);
  border-bottom: 2px solid var(--gold-dim);
}

.page-banner h1 {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
}

.page-banner p {
  margin-top: 0.75rem;
  font-size: 1.05rem;
  opacity: 0.8;
}

/* ===== Section Containers ===== */
.section {
  padding: 5rem 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.section-divider {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 2.5rem;
}

/* ===== About Page ===== */
.about-content {
  display: grid;
  gap: 3rem;
}

.about-block {
  text-align: center;
}

.about-block h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.about-block p {
  line-height: 1.9;
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto;
}

.about-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.about-hero .about-block {
  text-align: left;
}

.about-portrait {
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--gold-dim);
}

.about-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.about-portrait:hover img {
  transform: scale(1.03);
}

.about-logo {
  width: 280px;
  margin: 2rem auto 0;
  opacity: 1;
}

/* ===== Menu Page ===== */
.menu-category {
  margin-bottom: 3.5rem;
}

.menu-category h2 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--gold-dim);
  margin-bottom: 1.5rem;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.menu-card {
  background: var(--bg-dark-lighter);
  border: 1px solid var(--gold-dim);
  border-radius: 8px;
  padding: 1.5rem;
  transition: border-color 0.3s, transform 0.3s;
}

.menu-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}

.menu-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.menu-card .price {
  color: var(--gold);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.menu-card p {
  font-size: 0.9rem;
  opacity: 0.75;
  line-height: 1.6;
}

.menu-note {
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.6;
  font-style: italic;
  margin-top: 1rem;
}

/* ===== Location Page ===== */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table tr {
  border-bottom: 1px solid var(--gold-dim);
}

.hours-table td {
  padding: 0.85rem 0;
  font-size: 1rem;
}

.hours-table td:first-child {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
  font-size: 0.9rem;
}

.hours-table td:last-child {
  text-align: right;
  opacity: 0.9;
}

.map-container {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--gold-dim);
}

.map-container iframe {
  width: 100%;
  height: 350px;
  border: 0;
  filter: none;
}

.address-block {
  margin-top: 1.5rem;
}

.address-block p {
  margin-bottom: 0.5rem;
  opacity: 0.9;
}

/* ===== Contact Page ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-info h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  font-size: 1rem;
}

.contact-item svg {
  width: 20px;
  height: 20px;
  fill: var(--gold);
  flex-shrink: 0;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--gold-dim);
  border-radius: 50%;
  transition: background 0.3s, border-color 0.3s;
}

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

.social-links a:hover svg {
  fill: var(--bg-dark);
}

.social-links svg {
  width: 20px;
  height: 20px;
  fill: var(--gold);
  transition: fill 0.3s;
}

/* Contact Form */
.contact-form h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

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

.form-group label {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  color: var(--gold);
  font-family: var(--font-heading);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--bg-dark-lighter);
  border: 1px solid var(--gold-dim);
  border-radius: 6px;
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.3s;
}

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

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

.btn-submit {
  display: inline-block;
  padding: 0.75rem 2.5rem;
  background: var(--gold);
  color: var(--bg-dark);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: opacity 0.3s, transform 0.3s;
  font-weight: 600;
}

.btn-submit:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

/* ===== Gallery (Home) ===== */
.gallery {
  padding: 3rem 2rem;
  background: var(--bg-dark);
}

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

.gallery-item {
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--gold-dim);
  aspect-ratio: 3 / 4;
}

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


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

/* ===== About Images ===== */
.about-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 1rem 0;
}

.about-image-item {
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--gold-dim);
}

.about-image-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

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

/* ===== Reviews Section ===== */
.reviews {
  padding: 5rem 2rem;
  background: var(--bg-dark);
}

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

.review-card {
  background: var(--bg-dark-lighter);
  border: 1px solid var(--gold-dim);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s;
}

.review-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}

.review-stars {
  color: var(--gold);
  font-size: 1.25rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.review-text {
  font-size: 0.95rem;
  line-height: 1.8;
  opacity: 0.9;
  margin-bottom: 1.25rem;
  font-style: italic;
}

.review-name {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== Events Section ===== */
.events {
  padding: 5rem 2rem;
  background: var(--bg-dark);
}

.events-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  border: 1px solid var(--gold-dim);
  border-radius: 8px;
  padding: 3rem 2.5rem;
  background: var(--bg-dark-lighter);
}

.events-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  opacity: 0.9;
  margin-bottom: 2rem;
}

.events-cta {
  display: inline-block;
  padding: 0.75rem 2.5rem;
  background: var(--gold);
  color: var(--bg-dark);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 6px;
  font-weight: 600;
  transition: opacity 0.3s, transform 0.3s;
}

.events-cta:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

/* ===== Footer ===== */
.footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--gold-dim);
  padding: 2rem;
  text-align: center;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--gold-dim);
  border-radius: 50%;
  transition: background 0.3s, border-color 0.3s;
}

.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.footer-social a:hover svg {
  fill: var(--bg-dark);
}

.footer-social svg {
  width: 16px;
  height: 16px;
  fill: var(--gold);
  transition: fill 0.3s;
}

.footer p {
  font-size: 0.85rem;
  opacity: 0.6;
}

/* ===== Fade-in Animation ===== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .navbar .container {
    justify-content: space-between;
  }

  .hamburger {
    display: flex;
  }

  .nav-left {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 300px;
    height: 100vh;
    background: var(--bg-dark);
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    gap: 1.5rem;
    border-left: 1px solid var(--gold-dim);
    transition: right 0.3s;
    z-index: 999;
    flex: unset;
    justify-content: flex-start;
  }

  .nav-right {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 300px;
    height: 100vh;
    background: transparent;
    flex-direction: column;
    padding: 13.5rem 2rem 2rem;
    gap: 1.5rem;
    border-left: none;
    transition: right 0.3s;
    z-index: 1000;
    flex: unset;
    justify-content: flex-start;
  }

  .nav-left.open,
  .nav-right.open {
    right: 0;
  }

  .nav-close {
    display: block;
  }

  .nav-close-btn {
    background: none;
    border: none;
    color: var(--gold);
    font-size: 2rem;
    cursor: pointer;
    align-self: flex-end;
    position: absolute;
    top: 1.2rem;
    right: 1.5rem;
  }

  .nav-links a {
    font-size: 1.1rem;
  }

  .hero {
    height: 100vh;
  }

  .hero-poster {
    display: block;
  }

  .hero-logo {
    width: 340px;
  }

  .page-banner h1 {
    font-size: 2rem;
  }

  .location-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 3.5rem 1.5rem;
  }

  .intro-strip {
    padding: 3.5rem 1.5rem;
  }

  .intro-strip h2 {
    font-size: 1.6rem;
  }

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

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

  .events-content {
    padding: 2rem 1.5rem;
  }

  .about-hero {
    grid-template-columns: 1fr;
  }

  .about-hero .about-block {
    text-align: center;
  }

  .about-logo {
    margin: 2rem auto 0;
  }

  .about-images {
    grid-template-columns: 1fr;
  }

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