@font-face {
    font-family: 'PetitCochon';
    src: url('../font/petit-cochon.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'SchoolBell';
    src: url('../font/schoolbell.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* Logo Styles */
.logo {
    font-family: 'PetitCochon', Arial, sans-serif;
    font-size: 3.5rem;
    margin-bottom: 0;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
    line-height: 0.8;
}

.slogan {
    font-family: 'SchoolBell', cursive, Arial, sans-serif;
    font-size: 1.25rem;
    color: #664f35;
    letter-spacing: 1px;
    text-align: center;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
}

.keywords {
    font-family: 'PetitCochon', Arial, sans-serif;
    font-size: 0.75rem;
    margin-top: 0.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: center;
    color: #333333;
}

.keywords span:nth-child(1) { color: #085e9d; } /* Teknoloji */
.keywords span:nth-child(2) { color: #666666; } /* | */
.keywords span:nth-child(3) { color: #cc3845; } /* Okul */
.keywords span:nth-child(4) { color: #666666; } /* | */
.keywords span:nth-child(5) { color: #f3b939; } /* Bilgi */
.keywords span:nth-child(6) { color: #666666; } /* | */
.keywords span:nth-child(7) { color: #db5f31; } /* İletişim */
.keywords span:nth-child(8) { color: #666666; } /* | */
.keywords span:nth-child(9) { color: #2da43e; } /* Yenilik */
.keywords span:nth-child(10) { color: #666666; } /* | */
.keywords span:nth-child(11) { color: #085e9d; } /* Oyun */

.tobiyo {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2px;
    height: auto;
    margin-bottom: 0.5rem;
}

.tobiyo div {
    height: auto;
    line-height: 1;
    font-weight: 700;
    transition: transform 0.3s ease;
    cursor: default;
}

.tobiyo div:hover {
    transform: translateY(-3px);
}

.tobiyo div:nth-child(1) { color: #085e9d; } /* T */
.tobiyo div:nth-child(2) { color: #cc3845; } /* O */
.tobiyo div:nth-child(3) { color: #f3b939; } /* B */
.tobiyo div:nth-child(4) { color: #2da43e; } /* i */
.tobiyo div:nth-child(5) { color: #db5f31; } /* Y */
.tobiyo div:nth-child(6) { color: #085e9d; } /* O */

.logo-container {
    margin-bottom: 2rem;
    animation: fadeInDown 0.6s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card-animation {
    position: relative;
    animation: logoPulse 3s infinite ease-in-out;
}

@keyframes logoPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Header Logo Styles */
.header-logo .tobiyo {
    font-size: 1.5rem;
    margin-bottom: 0;
    justify-content: flex-start;
}

@media (max-width: 768px) {
    .header-logo .tobiyo {
        font-size: 1.25rem;
    }
}

/* Responsive Logo Styles */
@media (max-width: 480px) {
    .logo {
        font-size: 2.5rem;
    }
    .slogan {
        font-size: 1rem;
    }
    .keywords {
        font-size: 0.65rem;
    }
}