/* Global Styles */
:root {
  --sand: #e8d9c5;
  --charcoal: #2e2e2e;
  --terracotta: #fbaf37;
  --white: #ffffff;
}

body {
  font-family: "Inter", sans-serif;
  margin: 0;
  padding: 0;
  color: var(--charcoal);
}

a {
  text-decoration: none;
}

h1,
h2,
h3 {
  font-family: "Playfair Display", serif;
}

/* Floating Header */
.floating-header {
  position: fixed;
  inset: 1rem 10rem auto 10rem;
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  padding: 0.5rem 3rem;
  border-radius: 50px;
  z-index: 1000;
  transition: all 0.3s ease;
}

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

.logo img {
  height: 3rem;
  width: auto;
}

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

.nav-links a {
  color: var(--charcoal);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
}

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

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

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

.btn-order {
  background: var(--terracotta);
  color: #212121;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-order:hover {
  background: var(--charcoal);
  transform: translateY(-2px);
}

/* Mobile Menu Toggle */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--charcoal);
  cursor: pointer;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  background: var(--white);
  flex-direction: column;
  padding: 1rem;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  z-index: 999;
}

.mobile-menu a {
  padding: 1rem;
  border-bottom: 1px solid #eee;
  text-decoration: none;
  color: var(--charcoal);
}

.btn-order-mobile {
  background: var(--terracotta);
  color: #212121 !important;
  text-align: center;
  margin-top: 1rem;
  border-radius: 4px;
}

/* Header Scroll Effect */
.floating-header.scrolled {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(5px);
}

/* Responsive */
@media (max-width: 1100px) {
  .floating-header {
    left: 2rem;
    right: 2rem;
    padding-right: 1rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .btn-order {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

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

/* Hero Section */
.hero {
  position: relative;
  height: 90svh;
  overflow: hidden;
  background-color: black;
}

.hero-slider .slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slider .slide.active {
  opacity: 0.6;
}

.hero-content {
  position: absolute;
  height: 100%;
  right: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
}

.hero-content h1 {
  font-size: 4rem;
  margin-bottom: 0.5rem;
}

.tagline {
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.btn-primary {
  background: var(--terracotta);
  color: #212121;
  padding: 12px 24px;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: var(--white);
  transform: translateY(-3px);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  padding: 12px 24px;
  border: 1px solid var(--white);
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

.menu-cta .btn-secondary {
  outline: 1px solid var(--terracotta);
  color: var(--terracotta);
}

.menu-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

/* Menu Categories Grid */
.menu-categories {
  padding: 2rem 4rem 4rem;
  text-align: center;
  background-color: var(--white);
}

.menu-categories h2 {
  font-size: 3rem;
  margin-bottom: 2rem;
  color: var(--terracotta);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.category-card {
  position: relative;
  height: 250px;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.category-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
  transition: transform 0.5s ease;
}

.category-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2;
  transition: background 0.3s ease;
}

.category-card h3 {
  position: relative;
  z-index: 3;
  color: var(--white);
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.category-card p {
  position: relative;
  z-index: 3;
  color: var(--sand);
  font-style: italic;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Hover Effects */
.category-card:hover {
  transform: translateY(-5px);
}

.category-card:hover .category-overlay {
  background: rgba(0, 0, 0, 0.6);
}

.category-card:hover .category-image {
  transform: scale(1.05);
}

/* Responsive Grid */
@media (max-width: 900px) {
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .category-card {
    height: 200px;
  }
}

.about-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-subtitle {
  color: var(--primary);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.section-title {
  color: var(--dark);
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.section-description {
  max-width: 700px;
  margin: 0 auto;
  color: #555;
  font-size: 18px;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-text {
  padding-right: 20px;
}

.about-text h3 {
  font-size: 28px;
  color: var(--dark);
  margin-bottom: 20px;
  font-weight: 600;
}

.about-text p {
  margin-bottom: 20px;
  color: #555;
  font-size: 16px;
}

.signature {
  margin-top: 30px;
  font-style: italic;
  font-weight: 500;
  color: var(--dark);
}

.about-images {
  position: relative;
  height: 500px;
}

.main-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

.secondary-image {
  width: 60%;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
  border: 8px solid white;
}

.floating-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--primary);
  color: white;
  padding: 15px 25px;
  border-radius: 8px;
  font-weight: 600;
  z-index: 3;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-item {
  padding: 30px 20px;
  background: var(--light);
  border-radius: 8px;
  transition: transform 0.3s;
}

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

.stat-number {
  font-size: 42px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}

.stat-label {
  color: var(--dark);
  font-weight: 500;
}

@media (max-width: 992px) {
  .about-content {
    grid-template-columns: 1fr;
  }

  .about-text {
    padding-right: 0;
    order: 2;
  }

  .about-images {
    height: auto;
    order: 1;
    margin-bottom: 40px;
  }

  .main-image,
  .secondary-image {
    position: relative;
    width: 100%;
    height: 300px;
  }

  .secondary-image {
    display: none;
  }

  .floating-badge {
    left: 50%;
    transform: translateX(-50%);
    bottom: -15px;
  }

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

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

.animate {
  animation: fadeInUp 0.8s ease-out forwards;
}

.delay-1 {
  animation-delay: 0.2s;
}

.delay-2 {
  animation-delay: 0.4s;
}

.delay-3 {
  animation-delay: 0.6s;
}

/* Contact Section */
.contact {
  display: flex;
  padding: 4rem;
  background: var(--terracotta);
}

.contact-left,
.contact-right {
  flex: 1;
  padding: 2rem;
}

.map {
  height: 300px;
  margin-bottom: 2rem;
}

.map iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 8px;
}

.contact-info {
  margin-bottom: 2rem;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icons a {
  color: var(--charcoal);
  font-size: 1.5rem;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

input,
select {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: "Inter", sans-serif;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .gallery {
    grid-template-columns: 1fr;
    padding: 2rem;
  }

  .contact {
    flex-direction: column;
    padding: 2rem;
  }

  .hero {
    height: 70svh;
  }

  .hero-content h1 {
    font-size: 3rem;
  }

  .tagline {
    font-size: 1.5rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 600px) {
  .floating-header {
    left: 1rem;
    right: 1rem;
    padding-left: 1rem;
    margin-inline: auto;
    background-color: rgba(255, 255, 255, 0.9);
  }

  .menu-categories,
  .contact {
    padding-inline: 1rem;
  }

  .header-container {
    justify-content: center;
  }

  .header-cta {
    display: none;
  }
}
