/* Enhanced logo-tagline styling to sync with website theme and create elegant storytelling */

/* Override the base logo-tagline styling completely to avoid conflicts */
.header .logo-container .logo-tagline {
    font-size: 0.8rem;
    margin-left: 0.5rem;
    color: #a4a9af;
    font-weight: 500;
    letter-spacing: 0.05em;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: absolute;
    top: 100%;
    left: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(34, 34, 34, 0.95));
    color: #fff;
    padding: 0.8rem 1.5rem;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0;
    transform: translateY(10px) scale(0.8);
    pointer-events: none;
    white-space: nowrap;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3), 0 0 15px rgba(254, 207, 106, 0.2);
    z-index: 150;
    text-align: center;
    min-width: 200px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(254, 207, 106, 0.15);
}

/* Override the triangle pointer styling */
.header .logo-container .logo-tagline::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 20px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #fecf6a;
    filter: drop-shadow(0 -2px 3px rgba(254, 207, 106, 0.3));
    transition: all 0.4s ease;
}

/* Override the highlight styling */
.header .logo-container .logo-tagline .highlight {
    color: #fecf6a;
    position: relative;
    display: inline-block;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Override the highlight underline styling */
.header .logo-container .logo-tagline .highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #fecf6a;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s;
    box-shadow: 0 0 8px rgba(254, 207, 106, 0.5);
}

/* Override the hover effects */
.header .logo-container:hover .logo-tagline {
    opacity: 1;
    transform: translateY(15px) scale(1);
    border-color: rgba(254, 207, 106, 0.3);
}

.header .logo-container:hover .logo-image {
    transform: scale(1.1);
    filter: drop-shadow(0 0 8px rgba(254, 207, 106, 0.5));
}

.header .logo-container:hover .logo-tagline .highlight {
    transform: scale(1.1);
    text-shadow: 0 0 15px rgba(254, 207, 106, 0.5);
}

.header .logo-container:hover .logo-tagline .highlight::after {
    transform: scaleX(1);
}
