/* Genel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    background-color: #f0f0f0; /* Varsayılan arka plan rengi */
    transition: background-color 0.5s ease; /* Renk geçişi animasyonu */
    flex-direction: column; /* Banner üstte yer alacak şekilde hizala */
}

/* Resmi Tatil Bandı */
#holiday-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 15px;
    background-color: #ff5733; /* Tatil bandı varsayılan rengi */
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    font-weight: bold;
    z-index: 10;
    transition: opacity 0.5s ease;
}

#holiday-banner.hidden {
    display: none;
}

/* Harflerin Stilini Tanımlama */
.logo {
    font-size: 15vw;
    font-weight: bold;
    color: white;
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.5),
                 0px 0px 15px rgba(255, 255, 255, 0.7);
    text-align: center;
    transition: color 0.5s ease, text-shadow 0.5s ease;
    transition: transform 1s ease-in-out; /* Transformasyon ekleyerek dönme efekti */
}

/* Harflerin üzerine gelindiğinde dönmesini sağlamak */
.logo:hover {
    transform: rotate(360deg); /* 360 derece dönecek */
}

/* Mobil ve Tablet için Responsive Stil */
@media (max-width: 768px) {
    .logo {
        font-size: 25vw;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 35vw;
    }
}
