/* BodyWay Logo Styles */

.logo-text {
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #e74c3c;
    text-decoration: none;
    letter-spacing: -1px;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.logo-text:hover {
    transform: scale(1.05);
    text-decoration: none;
    color: #c0392b;
}

.logo-text:before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #e74c3c;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.logo-text:hover:before {
    transform: scaleX(1);
}

/* Mobile Logo Styles */
.logo-text-mobile {
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: -1px;
    transition: all 0.3s ease;
    display: inline-block;
}

.logo-text-mobile:hover {
    color: #e74c3c;
    text-decoration: none;
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 991px) {
    .logo-text {
        font-size: 32px;
    }
}

@media (max-width: 767px) {
    .logo-text {
        font-size: 28px;
    }
    
    .logo-text-mobile {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 24px;
    }
    
    .logo-text-mobile {
        font-size: 22px;
    }
}

/* Logo Container Adjustments */
.logo {
    display: flex;
    align-items: center;
    height: 60px;
}

.nav-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
}

/* Header Transparency Adjustments */
.transparent-header .logo-text {
    color: #850a0a;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.transparent-header .logo-text:hover {
    color: #e74c3c;
    text-shadow: 0 2px 4px rgba(0,0,0,0.4);
}

/* Sticky Header Adjustments */
.sticky-header .logo-text {
    color: #2c3e50;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

/* Sidebar Logo Styles */
.logo-text-sidebar {
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #e74c3c;
    text-decoration: none;
    letter-spacing: -1px;
    transition: all 0.3s ease;
    display: inline-block;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.logo-text-sidebar:hover {
    color: #c0392b;
    text-decoration: none;
    transform: scale(1.05);
}