@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Pacifico&display=swap');

:root {
  --primary-color: #1c1b18; /* Dark charcoal from logo */
  --secondary-color: #ebd8c3; /* Cream background from logo */
  --accent-color: #1c1b18; /* Using dark charcoal for CTAs as per logo palette */
  --accent-hover: #3d3935;
  --text-dark: #1c1b18;
  --text-light: #4a4642;
  --white: #ffffff;
  --border-color: #d5c2ab;
  
  --font-heading: 'Pacifico', cursive;
  --font-body: 'Outfit', sans-serif;
}

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

html, body {
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--secondary-color);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--primary-color);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography & Buttons */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 2.8rem;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--accent-color);
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-large {
  padding: 16px 40px;
  font-size: 1.1rem;
}

.btn-primary {
  background-color: var(--secondary-color);
  color: var(--primary-color);
}

.btn-primary:hover {
  background-color: var(--border-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(235, 216, 195, 0.4);
}

.btn-secondary {
  background-color: var(--primary-color);
  color: var(--white);
}

.btn-secondary:hover {
  background-color: #000000;
  transform: translateY(-2px);
}

.btn-outline {
  border-color: var(--primary-color);
  color: var(--primary-color);
  background: transparent;
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

.btn-outline-light {
  border-color: var(--white);
  color: var(--white);
  background: transparent;
}

.btn-outline-light:hover {
  background-color: var(--white);
  color: var(--primary-color);
}

.btn-text {
  color: var(--accent-color);
  padding: 0;
  background: none;
  border: none;
}

.btn-text:hover {
  color: var(--accent-hover);
  text-decoration: underline;
}

.center-btn {
  text-align: center;
  margin-top: 40px;
}

/* 1. Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 15px 0;
  transition: all 0.3s ease;
  background: linear-gradient(to bottom, rgba(0,0,0,0.8), rgba(0,0,0,0));
}

header.scrolled {
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  padding: 10px 0;
}

header.scrolled .nav-links a { color: var(--primary-color); }
header.scrolled .btn-outline { border-color: var(--primary-color); color: var(--primary-color); }

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
}

.logo img {
  height: 60px;
}

.nav-links ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  transition: color 0.3s ease;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

header.scrolled .nav-links a {
  text-shadow: none;
}

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

.header-ctas {
  display: flex;
  align-items: center;
  gap: 15px;
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: 10px;
}

.lang-switcher a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  opacity: 0.7;
  transition: opacity 0.3s, color 0.3s;
}

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

.lang-switcher a.active {
  opacity: 1;
  font-weight: 900;
  letter-spacing: 0.5px;
  border-bottom: 2px solid var(--white);
}

header.scrolled .lang-switcher a {
  color: var(--primary-color);
}

header.scrolled .lang-switcher a.active {
  border-bottom: 2px solid var(--accent-color);
}

.header-ctas .btn-outline {
  border-color: var(--white);
  color: var(--white);
}

header.scrolled .header-ctas .btn-outline {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

header.scrolled .header-ctas .btn-outline:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

.mobile-menu-btn {
  display: none;
  font-size: 1.5rem;
  color: var(--white);
  cursor: pointer;
}
header.scrolled .mobile-menu-btn { color: var(--primary-color); }

/* 2. Hero Section */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  background-image: url('images/hero.png');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0.8));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  padding: 0 20px;
  margin-top: 50px;
}

.hero h1 {
  color: var(--white);
  font-size: 4.5rem;
  line-height: 1.3;
  margin-bottom: 30px;
  animation: fadeInDown 1s ease;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.8);
}

.hero p {
  color: var(--white);
  font-size: 1.3rem;
  line-height: 1.6;
  font-weight: 500;
  margin-bottom: 45px;
  animation: fadeInUp 1s ease 0.3s both;
  text-shadow: 1px 1px 8px rgba(0,0,0,0.9);
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
  animation: fadeInUp 1s ease 0.6s both;
}

.hero-optional {
  display: flex;
  justify-content: center;
  gap: 30px;
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 500;
  animation: fadeInUp 1s ease 0.9s both;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.hero-optional span {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* 3. Quick Action Bar */
.quick-actions {
  padding: 60px 0 30px 0;
  position: relative;
  z-index: 10;
  background-color: var(--secondary-color);
}

.quick-action-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.action-card {
  background: var(--white);
  padding: 25px 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.action-card:hover {
  transform: translateY(-5px);
}

.action-card .icon {
  font-size: 2rem;
  color: var(--accent-color);
  margin-bottom: 15px;
}

.action-card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.action-card p {
  color: var(--text-light);
  margin-bottom: 20px;
}

/* 4. About */
.about {
  padding: 100px 0;
  background-color: var(--secondary-color);
}

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

.about-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.about-content h2 {
  font-size: 3rem;
  margin-bottom: 25px;
}

.about-content p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 20px;
}

.about-content .btn {
  margin-top: 20px;
}

/* 5. Menu Highlights */
.menu-highlights {
  padding: 100px 0;
  background-color: var(--white);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.category-title {
  font-size: 2rem;
  margin-bottom: 30px;
  color: var(--accent-color);
  border-bottom: 2px dashed var(--border-color);
  padding-bottom: 10px;
}

.menu-item {
  margin-bottom: 25px;
}

.menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 5px;
}

.menu-item-header h4 {
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-color);
  margin: 0;
  padding-right: 15px;
}

.price {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--accent-color);
  white-space: nowrap;
}

.menu-item-desc {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.4;
  margin: 0;
}

/* 6. Why Choose Us */
.why-choose-us {
  padding: 100px 0;
  background-color: var(--secondary-color);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.feature-item {
  padding: 20px;
}

.feature-item i {
  font-size: 3rem;
  color: var(--accent-color);
  margin-bottom: 20px;
}

.feature-item h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
}

.feature-item p {
  color: var(--text-light);
}

/* 7. Gallery */
.gallery {
  padding: 100px 0;
  background-color: var(--white);
}

.gallery-grid {
  column-count: 3;
  column-gap: 20px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  margin-bottom: 20px;
  break-inside: avoid;
}

.gallery-item.hidden {
  display: none;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

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

/* Lightbox Styles */
.lightbox {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.95);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox img {
  max-width: 80%;
  max-height: 85%;
  border-radius: 8px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.8);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.lightbox.active img {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: var(--white);
  font-size: 3rem;
  cursor: pointer;
  transition: color 0.3s;
  z-index: 2002;
}

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

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border: none;
  font-size: 3rem;
  padding: 10px 20px;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
  z-index: 2001;
  border-radius: 4px;
}

.lightbox-nav:hover {
  background: rgba(255,255,255,0.3);
  color: var(--accent-color);
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

/* 8. Reservation CTA */
.reservation-cta {
  position: relative;
  padding: 120px 0;
  background-image: url('images/hero.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  text-align: center;
  color: var(--white);
}

.cta-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-color: rgba(28, 27, 24, 0.85); 
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  color: var(--white);
  font-size: 3.5rem;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 1.3rem;
  margin-bottom: 40px;
  font-weight: 300;
}

/* 9. Online Ordering CTA */
.ordering-cta {
  padding: 100px 0;
  background-color: var(--secondary-color);
  overflow: hidden;
}

.ordering-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.ordering-content h2 {
  font-size: 3rem;
  margin-bottom: 25px;
}

.ordering-content p {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 35px;
}

.floating-image {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0px); }
}

/* 10. Reviews */
.reviews {
  padding: 100px 0;
  background-color: var(--white);
}

.carousel-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
}
.carousel-track-wrapper {
  overflow: hidden;
  border-radius: 12px;
  padding: 20px 0;
}
.carousel-track {
  display: flex;
  gap: 30px;
  transition: transform 0.5s ease-in-out;
}
.carousel-slide {
  flex: 0 0 calc(33.3333% - 20px);
  box-sizing: border-box;
}

@media (max-width: 1024px) {
  .carousel-slide {
    flex: 0 0 calc(50% - 15px);
  }
}

@media (max-width: 768px) {
  .carousel-slide {
    flex: 0 0 100%;
  }
}
.review-card {
  background: var(--secondary-color);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  text-align: left;
}
.review-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}
.reviewer-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}
.review-card .stars {
  color: #f39c12;
  font-size: 1rem;
}
.review-card h4 {
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 2px;
}
.review-card p {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-dark);
}

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--primary-color);
  color: var(--white);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 10;
  transition: background 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
}
.carousel-nav:hover {
  background: var(--accent-color);
}
.carousel-prev { left: 0; }
.carousel-next { right: 0; }



/* 11. Contact */
.contact {
  padding: 100px 0;
  background-color: var(--secondary-color);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 50px;
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.contact-info {
  padding: 50px;
}

.contact-info h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 25px;
}

.info-item i {
  font-size: 1.5rem;
  color: var(--accent-color);
  margin-top: 5px;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  min-height: 400px;
}

/* 12. Footer */
footer {
  background-color: var(--primary-color);
  color: #a09d9c;
  padding-top: 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand .footer-logo {
  height: 80px;
  margin-bottom: 20px;
}

.footer-brand p {
  margin-bottom: 25px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255,255,255,0.1);
  color: var(--white);
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  transform: translateY(-3px);
}

.footer-hours h3, .footer-contact h3 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.footer-contact a:not(.btn) {
  transition: color 0.3s ease;
}

.footer-contact a:not(.btn):hover {
  color: var(--white) !important;
}

.footer-bottom {
  background-color: #121110;
  padding: 20px 0;
  text-align: center;
}

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

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

/* Responsive */
@media (max-width: 1024px) {
  .hero h1 { font-size: 2.8rem; }
  .menu-grid, .features-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { column-count: 2; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .header-ctas .btn { display: none; }
  
  .nav-links.active {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--white);
    padding: 20px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.2);
  }
  
  .nav-links.active ul {
    flex-direction: column;
    gap: 15px;
  }
  
  .nav-links.active a {
    font-size: 1.2rem;
    padding: 10px;
    display: block;
    text-align: center;
    color: var(--primary-color) !important;
    text-shadow: none !important;
  }

  .mobile-menu-btn { display: block; }
  
  .quick-action-grid { grid-template-columns: 1fr; margin-top: -30px; }
  .about-grid, .ordering-grid, .contact-grid { grid-template-columns: 1fr; }
  
  .hero-content { margin-top: 120px; }
  .hero h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem !important; }
  h3 { font-size: 1.5rem !important; }
  .hero-buttons { flex-direction: column; }
  .hero-optional { flex-direction: column; gap: 10px; align-items: center; justify-content: center; text-align: center; }
  
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
  
  .carousel-nav { display: none; }
  .carousel-container { padding: 0; }
  
  .lightbox-nav {
      font-size: 2rem;
      padding: 5px 10px;
  }
}

@media (max-width: 480px) {
  .menu-grid, .features-grid { grid-template-columns: 1fr; }
  .gallery-grid { column-count: 1; }
  .review-card { flex: 0 0 100%; }
  .footer-grid { grid-template-columns: 1fr; }
}
