/* 
						Design by:
						Design Studios Pro
						http://DesignStudiosPro.com
*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #fffafc;
  color: #333;
}

header {
  background: linear-gradient(135deg, #b58cff, #8a5cff);
  padding: 20px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
}

header h1 {
  font-size: 1.8rem;
}

nav a {
  color: white;
  text-decoration: none;
  margin-left: 25px;
  font-weight: 500;
}

.hero {
  height: 85vh;
  background: url('images/food.jpg') center/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.hero h2 {
  font-size: 3rem;
  color: #fff;
  margin-bottom: 20px;
  background: rgba(0,0,0,0.35); /* transparent black */
  padding: 10px 20px;
  border-radius: 8px;
}

.hero p {
  font-size: 1.2rem;
  max-width: 600px;
  margin-bottom: 30px;
  color: #fff;
  background: rgba(0,0,0,0.35); /* transparent black */
  padding: 10px 20px;
  border-radius: 8px;
}

.hero button {
  background: #6a3cff;
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 30px;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s;
}

.hero button:hover {
  background: #e43b84;
}

.section {
  padding: 80px 50px;
  text-align: center;
}

.section h3 {
  font-size: 2rem;
  margin-bottom: 50px;
  color: #6a3cff;
}

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

.card {
  background: white;
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: 0.3s;
}

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

.card img {
  width: 100%;
  border-radius: 15px;
  margin-bottom: 15px;
}

.toppings-section {
  padding: 80px 50px;
  text-align: center;
  background: linear-gradient(135deg, #f5f5f5, #e6e6e6);
}

.toppings-section h3 {
  font-size: 2rem;
  margin-bottom: 50px;
  color: #6a3cff;
}

.about-container{
  display:flex;
  justify-content:center;
  align-items:flex-start;
  gap:60px;
  max-width:1000px;
  margin:0 auto;
}

.about-text{
  flex:1;
  text-align:left;
}

.about-image{
  width:100%;
  max-width:700px;
  border-radius:15px;
  margin:15px 0;
  box-shadow:0 8px 20px rgba(0,0,0,0.15);
}

.poll-box{
  flex:1;
  background:white;
  padding:20px;
  border-radius:15px;
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
  max-width:350px;
  text-align:left;
}

.poll-bar{
  background:#6a3cff;
  height:20px;
  border-radius:6px;
  margin-bottom:10px;
}

.social-media {
  display: flex;
  justify-content: center;
  margin: 30px 0;
  gap: 20px;
}

.social-media a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  background: #ff4f9a;
  color: white;
  font-weight: bold;
  font-size: 1.2rem;
  border-radius: 50%;
  text-decoration: none;
  transition: transform 0.3s, background 0.3s;
}

footer {
  background: #8a5cff;
  color: white;
  text-align: center;
  padding: 30px;
  margin-top: 40px;
}

@media (max-width: 768px) {
  header {
    flex-direction: column;
  }

  nav {
    margin-top: 10px;
  }

  .hero h2 {
    font-size: 2.2rem;
  }
}