/* Bright & Elegant Theme Design System */
:root {
  --bg-primary: #f5f5f5; /* Slightly grayer background */
  --bg-secondary: #ececec;
  --color-pistachio: #55a630;
  --color-pistachio-light: #e8f5e9;
  --color-tomato: #e63946;
  --color-tomato-light: #ffebee;
  --text-dark: #1d3557;
  --text-muted: #6c757d;
  --font-family: 'Outfit', sans-serif;
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-dark);
  font-family: var(--font-family);
  margin: 0;
  padding: 0;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-secondary);
}
::-webkit-scrollbar-thumb {
  background: var(--color-pistachio-light);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-pistachio);
}

/* Logo styling */
.navbar-logo {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.hero-logo-img {
  width: 100%;
  max-width: 320px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  transition: var(--transition);
}

.hero-logo-img:hover {
  transform: scale(1.03);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes pulsePistachio {
  0% { transform: scale(1); }
  50% { transform: scale(1.03); }
  100% { transform: scale(1); }
}

.animate-fade-in-up {
  animation: fadeInUp 0.8s ease-out forwards;
}

.animate-fade-in {
  animation: fadeIn 1s ease-out forwards;
}

/* Header & Navigation */
.navbar-brand {
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--color-pistachio) !important;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-placeholder {
  width: 100px;
  height: 40px;
  border: 1px dashed var(--color-pistachio);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--color-pistachio);
}

.nav-link {
  color: var(--text-dark) !important;
  font-weight: 600;
  margin: 0 10px;
  transition: var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--color-pistachio);
  transition: var(--transition);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link:hover {
  color: var(--color-pistachio) !important;
}

/* Hero Section */
.hero-section {
  padding: 100px 0 80px 0;
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  position: relative;
  overflow: hidden;
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-title span {
  color: var(--color-pistachio);
}

.hero-subtitle {
  color: var(--text-muted);
  font-size: 1.2rem;
  margin-bottom: 30px;
  font-weight: 400;
}

.hero-img-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulsePistachio 4s ease-in-out infinite;
}

.hero-img-placeholder {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: var(--color-pistachio-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 4px solid var(--bg-primary);
  box-shadow: 0 20px 40px rgba(85, 166, 48, 0.15);
}

.hero-img-placeholder i {
  font-size: 5rem;
  color: var(--color-pistachio);
  margin-bottom: 10px;
}

.hero-img-badge {
  background: var(--color-tomato);
  color: #fff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
}

/* Buttons */
.btn-whatsapp {
  background-color: #25d366;
  color: white !important;
  font-weight: 700;
  border-radius: 50px;
  padding: 12px 30px;
  border: none;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.btn-outline-custom {
  border: 2px solid var(--color-pistachio);
  color: var(--color-pistachio) !important;
  font-weight: 700;
  border-radius: 50px;
  padding: 10px 30px;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-outline-custom:hover {
  background-color: var(--color-pistachio);
  color: white !important;
  transform: translateY(-3px);
}

/* Sections General Styling */
.section-padding {
  padding: 80px 0;
}

.bg-light-sec {
  background-color: var(--bg-secondary);
}

.section-head {
  text-align: center;
  margin-bottom: 50px;
}

.section-head h2 {
  font-size: 2.5rem;
  font-weight: 800;
}

.section-head h2 span {
  color: var(--color-pistachio);
}

.section-head p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* Hakkımızda Section */
.about-card {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  border: 1px solid rgba(85, 166, 48, 0.08);
}

/* Menu Section */
.menu-card {
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  border: 1px solid rgba(0,0,0,0.05);
  padding: 30px;
  transition: var(--transition);
  height: 100%;
}

.menu-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(85, 166, 48, 0.08);
  border-color: rgba(85, 166, 48, 0.2);
}

.menu-category-title {
  color: var(--color-pistachio);
  font-weight: 700;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--color-pistachio-light);
  padding-bottom: 10px;
}

.menu-item-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5px;
}

.menu-item-name {
  font-weight: 700;
  font-size: 1.1rem;
}

.menu-item-price {
  font-weight: 800;
  color: var(--color-tomato);
}

/* Reviews Section */
.review-card {
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.02);
  border: 1px solid rgba(0,0,0,0.04);
  transition: var(--transition);
}

.review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.06);
}

.review-stars {
  color: #ffb703;
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.review-comment {
  font-style: italic;
  color: var(--text-dark);
  margin-bottom: 15px;
  line-height: 1.6;
}

.review-author {
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.review-author::before {
  content: '';
  width: 25px;
  height: 2px;
  background-color: var(--color-pistachio);
}

/* Footer & Subemiz Section */
.footer-info {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.footer-info i {
  color: var(--color-pistachio);
  font-size: 1.5rem;
}

.footer-info h5 {
  font-weight: 700;
  margin-bottom: 5px;
}

.footer-bottom {
  border-top: 1px solid rgba(0,0,0,0.08);
  padding: 20px 0;
  margin-top: 50px;
}
