/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-family: 'Arial Black', sans-serif;
    font-weight: 900;
    font-size: 1.5rem;
    letter-spacing: -0.5px;
    flex-direction: column;
    text-align: center;
}

/* Mobile logo adjustments */
@media (max-width: 767.98px) {
    .hero-logo {
        max-height: 300px !important;
        width: auto !important;
        margin: 0 auto;
    }
    
    .hero-title {
        font-size: 2rem !important;
    }
    
    .hero-subtitle {
        font-size: 1.2rem !important;
    }
}

/* Hover effects for contact links */
.hover-text-white {
    transition: color 0.3s ease;
}

.hover-text-white:hover {
    color: #ffffff !important;
}

.social-icon {
    transition: transform 0.3s ease, color 0.3s ease;
    display: inline-block;
}

.social-icon:hover {
    transform: translateY(-3px);
    color: #ffffff !important;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-main {
    color: #fff;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.logo-main::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #ff0000;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.navbar-brand img {
    max-height: 95px;
    width: auto;
    transition: all 0.3s ease;
}

.logo:hover .logo-main::after {
    transform: scaleX(1);
    transform-origin: left;
}

.logo-tagline {
    font-size: 0.6rem;
    color: #ff0000;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 2px;
    font-weight: 700;
}

/* For larger screens */
@media (min-width: 768px) {
    .logo {
        font-size: 1.8rem;
    }
    
    .logo-tagline {
        font-size: 0.7rem;
    }
}
