/* Layout Styles - Extracted from layouts/siteSpeaks.blade.php */

/* Logo Styles */
.logo-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s ease;
}

.logo-link:hover {
    opacity: 0.8;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo img {
    width: 32px;
    height: 32px;
}

.nav-logo span {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-logo img {
    width: 32px;
    height: 32px;
}

.footer-logo span {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
}

/* Back to Top Button */
#backToTop {
    position: fixed;
    bottom: 32px;
    right: 24px;
    z-index: 999;
    display: none;
    padding: 0.7rem 1.2rem;
    border-radius: 2rem;
    background: #2340a0;
    color: #fff;
    font-weight: 700;
    border: none;
    box-shadow: 0 2px 8px rgba(35,64,160,0.13);
    cursor: pointer;
}

/* NoScript Styles */
.noscript .fade-in {
    opacity: 1 !important;
    transform: none !important;
}

.noscript-message {
    padding: 1rem;
    text-align: center;
    color: #b00;
} 