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

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

body {
  font-family: 'Poppins', sans-serif;
  background: url('menu.jpeg') no-repeat center center/cover;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 20px;
}

body::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
}

.about-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.about-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 24px 28px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 100%;
  max-width: 500px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  max-height: 85vh;
  overflow-y: auto;
}

.about-card::-webkit-scrollbar {
  width: 4px;
}
.about-card::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 10px;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 12px;
}

.logo-circle {
  width: 32px;
  height: 32px;
  background: #FF6B35;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 20px;
}

.logo-text {
  font-size: 22px;
  font-weight: 700;
  color: white;
}

h2 {
  font-size: 22px;
  font-weight: 600;
  color: white;
  text-align: center;
  margin-bottom: 4px;
}

.subtitle {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  margin-bottom: 18px;
}

.about-content h3 {
  font-size: 16px;
  font-weight: 600;
  color: #FFD166;
  margin-top: 16px;
  margin-bottom: 8px;
}

.about-content p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 8px;
}

.features {
  margin: 12px 0;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  background: rgba(255, 255, 255, 0.05);
  padding: 10px;
  border-radius: 8px;
}

.feature-icon {
  font-size: 24px;
  line-height: 1;
}

.feature-item h4 {
  font-size: 14px;
  font-weight: 600;
  color: white;
  margin-bottom: 2px;
}

.feature-item p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.home-btn {
  display: block;
  width: 100%;
  padding: 11px;
  background: linear-gradient(135deg, #FF6B35, #E63946);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 18px;
  font-family: 'Poppins', sans-serif;
  text-align: center;
  text-decoration: none;
}

.home-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(230, 57, 70, 0.4);
}

.home-btn:active {
  transform: translateY(0px);
}

@media (max-width: 480px) {
  .about-card {
    padding: 20px;
  }
  
  h2 {
    font-size: 20px;
  }
  
  .about-content h3 {
    font-size: 15px;
  }
  
  .about-content p {
    font-size: 12px;
  }
}