/* KOLO Girlz New Navbar */

/* Header wrapper */
.kolo-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

/* Main nav bar */
.kolo-nav {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 16px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.kolo-logo-link {
    display: flex;
    align-items: center;
}

.kolo-logo {
    height: 100px;
    width: auto;
}

/* Desktop links */
.kolo-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.kolo-link {
    text-decoration: none;
    color: #333;
    font-size: 15px;
    padding: 8px 0;
}

.kolo-link:hover {
    color: #e91e63; /* KOLO pink */
}

.kolo-apply {
    background: #e91e63;
    color: #fff;
    padding: 8px 16px;
    border-radius: 5px;
}

/* Hamburger (mobile) */
.kolo-hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 22px;
    color: #333;
}

/* Mobile menu */
.kolo-mobile-menu {
    display: none;
    background: #ffffff;
    border-top: 1px solid #eee;
    padding: 8px 16px 16px;
}

.kolo-mobile-link {
    display: block;
    text-decoration: none;
    color: #333;
    padding: 10px 0;
    font-size: 15px;
}

.kolo-mobile-link:hover {
    color: #e91e63;
}

.kolo-mobile-apply {
    background: #e91e63;
    color: #fff;
    padding: 10px 16px;
    border-radius: 4px;
    margin-top: 8px;
}

/* Responsive behavior */
@media (max-width: 768px) {
    .kolo-links {
        display: none; /* hide desktop links */
    }

    .kolo-hamburger {
        display: block; /* show hamburger */
    }
}

/* HERO OVERLAY */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

/* HERO CONTENT */
.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

/* HERO TITLE */
.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
}

/* Pink KOLO Girlz text */
.hero-name {
    color: #ffffff; /* KOLO soft pink */
}

/* Icons */
.hero-icon {
    color: #ffb6c1;
}

.hero-star {
    color: #ffd700;
}

/* Tagline */
.hero-tagline {
    color: #ffffff;
    font-size: 20px;
    font-weight: 400;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.35); /* protruding effect */
    margin: 10px auto 0;
    max-width: 480px;
    text-align: center;
}

/* MOBILE FIXES */
@media (max-width: 768px) {
    .hero-title {
        font-size: 34px;
        flex-direction: row;
        text-align: center;
    }

    .hero-tagline {
        font-size: 18px;
        max-width: 300px;
        font-weight: 400;
        padding: 0 10px;
    }
}

/* Fade-in animation */
@keyframes koloFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Apply animation to hero content */
.hero-content {
    animation: koloFadeIn 1.2s ease-out forwards;
}

.hero-title {
    animation: koloFadeIn 1.2s ease-out forwards;
    animation-delay: 0.2s;
}

.hero-tagline {
    animation: koloFadeIn 1.2s ease-out forwards;
    animation-delay: 0.4s;
}

.hero-content a {
    animation: koloFadeIn 1.2s ease-out forwards;
    animation-delay: 0.6s;
}
