/* 🎨 RENK TANIMLARI */
:root {
    --primary: #8b4d67;
    --secondary:  #401E2C;
    --accent: #ffffff;
    --dark: #3a1a14;
    --light:  #ffffff;
}

/* 🌍 GENEL STİLLER */
body {
    font-family: 'Poppins', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--light);
    color: var(--dark);
    padding-top: 56px;
}

/* Sayfa içi geçişlerde yumuşak kaydırma */
html {
    scroll-behavior: smooth;
}

/* 🔥 ANA GÖRSEL ARKAPLAN GEÇİŞİ */
.hero-gradient {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

/* 🍦 DONDURMA KARTI HOVER EFEKTİ */
.flavor-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* 🎈 YÜZEN GÖRSEL ANİMASYONU */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* Sürekli yukarı-aşağı yumuşak hareket */
.floating {
    animation: float 3s ease-in-out infinite;
}

/* 📌 NAVBAR MENÜ LİNKLERİ */
nav a {
    position: relative;
    color: white;
    padding: 0.75rem 1rem;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s ease, transform 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

nav a:hover,
nav a:focus {
    color: #eccc74;
    transform: scale(1.1);
}

/* 🔽 NAVBAR ALT ÇİZGİ ANİMASYONU */
nav a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #4c080b;
    transition: width 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

nav a:hover::after,
nav a:focus::after {
    width: 100%;
}

/* 🔁 LOGO ÜZERİNE GELİNCE EFEKT */
.logo-hover:hover {
    transform: scale(1.20);
    transition: transform 0.3s ease;
    cursor: pointer;
    box-shadow: none;
}

/* Genel başlıklar ve içerikler: Poppins */
h1, h2, h3, h4, p, li, form, button, input, textarea {
    font-family: 'Poppins', sans-serif;
}

.btn-lift {
  display: inline-block;
  padding: 0.5rem 1rem;
  font-weight: 600;
  color: black;
  border: 2px solid #8b4d67;
  border-radius: 9999px; /* rounded-full */
  transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
  background-color: transparent;
  text-decoration: none;
}

.btn-lift:hover {
  background-color: #8b4d67;
  color: white;
  transform: translateY(-5px) scale(1.1);
}

.btn-lift {
  display: inline-block;
  padding: 0.5rem 1rem; /* px-4 py-2 */
  font-weight: 600; /* font-semibold */
  color: black;
  border: 2px solid #8b4d67;
  border-radius: 9999px; /* rounded-full */
  transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
  background-color: transparent;
  text-decoration: none;
}

.btn-lift:hover {
  background-color: #8b4d67;
  color: white;
  transform: translateY(-5px) scale(1.1);
  cursor: pointer;
}

