/* Enhanced Styles for Better Design */

/* Better Typography */
body {
  font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #333;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
}

h1 { font-size: 48px; }
h2 { font-size: 36px; }
h3 { font-size: 28px; }
h4 { font-size: 24px; }

/* Section Title Enhancement */
.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 42px;
  color: #1a1a1a;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #ff6b35, #f7931e);
  border-radius: 2px;
}

.section-title p {
  font-size: 18px;
  color: #666;
  margin-top: 20px;
}

/* Enhanced Buttons */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.btn-outline {
  background: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
}

.btn-outline:hover {
  background: #ffffff;
  color: #ff6b35;
  transform: translateY(-3px);
}

.btn-lg {
  padding: 18px 48px;
  font-size: 18px;
}

/* Enhanced Cards */
.card {
  background: #ffffff;
  border-radius: 16px;
  padding: 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.card-img {
  width: 100%;
  height: 250px;
  overflow: hidden;
  position: relative;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.card:hover .card-img img {
  transform: scale(1.15);
}

.card-title {
  font-size: 22px;
  font-weight: 700;
  margin: 20px 20px 10px;
  color: #1a1a1a;
}

.card-text {
  color: #666;
  margin: 0 20px 20px;
  line-height: 1.6;
}

.card-price {
  font-size: 32px;
  font-weight: 700;
  color: #ff6b35;
  margin: 0 20px 20px;
}

.card .btn {
  margin: 0 20px 20px;
}

/* Menu Item Enhancement */
.menu-item {
  display: flex;
  gap: 20px;
  background: #ffffff;
  padding: 20px;
  border-radius: 16px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.menu-item:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transform: translateX(10px);
  border-color: #ff6b35;
}

.menu-item-img {
  width: 140px;
  height: 140px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}

.menu-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.menu-item:hover .menu-item-img img {
  transform: scale(1.1);
}

.menu-item-title {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
}

.menu-item-price {
  font-size: 28px;
  font-weight: 700;
  color: #ff6b35;
}

.menu-item-desc {
  color: #666;
  line-height: 1.6;
  margin-top: 8px;
}

/* Icon Box Enhancement */
.icon-box {
  text-align: center;
  padding: 40px 20px;
  transition: all 0.3s ease;
}

.icon-box:hover {
  transform: translateY(-10px);
}

.icon-box-icon {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, #fff8f3 0%, #ffe8d6 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 40px;
  transition: all 0.4s ease;
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.1);
}

.icon-box:hover .icon-box-icon {
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.icon-box-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #1a1a1a;
}

.icon-box-text {
  color: #666;
  line-height: 1.6;
}

/* Background Sections */
.bg-primary {
  background: linear-gradient(135deg, #fff8f3 0%, #ffe8d6 100%);
}

.bg-light {
  background: #f8f9fa;
}

.bg-dark {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

/* Spacing Improvements */
.section {
  padding: 80px 0;
}

@media (max-width: 768px) {
  .section {
    padding: 50px 0;
  }
  
  h1 { font-size: 32px; }
  h2 { font-size: 28px; }
  h3 { font-size: 22px; }
  
  .section-title h2 {
    font-size: 32px;
  }
  
  .card-img {
    height: 200px;
  }
  
  .menu-item {
    flex-direction: column;
  }
  
  .menu-item-img {
    width: 100%;
    height: 200px;
  }
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Selection Color */
::selection {
  background: #ff6b35;
  color: #ffffff;
}

::-moz-selection {
  background: #ff6b35;
  color: #ffffff;
}
