/* Custom styles for IGZ logo */

#logo {
    display: flex;
    align-items: center;
}

.logo-image {
	height: 3.75em;
	width: auto;
	max-width: none;
	display: block;
}

.logo-text {
    font-size: 1.5em;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: inherit;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .logo-image {
        height: 3em;
    }
    
    .logo-text {
        font-size: 1.2em;
        letter-spacing: 1px;
    }
}

@media (max-width: 480px) {
    .logo-image {
        height: 2.7em;
    }
    
    .logo-text {
        font-size: 1em;
        letter-spacing: 0.5px;
    }
}

/* Banner Logo Top-Left Styles */
.banner-logo-top-left {
    position: absolute;
    top: 2em;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    width: 100%;
    max-width: 1200px;
    padding: 0 2em;
    box-sizing: border-box;
}

.banner-logo-top-left img {
    float: left;
}

.banner-logo-big {
    height: 18em;
    width: auto;
    max-width: none;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4));
    animation: fadeInLeft 1s ease-out;
}

/* Responsive banner logo top-left */
@media (max-width: 768px) {
    .banner-logo-top-left {
        top: 1.5em;
        padding: 0 1.5em;
    }
    
    .banner-logo-big {
        height: 12em;
    }
}

@media (max-width: 480px) {
    .banner-logo-top-left {
        top: 1em;
        padding: 0 1em;
    }
    
    .banner-logo-big {
        height: 9em;
    }
}

/* Animation for banner logo */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Fix cursor behavior for navigation */
#nav > ul > li a {
    cursor: pointer !important;
}

#nav > ul > li.has-children > a {
    cursor: pointer !important;
}

.dropotron > li > a {
    cursor: pointer !important;
}

/* Mobile navigation cursor fixes */
@media (max-width: 768px) {
    #navPanel .link {
        cursor: pointer !important;
    }
}


