/* Logo Animasyon Stilleri */
.splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #e5e3d2 !important;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.splash-screen.fade-out {
    opacity: 0;
    pointer-events: none;
}

.logo-container {
    width: 288px; /* w-72 = 18rem = 288px */
    height: 288px;
    transition: transform 0.3s ease;
}

.logo-svg {
    width: 100%;
    height: 100%;
    opacity: 0;
    animation: fadeIn 0.5s ease-out forwards;
}

.logo-path {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawPath 1.5s ease-in-out forwards;
    fill: rgba(212, 175, 55, 0);
    stroke: #D4AF37;
}

.logo-path.filled {
    animation: drawPathAndFill 1.5s ease-in-out forwards;
}

.logo-text {
    opacity: 0;
    transform: translateY(20px);
    animation: slideText 0.8s ease forwards;
    animation-delay: 1.2s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes drawPath {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes drawPathAndFill {
    50% {
        stroke-dashoffset: 0;
        fill: rgba(212, 175, 55, 0);
    }
    100% {
        stroke-dashoffset: 0;
        fill: #D4AF37;
    }
}

@keyframes slideText {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Navbar Styles */
.navbar {
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.navbar.shadow-sm {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07) !important;
}

.nav-link {
    position: relative;
    transition: color 0.3s ease;
    color: #ffffff !important;
}

.nav-link:hover {
    color: #D4AF37 !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: #D4AF37;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 70%;
}

.navbar-brand {
    transition: transform 0.3s ease;
    color: #ffffff !important;
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.navbar-brand:hover .logo-container {
    transform: rotate(5deg);
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        background: #e5e3d2;
        padding: 1rem;
        border-radius: 8px;
        margin-top: 0.5rem;
        box-shadow: 0 4px 6px rgba(212, 175, 55, 0.1);
    }
    
    .nav-link::after {
        display: none;
    }
    
    .nav-link:hover {
        background-color: rgba(212, 175, 55, 0.1);
        border-radius: 6px;
    }
} 