/* Home page specific styles */

.hero-logo {
    height: 56px;
    width: auto;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.35));
}

.hero-logo:hover {
    transform: scale(1.08);
    filter: drop-shadow(0 0 16px rgba(255, 255, 255, 0.55));
}

.background-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/static/images/background.png') center center;
    background-size: cover;
    opacity: 0.12;
    z-index: 0;
    pointer-events: none;
}

.hero-section,
.row.fade-in {
    position: relative;
    z-index: 1;
}
