@tailwind base;
@tailwind components;
@tailwind utilities;

/* Özel Medya Ajansı Dokunuşları */
body {
    background-color: #0f172a; /* Derin Antrasit / Koyu Tema */
    color: #f8fafc;
    font-family: 'Inter', sans-serif;
}

/* Hero Video Alanı Örtüsü */
.hero-overlay {
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.4), rgba(15, 23, 42, 0.9));
}

/* Sabit WhatsApp Butonu Animasyonu */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    z-index: 100;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}
.whatsapp-float:hover {
    transform: scale(1.1);
}