:root {
  --color-bg: #1a0a0a;
  --color-surface: #2a1515;
  --color-accent: #d4c4a8;
  --color-text: #f5f5f5;
  --color-text-muted: #b0a0a0;
  --font-display: 'Playfair Display', serif;
  --font-body: 'Montserrat', sans-serif;
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

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

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

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Header & Nav */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(26, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(212, 196, 168, 0.1);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100px;
}

.logo-container img {
  height: 50px;
  filter: brightness(0) invert(1);
}

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

.nav-links a {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 500;
}

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

.nav-cta {
  background: var(--color-accent);
  color: var(--color-bg);
  padding: 0.8rem 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.8rem;
}

.nav-cta:hover {
  background: #fff;
  transform: translateY(-2px);
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('https://images.squarespace-cdn.com/content/v1/6748378549d17f6f47eafeb2/16ec8e47-9a6e-42b3-9d4b-cb39701b9e56/fides_homepage_food_lukerr_design.JPG?format=2500w');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero-content h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  margin-bottom: 1rem;
  animation: fadeInUp 1.2s ease-out;
}

.hero-content p {
  font-size: 1.2rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-accent);
  animation: fadeInUp 1.5s ease-out;
}

/* Grid Layouts */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
  align-items: center;
}

.split-section.reverse {
  direction: rtl;
}

.split-section.reverse .text-block {
  direction: ltr;
}

.image-block {
  height: 100%;
  overflow: hidden;
}

.image-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 2s ease;
}

.split-section:hover .image-block img {
  transform: scale(1.05);
}

.text-block {
  padding: 10% 15%;
}

.text-block h2 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--color-accent);
}

.text-block p {
  margin-bottom: 2rem;
  color: var(--color-text-muted);
  font-size: 1.1rem;
}

/* Reservation Widget Styling */
.booking-container {
  background: var(--color-surface);
  padding: 4rem 2rem;
  text-align: center;
  border-top: 1px solid rgba(212, 196, 168, 0.1);
}

.booking-container h2 {
  margin-bottom: 3rem;
}

/* Footer */
footer {
  background: #000;
  padding: 5rem 0 2rem;
  border-top: 1px solid rgba(212, 196, 168, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-brand img {
  height: 40px;
  margin-bottom: 1.5rem;
  filter: brightness(0) invert(1);
}

.footer-col h4 {
  color: var(--color-accent);
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.footer-col p, .footer-col li {
  color: var(--color-text-muted);
  margin-bottom: 0.8rem;
  font-size: 0.9rem;
  list-style: none;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  text-align: center;
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 992px) {
  .split-section {
    grid-template-columns: 1fr;
  }
  .nav-links {
    display: none;
  }
  .text-block {
    padding: 4rem 2rem;
  }
  .image-block {
    height: 400px;
  }
}

.btn-outline {
  display: inline-block;
  padding: 1rem 2rem;
  border: 1px solid var(--color-accent);
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
  font-weight: 600;
}

.btn-outline:hover {
  background: var(--color-accent);
  color: var(--color-bg);
}