﻿/*
 * Bu dosya, tüm Blazor uygulamanız ve sayfanız için geçerli olan stilleri içerir.
 * Tüm özel ve genel CSS kuralları tek bir dosyada birleştirilmiştir.
 */

/* Genel yazı tipi ve gövde ayarları */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&display=swap');

html, body {
    font-family: 'Inter', sans-serif;
    height: 100%;
    margin: 0;
    padding: 0;
}

/* Uygulamanın tam ekran bir düzene sahip olması için temel ayarlar */
#app {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Genel başlık ve paragraf stilleri */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}

p {
    line-height: 1.6;
}

/* Global animasyonlar ve yardımcı sınıflar */
.animate-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: .5;
    }
}

/* Ana konteyner için responsive ve ortalama stili */
.full-screen-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    width: 100%;
    padding: 1.5rem;
    box-sizing: border-box;
    text-align: center;
    overflow: hidden;
}

/* Kutu gölge efektleri ve animasyonlar */
.shadow-3xl {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.shadow-4xl {
    box-shadow: 0 35px 60px -15px rgba(0, 0, 0, 0.3);
}

.animate-fade-in {
    animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Basit buton hover efekti */
.hover:-translate-y-1 {
    transform: translateY(-4px);
}

/* Dikeyde daha küçük ekranlar için responsive düzenleme */
@media (max-height: 700px) {
    .full-screen-container {
        gap: 0.5rem;
        padding: 1rem;
    }

    .app-logo svg {
        width: 50px;
        height: 50px;
    }

    .full-screen-container h1 {
        font-size: 1.8rem;
    }
}

/* Çok küçük dikey ekranlar için responsive düzenleme */
@media (max-height: 500px) {
    .full-screen-container {
        gap: 0.25rem;
        padding: 0.5rem;
    }

    .app-logo svg {
        width: 35px;
        height: 35px;
    }

    .full-screen-container h1 {
        font-size: 1.4rem;
    }
}
