:root {
  --color-bg: #13100d;
  --color-bg-alt: #1a1511;
  --color-text: #f4ebe1;
  --color-text-muted: #c4ae96;
  --color-accent: #e86a33;
  --color-accent-hover: #cc5621;
  --color-border: #332820;
  
  --font-main: 'Assistant', sans-serif;
  
  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h2 {
  font-size: 2.5rem;
  color: var(--color-text);
  text-align: center;
  margin-bottom: 3rem;
}

p {
  margin-bottom: 1.5rem;
  color: var(--color-text-muted);
}

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

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

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

.section {
  padding: 6rem 0;
}

.section-alt {
  background-color: var(--color-bg-alt);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  text-align: center;
  transition: var(--transition);
  font-size: 1rem;
}

.btn-primary {
  background-color: var(--color-accent);
  color: #fff;
}

.btn-primary:hover {
  background-color: var(--color-accent-hover);
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-text);
}

.btn-outline:hover {
  background-color: var(--color-text);
  color: var(--color-bg);
  transform: translateY(-2px);
}

/* Navbar */
header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 2rem 0;
  z-index: 100;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
}

.nav-phone {
  font-size: 1.1rem;
  font-weight: 500;
  margin-right: 15px;
  color: var(--color-accent);
}

.lang-switch a {
  font-weight: 600;
  opacity: 0.7;
}

.lang-switch a:hover {
  opacity: 1;
}

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

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(1.3);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(19, 16, 13, 0.1), rgba(19, 16, 13, 0.4));
  z-index: 1;
}

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

.hero h1 {
  font-size: 4rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.hero p {
  font-size: 2.2rem;
  font-weight: 500;
  margin-bottom: 2.5rem;
  color: var(--color-text);
  text-shadow: 1px 1px 8px rgba(0,0,0,0.8);
}

.hero-btns {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

/* Upcoming Events */
.upcoming-event {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 3rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.event-date {
  color: var(--color-accent);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

/* Experience Storytelling */
.experience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.experience-text p {
  font-size: 1.1rem;
}

.experience-img img {
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* Gallery */
/* What's Included */
.included-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  text-align: center;
}

.included-item {
  background: var(--color-bg);
  border-radius: 8px;
  border: 1px solid var(--color-border);
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

.included-item:hover {
  transform: translateY(-5px);
}

.included-img {
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
}

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

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

.included-content {
  padding: 1.5rem;
}

.included-item h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--color-accent);
}

/* About */
.about {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.about img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 2rem;
  border: 3px solid var(--color-accent);
}



/* Additional & Special */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.card {
  background: var(--color-bg-alt);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card-img {
  height: 200px;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-content {
  padding: 1.5rem;
  flex-grow: 1;
}

.card-content h3 {
  font-size: 1.2rem;
}

/* Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.review-card {
  background: var(--color-bg-alt);
  padding: 2.5rem 2rem;
  border-radius: 8px;
  border: 1px solid var(--color-border);
  transition: transform var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
}

.review-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  right: 20px;
  font-size: 5rem;
  color: rgba(232, 106, 51, 0.1);
  font-family: serif;
  line-height: 1;
}

html[dir="ltr"] .review-card::before {
  right: auto;
  left: 20px;
}

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

.review-card .stars {
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
  letter-spacing: 2px;
}

.review-text {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.review-author {
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0;
}

/* CTA Footer */
.cta-section {
  text-align: center;
  padding: 6rem 0;
  background: linear-gradient(rgba(19, 16, 13, 0.8), rgba(19, 16, 13, 0.95)), url('https://images.unsplash.com/photo-1504608524841-42fe6f032b4b?q=80&w=2000&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
}

.cta-section h2 {
  margin-bottom: 1.5rem;
}

.footer-bottom {
  text-align: center;
  padding: 2rem 0;
  background: #0d0b09;
  font-size: 0.9rem;
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(5px);
}

.modal.show {
  display: flex;
}

.modal-content {
  background-color: var(--color-bg-alt);
  padding: 3rem;
  border-radius: 8px;
  max-width: 500px;
  width: 90%;
  position: relative;
  border: 1px solid var(--color-border);
  box-shadow: 0 15px 40px rgba(0,0,0,0.5);
}

.close-modal {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 2rem;
  cursor: pointer;
  color: var(--color-text-muted);
  transition: var(--transition);
}

.close-modal:hover {
  color: var(--color-accent);
}

.modal-content h2 {
  margin-bottom: 0.5rem;
}

.modal-content p {
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
  text-align: right;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--color-text);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border-radius: 4px;
  border: 1px solid var(--color-border);
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
}

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

/* Booking Form Styles */
.booking-container {
  background-color: var(--color-bg-alt);
  padding: 3rem;
  border-radius: 8px;
  border: 1px solid var(--color-border);
  max-width: 800px;
  margin: 0 auto;
}

.booking-form {
  margin-top: 2rem;
}

.form-row {
  display: flex;
  gap: 1.5rem;
}

.form-row .form-group {
  flex: 1;
}

.diners-preferences {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-border);
}

.diner-card {
  background-color: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.3);
}

.diner-card h4 {
  margin-top: 0;
  margin-bottom: 1rem;
  color: var(--color-accent);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 0.5rem;
  font-size: 1.2rem;
}

.diner-card select {
  width: 100%;
  padding: 0.8rem;
  border-radius: 4px;
  border: 1px solid var(--color-border);
  background-color: var(--color-bg-alt);
  color: var(--color-text);
  font-family: inherit;
  font-size: 1rem;
}

/* Custom styles to make flatpickr match theme */
.flatpickr-calendar {
  background: var(--color-bg) !important;
  border: 1px solid var(--color-border) !important;
  box-shadow: 0 5px 15px rgba(0,0,0,0.5) !important;
}

.flatpickr-day.selected {
  background: var(--color-accent) !important;
  border-color: var(--color-accent) !important;
}

.booking-message {
  margin-top: 1rem;
  font-weight: bold;
  text-align: center;
}

.booking-message.success {
  color: #2e7d32;
}

.booking-message.error {
  color: #d32f2f;
}

/* Responsive */
@media (max-width: 768px) {
  /* Typography & Layout */
  .section {
    padding: 3.5rem 0;
  }
  
  .container {
    padding: 0 1.5rem;
  }

  h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  /* Header */
  .nav-container {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  
  .logo {
    font-size: 1.2rem;
    flex-direction: column;
    align-items: flex-start;
  }
  
  .nav-phone {
    font-size: 1rem;
    margin-right: 0;
  }

  /* Hero */
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
  }
  
  .hero-btns {
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 1rem;
  }
  
  .hero-btns .btn {
    width: auto;
    min-width: 200px;
  }

  /* Grids */
  .experience-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .experience-grid .experience-img {
    order: 2;
  }

  .experience-grid .experience-text {
    order: 1;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .cards-grid,
  .private-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  /* Modals & Containers */
  .modal-content {
    padding: 2rem 1.5rem;
    width: 95%;
  }
  
  .booking-container {
    padding: 2rem 1.5rem;
  }

  /* Forms */
  .form-row {
    flex-direction: column;
    gap: 0;
  }
  
  .form-row .form-group {
    width: 100%;
  }

  /* Components */
  .review-card {
    padding: 2rem 1.5rem;
  }
  
  .review-card::before {
    font-size: 4rem;
    top: 5px;
    right: 15px;
  }

  html[dir="ltr"] .review-card::before {
    right: auto;
    left: 15px;
  }

  .cta-section {
    padding: 4rem 0;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .hero h1 {
    font-size: 2.2rem;
  }
}

/* Mobile Carousels */
.mobile-carousel-card {
  display: none;
  background: var(--color-bg-alt);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0,0,0,0.3);
  text-align: center;
}

.mobile-carousel-card .card-img {
  height: 250px;
}

.mobile-carousel-card .carousel-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.5s ease;
}

.mobile-carousel-card .card-content {
  padding: 1.5rem;
}

.mobile-carousel-card p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  #private .cards-grid,
  #additional .cards-grid {
    display: none;
  }
  
  .mobile-carousel-card {
    display: block;
  }
}
