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

:root {
  --primary-color: #D4AF37; /* Matte Gold */
  --primary-hover: #F3E5AB; /* Lighter Gold */
  --bg-dark: #050505; /* Deep Charcoal/True Black */
  --bg-darker: #000000;
  --bg-card: #0a0a0a;
  --text-main: #EAEAEA;
  --text-muted: #888888;
  --border-color: rgba(212, 175, 55, 0.2);
  
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  
  --transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.7;
  overflow-x: hidden;
  font-weight: 300;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: #FFFFFF;
}

h1 { font-size: clamp(3rem, 5vw, 5rem); letter-spacing: -1px; }
h2 { font-size: clamp(2rem, 3vw, 3.5rem); margin-bottom: 1.5rem; font-weight: 400; }
h3 { font-size: 1.75rem; margin-bottom: 1rem; font-weight: 400; color: var(--primary-color); }

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}
a:hover { color: var(--primary-hover); }

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.section { padding: 8rem 0; }
.text-center { text-align: center; }

/* SVG Icons */
.icon {
  width: 24px;
  height: 24px;
  stroke: var(--primary-color);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}
.icon-large {
  width: 48px;
  height: 48px;
  stroke-width: 1;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 1rem 2.5rem;
  border-radius: 2px;
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: var(--transition);
  cursor: pointer;
  border: 1px solid var(--primary-color);
  font-size: 0.85rem;
}
.btn-primary {
  background: var(--primary-color);
  color: var(--bg-darker);
}
.btn-primary:hover {
  background: transparent;
  color: var(--primary-color);
}
.btn-outline {
  background: transparent;
  color: var(--primary-color);
}
.btn-outline:hover {
  background: var(--primary-color);
  color: var(--bg-darker);
}

/* Header & Nav */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition);
  background: transparent;
  padding: 2rem 0;
  border-bottom: 1px solid transparent;
}
header.scrolled {
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border-color);
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 400;
  color: #fff;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.logo span {
  color: var(--primary-color);
  font-style: italic;
}
.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav-links li a {
  color: var(--text-main);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
}
.nav-links li a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--primary-color);
  transition: var(--transition);
}
.nav-links li a:hover::after, .nav-links li a.active::after {
  width: 100%;
}
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 110%; /* Extra height for parallax */
  z-index: -2;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 100%);
  z-index: -1;
}
.hero-content {
  max-width: 700px;
}
.hero-subtitle {
  font-family: var(--font-body);
  color: var(--primary-color);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 5px;
  margin-bottom: 1.5rem;
  display: block;
}
.hero h1 {
  margin-bottom: 2rem;
  text-shadow: 2px 2px 20px rgba(0,0,0,0.8);
}
.hero p {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 3rem;
  font-weight: 300;
  max-width: 500px;
}
.hero-buttons {
  display: flex;
  gap: 1.5rem;
}

/* Luxury Cards / Features */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2px; /* For fine borders */
  background: var(--border-color); /* Creates 1px borders between items */
  border: 1px solid var(--border-color);
}
.feature-card {
  padding: 4rem 3rem;
  text-align: center;
  background: var(--bg-dark);
  transition: var(--transition);
}
.feature-card:hover {
  background: var(--bg-card);
}
.feature-icon-wrapper {
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
}
.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Menu Page Grid */
.menu-category-title {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}
.menu-category-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 1px;
  background: var(--primary-color);
  margin: 1rem auto 0;
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 4rem;
  margin-bottom: 6rem;
}
.menu-item {
  display: flex;
  gap: 1.5rem;
}
.menu-item-img {
  width: 100px;
  height: 100px;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--border-color);
}
.menu-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.menu-item:hover .menu-item-img img {
  transform: scale(1.1);
}
.menu-item-content {
  flex-grow: 1;
}
.menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.5rem;
  border-bottom: 1px dashed var(--border-color);
  padding-bottom: 0.5rem;
}
.menu-item-header h4 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: #fff;
  margin: 0;
}
.menu-item-price {
  font-family: var(--font-body);
  color: var(--primary-color);
  font-weight: 500;
}
.menu-item-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Image Showcase */
.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.showcase-img {
  overflow: hidden;
  position: relative;
  height: 600px;
}
.showcase-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Footer */
footer {
  background: var(--bg-darker);
  padding: 6rem 0 2rem;
  border-top: 1px solid var(--border-color);
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 4rem;
  margin-bottom: 4rem;
}
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary-color);
  margin-bottom: 2rem;
}
.footer-links {
  list-style: none;
}
.footer-links li { margin-bottom: 1rem; }
.footer-links li a { color: var(--text-muted); font-size: 0.95rem; }
.footer-links li a:hover { color: #fff; }
.social-icons {
  display: flex;
  gap: 1.5rem;
}
.social-icons a {
  color: var(--text-muted);
}
.social-icons a:hover {
  color: var(--primary-color);
}
.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* Pages Header */
.page-header {
  padding: 12rem 0 6rem;
  background: var(--bg-darker);
  text-align: center;
  border-bottom: 1px solid var(--border-color);
}
.breadcrumb {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
}
.breadcrumb a {
  color: var(--primary-color);
}

/* Contact / Hours / Reviews specifics */
.luxury-box {
  border: 1px solid var(--border-color);
  padding: 3rem;
  background: var(--bg-card);
}
.hours-table {
  width: 100%;
  border-collapse: collapse;
}
.hours-table td {
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.hours-table tr:last-child td {
  border-bottom: none;
}
.hours-table td:first-child {
  font-family: var(--font-heading);
  color: #fff;
  font-size: 1.2rem;
}
.hours-table td:last-child {
  text-align: right;
  color: var(--text-muted);
}

.form-group { margin-bottom: 2rem; }
.form-group label {
  display: block;
  margin-bottom: 0.8rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
}
.form-control {
  width: 100%;
  padding: 1rem;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border-color);
  color: #fff;
  font-family: var(--font-body);
  transition: var(--transition);
  border-radius: 0;
}
.form-control:focus {
  outline: none;
  border-bottom-color: var(--primary-color);
}
textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.review-card {
  text-align: center;
  padding: 3rem;
  border: 1px solid var(--border-color);
}
.review-card p {
  font-style: italic;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: #ddd;
  line-height: 1.8;
  margin: 1.5rem 0;
}

/* GSAP utility classes (initial states) */
.gsap-reveal { opacity: 0; visibility: hidden; }

/* Responsive */
@media (max-width: 992px) {
  .hero h1 { font-size: 3.5rem; }
  .showcase-grid, .menu-grid { grid-template-columns: 1fr; }
  .showcase-img { height: 400px; }
}
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: var(--bg-darker);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  }
  .nav-links.active { left: 0; }
  .mobile-menu-btn { display: block; }
  .hero h1 { font-size: 2.5rem; }
  .section { padding: 5rem 0; }
  .menu-item { flex-direction: column; text-align: center; align-items: center; }
  .menu-item-header { flex-direction: column; gap: 0.5rem; border: none; }
}
