/*
Theme Name: Convotra Theme
Author: Convotra AI
Version: 1.0
*/

body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: #111827;
  background-color: #fafafa;
}

.hero {
  min-height: 80vh;
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
  gap: 30px;
}

.hero-content {
  max-width: 700px;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 16px;
  font-weight: 700;
}

.hero p {
  font-size: 20px;
  line-height: 1.4;
}

.hero-images {
  display: flex;
  gap: 20px;
  max-width: 900px;
  width: 100%;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-images img {
  width: 280px;
  height: 180px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.hero-images img:hover {
  transform: scale(1.05);
}

.menu {
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 20px;
}

.menu h2 {
  font-size: 36px;
  margin-bottom: 40px;
  text-align: center;
  color: #4f46e5;
  font-weight: 700;
}

.menu-category {
  margin-bottom: 50px;
}

.menu-category h3 {
  font-size: 28px;
  border-bottom: 3px solid #7c3aed;
  padding-bottom: 8px;
  margin-bottom: 30px;
  color: #5b21b6;
  font-weight: 600;
}

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

.menu-item {
  background: white;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.menu-item:hover {
  transform: translateY(-6px);
}

.menu-item-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.menu-item-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.menu-item-title {
  font-size: 22px;
  margin: 0 0 8px 0;
  color: #4f46e5;
  font-weight: 700;
}

.menu-item-price {
  font-size: 18px;
  color: #7c3aed;
  font-weight: 600;
  margin-bottom: 12px;
}

.menu-item-description {
  font-size: 16px;
  color: #374151;
  flex-grow: 1;
  line-height: 1.4;
}

.about, .why-choose-us, .cta, .contact {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 20px;
  text-align: center;
}

.about h2, .why-choose-us h2, .cta h2, .contact h2 {
  font-size: 32px;
  color: #4f46e5;
  margin-bottom: 24px;
  font-weight: 700;
}

.about p, .why-choose-us ul, .cta p, .contact address {
  font-size: 18px;
  color: #374151;
  line-height: 1.6;
}

.why-choose-us ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 400px;
  text-align: left;
}

.why-choose-us ul li {
  margin-bottom: 12px;
  padding-left: 20px;
  position: relative;
}

.why-choose-us ul li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: #7c3aed;
  font-weight: 700;
}

.cta {
  background: #7c3aed;
  color: white;
  padding: 50px 20px;
  border-radius: 16px;
}

.cta p {
  font-size: 20px;
  margin-bottom: 30px;
}

.whatsapp-button {
  display: inline-block;
  background: #25d366;
  color: white;
  font-weight: 700;
  font-size: 18px;
  padding: 14px 30px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 6px 15px rgba(37, 211, 102, 0.5);
  transition: background-color 0.3s ease;
}

.whatsapp-button:hover {
  background: #1ebe57;
}

.contact address p {
  margin: 8px 0;
}

@media (max-width: 1024px) {
  .hero-images img {
    width: 220px;
    height: 140px;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 36px;
  }
  .menu-items {
    grid-template-columns: 1fr;
  }
  .menu-item-image img {
    height: 180px;
  }
  .hero-images {
    gap: 15px;
  }
  .hero-images img {
    width: 45vw;
    height: 120px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 28px;
  }
  .hero p {
    font-size: 16px;
  }
  .menu-item-image img {
    height: 150px;
  }
  .hero-images img {
    width: 90vw;
    height: 140px;
  }
}
