﻿.navbar-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    padding: 0.25rem 0;
    margin-right: 1.5rem;
}

    .navbar-brand:hover {
        text-decoration: none;
    }

.brand-icon {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 8px rgba(244, 114, 182, 0.4));
    transition: transform 0.25s ease;
}

.navbar-brand:hover .brand-icon {
    transform: scale(1.1);
}

.brand-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.02em;
    line-height: 1;
}

.brand-accent {
    color: #f9a8d4;
}

/* Header: sticky dark navy bar */
.site-header {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

    .site-header.border-bottom {
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .site-header .nav-link {
        color: rgba(255, 255, 255, 0.8);
        font-weight: 500;
        transition: color 0.2s ease;
    }

        .site-header .nav-link:hover,
        .site-header .nav-link:focus {
            color: #f9a8d4;
        }

    .site-header .btn-outline-primary {
        color: #f9a8d4;
        border-color: rgba(244, 114, 182, 0.35);
        background: transparent;
        transition: all 0.2s ease;
    }

        .site-header .btn-outline-primary:hover,
        .site-header .btn-outline-primary:focus {
            color: #0f172a;
            background: #f9a8d4;
            border-color: #f9a8d4;
        }

    .site-header .navbar-toggler {
        border-color: rgba(255, 255, 255, 0.15);
    }

    .site-header .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }

/* Footer: pinned to bottom, transparent over scene */
.site-footer {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 1rem 1.5rem;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.footer-inner {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.55);
}

    .footer-inner a {
        color: #f9a8d4;
        text-decoration: none;
        transition: color 0.2s;
    }

        .footer-inner a:hover {
            color: #fff;
        }

@media (max-width: 576px) {
    .brand-text {
        font-size: 1rem;
    }

    .brand-icon {
        width: 28px;
        height: 28px;
    }
}
