/* Puan Yolum Logo Styles */
.logo-container {
    display: inline-block;
    position: relative;
    margin: 0 auto;
}

.logo-main {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #4361ee 100%);
    border-radius: 25px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 35px rgba(30, 60, 114, 0.3);
    transition: all 0.3s ease;
    overflow: hidden;
}

.logo-main:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 45px rgba(30, 60, 114, 0.4);
}

.logo-main::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
}

.logo-main:hover::before {
    transform: rotate(45deg) translate(100%, 100%);
}

.logo-icon {
    font-size: 48px;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 2;
    position: relative;
    animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-3px); }
}

.logo-text {
    text-align: center;
    margin-top: 15px;
}

.logo-title {
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #4361ee 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(30, 60, 114, 0.2);
}

.logo-subtitle {
    font-size: 14px;
    color: #666;
    font-weight: 500;
    margin: 5px 0 0 0;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.logo-tagline {
    font-size: 16px;
    color: #888;
    font-weight: 400;
    margin: 8px 0 0 0;
    font-style: italic;
}

/* Responsive Logo */
@media (max-width: 768px) {
    .logo-main {
        width: 100px;
        height: 100px;
        border-radius: 20px;
    }
    
    .logo-icon {
        font-size: 40px;
    }
    
    .logo-title {
        font-size: 28px;
    }
    
    .logo-subtitle {
        font-size: 12px;
    }
    
    .logo-tagline {
        font-size: 14px;
    }
}

/* Logo Variants */
.logo-small {
    width: 60px;
    height: 60px;
    border-radius: 15px;
}

.logo-small .logo-icon {
    font-size: 24px;
}

.logo-large {
    width: 150px;
    height: 150px;
    border-radius: 30px;
}

.logo-large .logo-icon {
    font-size: 60px;
}

/* Logo with Glow Effect */
.logo-glow {
    box-shadow: 0 0 30px rgba(30, 60, 114, 0.5), 0 15px 35px rgba(30, 60, 114, 0.3);
}

.logo-glow:hover {
    box-shadow: 0 0 40px rgba(30, 60, 114, 0.6), 0 20px 45px rgba(30, 60, 114, 0.4);
}

/* Logo Animation on Load */
.logo-animate {
    animation: logoSlideIn 0.8s ease-out;
}

@keyframes logoSlideIn {
    0% {
        opacity: 0;
        transform: translateY(-30px) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Logo Pulse Effect */
.logo-pulse {
    animation: logoPulse 2s ease-in-out infinite;
}

@keyframes logoPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}
