/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', Arial, sans-serif;
  background: #18181b;
  color: #f3f3f3;
  line-height: 1.6;
  min-height: 100vh;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 0 40px 0;
}

.section {
  padding: 60px 0 40px 0;
}

h1, h2, h3 {
  font-weight: 700;
  color: #fff;
}

h1 {
  font-size: 2.8rem;
  margin-bottom: 18px;
}

h2 {
  font-size: 2rem;
  margin-bottom: 24px;
}

h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

p, span, li {
  color: #d1d5db;
}

.btn {
  display: inline-block;
  padding: 12px 32px;
  border-radius: 30px;
  background: #22c55e;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 18px;
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary:hover {
  background: #16a34a;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(34,197,94,0.3);
}

.btn-secondary {
  background: transparent;
  border: 2px solid #22c55e;
  color: #22c55e;
}

.btn-secondary:hover {
  background: #22c55e;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(34,197,94,0.3);
}

/* Hero Section */
.hero-section {
  background: linear-gradient(120deg, #232526 0%, #18181b 100%);
  text-align: center;
  padding-top: 100px;
  padding-bottom: 100px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?auto=format&fit=crop&w=1200&q=80') center/cover;
  opacity: 0.1;
  z-index: 1;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.hero-section h1 {
  font-size: 3rem;
}

.hero-section p {
  font-size: 1.2rem;
  margin-bottom: 24px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Animation Classes */
.animate-fade-in {
  animation: fadeInUp 1s ease-out;
}

.animate-fade-in-delay {
  animation: fadeInUp 1s ease-out 0.3s both;
}

.animate-fade-in-delay-2 {
  animation: fadeInUp 1s ease-out 0.6s both;
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.animate-on-scroll.animate-in {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Section Titles */
.section-title {
  text-align: center;
  position: relative;
  margin-bottom: 40px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: #22c55e;
  border-radius: 2px;
}

/* Menu Section */
.menu-section {
  background: #1a1a1d;
}

.menu-categories {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.menu-category {
  padding: 12px 24px;
  background: #232526;
  border: 2px solid transparent;
  border-radius: 25px;
  color: #d1d5db;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.menu-category:hover,
.menu-category.active {
  background: #22c55e;
  color: #fff;
  border-color: #22c55e;
  transform: translateY(-2px);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.menu-item {
  background: #232526;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.menu-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.2);
}

.menu-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.menu-item:hover img {
  transform: scale(1.05);
}

.menu-content {
  padding: 20px;
}

.menu-content h3 {
  color: #fff;
  margin-bottom: 8px;
  font-size: 1.3rem;
}

.menu-content p {
  color: #a1a1aa;
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.price {
  color: #22c55e;
  font-weight: 700;
  font-size: 1.2rem;
}

/* About Section */
.about-section {
  text-align: center;
}

.about-content {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.about-text {
  flex: 1;
  text-align: left;
}

.about-text p {
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 25px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #d1d5db;
}

.feature i {
  color: #22c55e;
  font-size: 1.2rem;
}

.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Gallery Section */
.gallery-section {
  text-align: center;
  background: #1a1a1d;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
  margin-top: 32px;
}
.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  height: 160px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  transition: all 0.3s ease;
}
.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: all 0.3s ease;
  color: white;
  text-align: center;
  padding: 20px;
}
.gallery-overlay h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
}
.gallery-overlay p {
  font-size: 0.9rem;
  color: #ccc;
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-item:hover img {
  transform: scale(1.1);
}

/* Reviews Section */
.reviews-section {
  text-align: center;
}
.reviews-grid {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}
.review-item {
  background: #232526;
  border-radius: 14px;
  padding: 28px 22px;
  min-width: 220px;
  max-width: 320px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
  transition: all 0.3s ease;
  position: relative;
}
.review-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}
.review-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 15px;
  border: 3px solid #22c55e;
}
.review-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.review-stars {
  margin-bottom: 15px;
}
.review-stars i {
  color: #ffd700;
  font-size: 1rem;
  margin: 0 2px;
}
.review-item p {
  font-style: italic;
  margin-bottom: 12px;
}
.reviewer-name {
  color: #22c55e;
  font-weight: 700;
  font-size: 0.9rem;
}

/* Book Table Section */
.book-table-section {
  background: #1a1a1d;
  text-align: center;
}

.booking-content {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  align-items: flex-start;
}

.booking-form {
  flex: 1;
  background: #232526;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.form-group {
  margin-bottom: 20px;
}

.form-row {
  display: flex;
  gap: 15px;
}

.form-row .form-group {
  flex: 1;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  padding: 12px 15px;
  background: #1a1a1d;
  border: 1px solid #333;
  border-radius: 8px;
  color: #fff;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  outline: none;
  border-color: #22c55e;
}

.booking-form textarea {
  height: 100px;
  resize: vertical;
}

.booking-info {
  flex: 1;
  text-align: left;
}

.booking-info h3 {
  margin-bottom: 25px;
  color: #22c55e;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
  padding: 20px;
  background: #232526;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.info-item:hover {
  transform: translateX(10px);
}

.info-item i {
  color: #22c55e;
  font-size: 1.5rem;
  margin-top: 5px;
}

.info-item h4 {
  color: #fff;
  margin-bottom: 5px;
  font-size: 1.1rem;
}

.info-item p {
  color: #a1a1aa;
  font-size: 0.95rem;
}

/* Contact Section */
.contact-section {
  text-align: center;
}
.contact-content {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  flex: 1;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  color: #d1d5db;
  text-decoration: none;
  transition: all 0.3s ease;
}
.contact-item:hover {
  transform: translateX(10px);
  color: #22c55e;
}
.contact-image {
  flex: 1;
}
.contact-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
.whatsapp-contact {
  color: #22c55e;
  font-weight: 700;
  font-size: 1.1rem;
  transition: color 0.2s;
}
.whatsapp-contact:hover {
  color: #16a34a;
}

/* Hover Effects */
.hover-zoom {
  transition: transform 0.3s ease;
}
.hover-zoom:hover {
  transform: scale(1.05);
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #22c55e;
  color: #fff;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 4px 16px rgba(34,197,94,0.25);
  z-index: 1000;
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}
.whatsapp-float:hover {
  background: #16a34a;
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(34,197,94,0.4);
}

@keyframes pulse {
  0% {
    box-shadow: 0 4px 16px rgba(34,197,94,0.25);
  }
  50% {
    box-shadow: 0 4px 20px rgba(34,197,94,0.4);
  }
  100% {
    box-shadow: 0 4px 16px rgba(34,197,94,0.25);
  }
}

/* Navbar Styles */
header {
  width: 100%;
  background: #18181b;
  position: sticky;
  top: 0;
  z-index: 1001;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}
.navbar {
  width: 100%;
}
.nav-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 5%;
}
.nav-logo {
  color: #22c55e;
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 1px;
}
.nav-menu {
  display: flex;
  gap: 32px;
  list-style: none;
  transition: right 0.3s;
  align-items: center;
}
.nav-menu li a {
  color: #f3f3f3;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.2s;
  padding: 8px 0;
  position: relative;
}
.nav-menu li a:hover,
.nav-menu li a:focus {
  color: #22c55e;
}

.btn-book {
  background: #22c55e;
  color: #fff !important;
  padding: 10px 20px !important;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.btn-book:hover {
  background: #16a34a !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(34,197,94,0.3);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1100;
}
.nav-toggle .bar {
  height: 4px;
  width: 100%;
  background: #22c55e;
  margin: 4px 0;
  border-radius: 2px;
  transition: 0.3s;
}
.nav-toggle.open .bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.nav-toggle.open .bar:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open .bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 900px) {
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100vw;
    height: 100vh;
    width: 220px;
    background: #232526;
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 24px 24px 24px;
    gap: 24px;
    box-shadow: -2px 0 12px rgba(0,0,0,0.15);
    transition: right 0.3s;
  }
  .nav-menu.nav-menu-active {
    right: 0;
  }
  .nav-toggle {
    display: flex;
  }
  .btn-book {
    margin-top: 10px;
  }
}

@media (max-width: 600px) {
  .nav-container {
    padding: 12px 4%;
  }
  .nav-logo {
    font-size: 1.1rem;
  }
}

/* Footer Styles */
.footer {
  background: #232526;
  color: #d1d5db;
  padding: 40px 0 0 0;
  margin-top: 40px;
}
.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  padding: 0 5% 24px 5%;
  gap: 32px;
}
.footer-about {
  flex: 1 1 220px;
}
.footer-about h3 {
  color: #22c55e;
  margin-bottom: 10px;
}
.footer-social {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-top: 12px;
}
.footer-social a {
  color: #d1d5db;
  font-size: 1.4rem;
  transition: all 0.3s ease;
}
.footer-social a:hover {
  color: #22c55e;
  transform: translateY(-3px);
}
.footer-bottom {
  border-top: 1px solid #33353a;
  text-align: center;
  padding: 18px 0 12px 0;
  color: #888;
  font-size: 0.95rem;
}
@media (max-width: 700px) {
  .footer-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 0 6% 18px 6%;
  }
  .footer-about {
    margin-bottom: 8px;
  }
}

/* Responsive Styles */
@media (max-width: 900px) {
  .reviews-grid {
    flex-direction: column;
    align-items: center;
  }
  .about-content, .contact-content, .booking-content {
    flex-direction: column;
    text-align: center;
  }
  .contact-info {
    align-items: center;
  }
  .booking-info {
    text-align: center;
  }
  .form-row {
    flex-direction: column;
  }
  .menu-categories {
    gap: 10px;
  }
  .menu-category {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

@media (max-width: 600px) {
  .container {
    padding: 36px 0 24px 0;
  }
  .section {
    padding: 36px 0 24px 0;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.3rem;
  }
  .gallery-grid img {
    height: 100px;
  }
  .whatsapp-float {
    width: 44px;
    height: 44px;
    font-size: 1.4rem;
    right: 12px;
    bottom: 12px;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  .menu-grid {
    grid-template-columns: 1fr;
  }
}

html {
  scroll-behavior: smooth;
} 