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

:root {
  --primary-color: #ff6b9d;
  --secondary-color: #ffc6e0;
  --accent-color: #c44569;
  --dark-color: #2c2c2c;
  --light-color: #fff;
  --gray-color: #f8f9fa;
  --text-color: #333;
}

body {
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  line-height: 1.6;
  color: var(--text-color);
}

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

/* Navigation */
.navbar {
  background: var(--light-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 15px;
  cursor: pointer;
}

.logo img {
  height: 50px;
  width: auto;
  display: block;
  transition: transform 0.3s;
}

.logo-text {
  font-family: "Montserrat", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
}

.logo:hover img {
  transform: scale(1.05);
}

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

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

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

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--primary-color);
  transition: 0.3s;
}

/* Hero Section */
.hero {
  position: relative;
  color: var(--light-color);
  padding: 150px 20px 100px;
  text-align: center;
  margin-top: 70px;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-carousel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  background-size: cover;
  background-position: center;
}

.carousel-slide:nth-child(1) {
  background-image: url("https://images.unsplash.com/photo-1578985545062-69928b1d9587?q=80&w=2000");
}

.carousel-slide:nth-child(2) {
  background-image: url("https://images.unsplash.com/photo-1464349095431-e9a21285b5f3?q=80&w=2000");
}

.carousel-slide:nth-child(3) {
  background-image: url("https://images.unsplash.com/photo-1588195538326-c5b1e5b80d31?q=80&w=2000");
}

.carousel-slide.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(255, 107, 157, 0.85),
    rgba(196, 69, 105, 0.1)
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  font-family: "Montserrat", sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  animation: fadeInUp 1s ease;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  letter-spacing: -1px;
}

.tagline {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  animation: fadeInUp 1s ease 0.2s both;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.3);
}

.subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  animation: fadeInUp 1s ease 0.4s both;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.3);
}

.cta-button {
  display: inline-block;
  background: var(--light-color);
  color: var(--primary-color);
  padding: 18px 50px;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  animation: fadeInUp 1s ease 0.6s both, pulse 2s ease-in-out infinite;
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.3);
  border: 3px solid var(--light-color);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-button:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 40px rgba(255, 255, 255, 0.5);
  background: var(--primary-color);
  color: var(--light-color);
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.3);
  }
  50% {
    box-shadow: 0 8px 40px rgba(255, 255, 255, 0.6);
  }
}

.carousel-indicators {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 3;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.8);
}

.indicator:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: scale(1.2);
}

.indicator.active {
  background: var(--light-color);
  width: 30px;
  border-radius: 6px;
}

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

/* About Section */
.about {
  padding: 80px 20px;
  background: var(--light-color);
}

.about h2 {
  font-family: "Montserrat", sans-serif;
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 3rem;
  letter-spacing: -0.5px;
}

.about-content {
  max-width: 900px;
  margin: 0 auto;
}

.about-text p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  line-height: 1.8;
  text-align: center;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature {
  text-align: center;
  padding: 2rem;
  background: var(--gray-color);
  border-radius: 15px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.feature h3 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

/* Gallery Section */
.gallery {
  padding: 80px 20px;
  background: var(--gray-color);
}

.gallery h2 {
  font-family: "Montserrat", sans-serif;
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 3rem;
  letter-spacing: -0.5px;
}

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

.gallery-item {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

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

.gallery-placeholder {
  background: var(--light-color);
  padding: 80px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.gallery-placeholder span {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.gallery-placeholder p {
  font-size: 1.2rem;
  color: var(--text-color);
  font-weight: 500;
}

/* Menu Section */
.menu {
  padding: 80px 20px;
  background: var(--light-color);
}

.menu h2 {
  font-family: "Montserrat", sans-serif;
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 3rem;
  letter-spacing: -0.5px;
}

.menu-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}

.menu-category {
  background: var(--gray-color);
  padding: 2rem;
  border-radius: 15px;
}

.menu-category h3 {
  color: var(--primary-color);
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.menu-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.menu-item {
  background: var(--light-color);
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.menu-item h4 {
  color: var(--text-color);
  font-size: 1.2rem;
}

.price-list {
  margin-bottom: 1rem;
}

.price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #e0e0e0;
}

.price-item:last-child {
  border-bottom: none;
}

.size {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-color);
}

.price {
  color: var(--primary-color);
  font-weight: bold;
  font-size: 1.1rem;
}

.menu-item p {
  color: #666;
  line-height: 1.6;
}

.item-description {
  font-weight: 500;
  color: var(--text-color) !important;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  padding: 0.8rem 1rem;
  border-radius: 8px;
  border-left: 4px solid var(--primary-color);
  margin: 0.8rem 0 !important;
}

.item-description > ul {
  list-style: none;
  line-height: 35px;
}

.free-delivery-note {
  margin-top: 0.8rem;
  color: var(--primary-color) !important;
  font-weight: 600;
  font-size: 0.95rem;
}

.menu-note {
  text-align: center;
  margin-top: 3rem;
  font-style: italic;
  color: #666;
  font-size: 1.1rem;
}

.menu-highlight {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--primary-color);
  background: var(--secondary-color);
  padding: 1rem 2rem;
  border-radius: 10px;
  display: inline-block;
  margin-left: 50%;
  transform: translateX(-50%);
}

/* Contact Section */
.contact {
  padding: 80px 20px;
  background: var(--gray-color);
}

.contact h2 {
  font-family: "Montserrat", sans-serif;
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 3rem;
  letter-spacing: -0.5px;
}

.contact-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-info,
.contact-form {
  background: var(--light-color);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-info h3,
.contact-form h3 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.info-item .icon {
  font-size: 1.5rem;
}

.info-item strong {
  display: block;
  color: var(--primary-color);
  margin-bottom: 0.3rem;
}

.info-item p {
  margin: 0;
  color: #666;
}

/* Form Styles */
.form-group {
  margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s;
}

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

.form-group textarea {
  resize: vertical;
}

.submit-button {
  width: 100%;
  padding: 15px;
  background: var(--primary-color);
  color: var(--light-color);
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

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

.form-message {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
  display: none;
}

.form-message.success {
  background: #d4edda;
  color: #155724;
  display: block;
}

.form-message.error {
  background: #f8d7da;
  color: #721c24;
  display: block;
}

/* Footer */
.footer {
  background: var(--dark-color);
  color: var(--light-color);
  text-align: center;
  padding: 2rem 20px;
}

.footer p {
  margin: 0.5rem 0;
}

.footer a {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.footer a:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 70px;
    left: -100%;
    flex-direction: column;
    background: var(--light-color);
    width: 100%;
    padding: 2rem;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    transition: left 0.3s;
  }

  .nav-links.active {
    left: 0;
  }

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

  .tagline {
    font-size: 1.2rem;
  }

  .subtitle {
    font-size: 1rem;
  }

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

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

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

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .about h2,
  .gallery h2,
  .menu h2,
  .contact h2 {
    font-size: 2rem;
  }

  .menu-categories {
    grid-template-columns: 1fr;
  }

  .menu-category {
    min-width: auto;
  }
}
