/* assets/css/header.css */

/* Top Bar */
.top-bar {
    background: linear-gradient(90deg, #FF6B6B, #4ECDC4, #45B7D1, #96CEB4);
    padding: 8px 0;
    color: white;
    font-family: 'Comic Neue', cursive;
}

.top-bar-text i {
    margin-right: 8px;
    animation: bounce 2s infinite;
}

.top-bar-icons i {
    margin: 0 8px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: transform 0.3s;
}

.top-bar-icons i:hover {
    transform: scale(1.2) rotate(10deg);
}

/* Navigation */
.colorful-nav {
    background: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.logo {
    width: 50px;
    height: 50px;
    margin-right: 10px;
    border-radius: 50%;
    transition: transform 0.3s;
}

.logo:hover {
    transform: rotate(360deg);
}

.brand-text {
    font-family: 'Comic Neue', cursive;
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(45deg, #FF6B6B, #4ECDC4, #45B7D1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.navbar-nav .nav-item {
    margin: 0 5px;
}

.navbar-nav .nav-link {
    color: #555;
    font-weight: 600;
    padding: 10px 15px;
    border-radius: 25px;
    transition: all 0.3s;
    font-family: 'Quicksand', sans-serif;
}

.navbar-nav .nav-link i {
    margin-right: 5px;
    color: #FF6B6B;
    transition: transform 0.3s;
}

.navbar-nav .nav-link:hover {
    background: linear-gradient(45deg, #FF6B6B, #4ECDC4);
    color: white;
    transform: translateY(-2px);
}

.navbar-nav .nav-link:hover i {
    color: white;
    transform: scale(1.1);
}

/* Wave Divider */
.custom-shape-divider-top-1623456789 {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.custom-shape-divider-top-1623456789 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

.custom-shape-divider-top-1623456789 .shape-fill {
    fill: #FFEAA7;
}

/* Animations */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-10px);}
    60% {transform: translateY(-5px);}
}

/* Responsive */
@media (max-width: 991px) {
    .navbar-nav {
        background: white;
        padding: 20px;
        border-radius: 15px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        margin-top: 15px;
    }
    
    .navbar-nav .nav-link {
        text-align: center;
    }
}