/* Logo Styling */
.logo-image {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 12px;
    border: 2px solid #fff;
}

.brand-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.brand-text {
    font-weight: 700;
    font-size: 1.25rem;
}

.brand-accent {
    color: #ff6b6b;
}

/* Navbar Styling */
.site-navbar {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.nav-link-custom {
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link-custom:hover {
    color: #ff6b6b;
}

/* Contact Bar */
.contact-bar {
    background-color: #f8f9fa;
    padding: 10px 0;
    font-size: 0.875rem;
}

.contact-item {
    color: #666;
}

.contact-cta {
    color: #ff6b6b;
    text-decoration: none;
    font-weight: 600;
}

/* Button Styling */
.btn-nav-login,
.btn-nav-signup {
    padding: 8px 20px;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
}

.btn-nav-login {
    background-color: transparent;
    color: #ff6b6b;
    border: 1px solid #ff6b6b;
}

.btn-nav-login:hover {
    background-color: #ff6b6b;
    color: #fff;
}

.btn-nav-signup {
    background-color: #ff6b6b;
    color: #fff;
    border: 1px solid #ff6b6b;
}

.btn-nav-signup:hover {
    background-color: #e55a5a;
    border-color: #e55a5a;
}

/* Footer */
.site-footer {
    background-color: #f8f9fa;
    padding: 40px 0;
    margin-top: 60px;
    border-top: 1px solid #e9ecef;
}
