@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Poppins:wght@300;400;500&display=swap');

:root {
  --primary-color: #00ff9d;
  --secondary-color: #00b4ff;
  --accent-color: #ff00c8;
  --background-light: #0a0a1a;
  --text-dark: #ffffff;
  --shadow-light: rgba(0, 255, 157, 0.2);
}

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

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  background-color: var(--background-light);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  color: var(--accent-color);
}

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

/* Header Styles */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  background: linear-gradient(90deg, rgba(0, 255, 157, 0.1), rgba(0, 180, 255, 0.1));
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 0 20px var(--shadow-light);
  border-bottom: 1px solid rgba(0, 255, 157, 0.3);
}

.logo h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--accent-color);
}

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

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

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

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

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

.reserve-btn {
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  color: white;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 30px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(0, 255, 157, 0.3);
}

.reserve-btn:hover {
  background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(0, 255, 157, 0.5);
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: radial-gradient(circle at top right, rgba(0, 255, 157, 0.1), transparent 40%),
              radial-gradient(circle at bottom left, rgba(0, 180, 255, 0.1), transparent 40%);
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 1rem;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: 1rem;
  text-shadow: 0 0 20px rgba(0, 255, 157, 0.5);
}

.hero p {
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  margin-bottom: 2rem;
  text-shadow: 0 0 10px rgba(0, 255, 157, 0.3);
}

.cta-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 30px;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 0 20px rgba(0, 255, 157, 0.3);
}

.cta-button:hover {
  background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
  transform: translateY(-3px);
  box-shadow: 0 5px 25px rgba(0, 255, 157, 0.5);
}

/* Section Titles */
.section-title {
  text-align: center;
  margin-bottom: 3rem;
  font-size: clamp(2rem, 5vw, 2.5rem);
}

/* Menu Section */
.menu {
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.menu-categories {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}\n
.category-btn {
  padding: 0.8rem 1.5rem;
  background: linear-gradient(45deg, rgba(0, 255, 157, 0.1), rgba(0, 180, 255, 0.1));
  border: 1px solid var(--primary-color);
  color: var(--accent-color);
  cursor: pointer;
  font-weight: 500;
  border-radius: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(0, 255, 157, 0.2);
}

.category-btn.active,
.category-btn:hover {
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  color: white;
  box-shadow: 0 0 20px rgba(0, 255, 157, 0.4);
}

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

.menu-item {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 5px 15px var(--shadow-light);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.menu-item:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 10px 30px rgba(0, 255, 157, 0.3);
}

.menu-item h3 {
  font-size: clamp(1.5rem, 4vw, 1.8rem);
  margin-bottom: 0.5rem;
}

.menu-item p {
  color: #ffffff;
  margin-bottom: 1rem;
}

.price {
  font-weight: bold;
  color: var(--secondary-color);
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  text-shadow: 0 0 10px rgba(0, 255, 157, 0.3);
}

/* About Section */
.about {
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.about-content {
  display: flex;
  align-items: center;
  gap: 3rem;
  position: relative;
}

.about-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 157, 0.05), transparent);
  z-index: -1;
}

.about-image {
  flex: 1;
  border-radius: 12px;
  width: 100%;
  height: auto;
}

.about-text {
  flex: 2;
}

.about-text p {
  margin-bottom: 1.5rem;
  font-size: clamp(1rem, 2vw, 1.25rem);
}

.about-text h3 {
  font-size: clamp(1.5rem, 4vw, 1.8rem);
  margin: 2rem 0 1rem;
}

/* Gallery Section */
.gallery {
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.gallery img {
  transition: all 0.3s ease;
  border-radius: 12px;
}

.gallery img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(0, 255, 157, 0.4);
}

.gallery img {
  width: 100%;
  border-radius: 12px;
  height: auto;
  object-fit: cover;
  box-shadow: 0 5px 15px var(--shadow-light);
}

/* Contact Section */
.contact {
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.contact-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

.map-container {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px var(--shadow-light);
}

.contact-form {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 5px 15px var(--shadow-light);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-form h3 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  margin-bottom: 1.5rem;
}

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

.contact-form input,
.contact-form select {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-family: 'Poppins', sans-serif;
}

/* Footer */
.footer {
  background: linear-gradient(90deg, rgba(255, 0, 200, 0.1), rgba(0, 255, 157, 0.1));
  color: white;
  padding: 2rem;
  text-align: center;
  border-top: 1px solid rgba(255, 0, 200, 0.3);
}

.social-icons {
  margin-top: 1rem;
}

.social-icons a {
  color: white;
  font-size: 1.5rem;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: var(--secondary-color);
}

/* Responsive Design */
@media (max-width: 1023px) {
  .navbar {
    flex-wrap: wrap;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
  }

  .about-content {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.25rem;
  }

  .menu-categories {
    flex-wrap: wrap;
  }

  .contact-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 1rem;
  }

  .logo h2 {
    font-size: 1.5rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .menu-item {
    padding: 1.5rem;
  }
}