 @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap'); 
        body {
            font-family: 'Poppins', sans-serif;
            background-color: #fff5f7;
            color: #333;
        }
        
        .icecream-card {
            transition: all 0.3s ease;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            background: white;
        }
        
        .icecream-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }
        
        .flavor-chip {
            display: inline-block;
            padding: 3px 10px;
            border-radius: 20px;
            font-size: 12px;
            margin-right: 5px;
            margin-bottom: 5px;
        }
        
        .header-gradient {
            background: linear-gradient(135deg, #8b4d67 0%, #401E2C 100%);
        }
        
        .search-box {
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }
        
        .category-btn {
            transition: all 0.2s ease;
        }
        
        .category-btn:hover {
            transform: scale(1.05);
        }
        
        .category-btn.active {
            background-color: #ff6b81;
            color: white;
        }

        /* Kategori butonlarının genel stili */
        .category-btn {
        background-color: #fff;
        color: #4c080b;
        border: 2px solid #e0e0e0;
        transition: background-color 0.3s ease, color 0.3s ease;
        }

        /* Üzerine gelindiğinde (hover) */
        .category-btn:hover {
        background-color: #8b4d67; /* örnek bir pembe-bordo tonu */
        color: #fff;
        border-color: #8b4d67;
        }

        /* Aktif olan buton (örn. "Hepsi") */
        .category-btn.active {
        background-color: #4c080b;
        color: #fff;
        border-color: #4c080b;
        }

        .icecream-card:hover {
        transform: scale(1.02);
        transition: transform 0.3s ease;
        }



        /* 🎨 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;
}

