/* static/website/home/desktop.css */
/* Home Page Desktop Styles */

/* ========== BANNER STYLES ========== */
.desktop-banner-section {
    display: block;
    margin-bottom: 2rem;
}

.main-banner {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: var(--transition-base);
    position: relative;
}

.main-banner:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.main-banner img {
    width: 100%;
    height: auto;
    max-height: 350px;
    object-fit: cover;
}

.banner-static {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: var(--transition-base);
    position: relative;
}

.banner-static:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.banner-static img {
    width: 100%;
    height: auto;
    max-height: 350px;
    object-fit: cover;
}

.banner-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.9), transparent);
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    text-align: right;
}

.banner-caption h5 {
    color: var(--primary-orange);
    font-weight: 700;
    margin: 0;
    font-size: 1.3rem;
}

/* Carousel Custom Styles - Desktop */
.desktop-banner-section .carousel-indicators {
    bottom: 10px;
    z-index: 15;
}

.desktop-banner-section .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid var(--primary-orange);
    margin: 0 5px;
    transition: var(--transition-base);
}

.desktop-banner-section .carousel-indicators button.active {
    background-color: var(--primary-orange);
    width: 14px;
    height: 14px;
}

.desktop-banner-section .carousel-control-prev,
.desktop-banner-section .carousel-control-next {
    width: 44px;
    height: 44px;
    background: rgba(15, 23, 42, 0.7);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    margin: 0 15px;
    transition: var(--transition-base);
    opacity: 0;
}

.desktop-banner-section .main-banner:hover .carousel-control-prev,
.desktop-banner-section .main-banner:hover .carousel-control-next {
    opacity: 1;
}

.desktop-banner-section .carousel-control-prev:hover,
.desktop-banner-section .carousel-control-next:hover {
    background: var(--primary-orange);
}

/* Mobile banner hidden on desktop */
.mobile-banner-section {
    display: none;
}

/* No banner message */
.no-banner {
    background: linear-gradient(135deg, var(--dark-blue) 0%, #1a2340 100%);
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    text-align: center;
    color: var(--text-on-dark);
    margin-bottom: 2rem;
    opacity: 0.7;
}

.no-banner i {
    font-size: 3rem;
    color: var(--primary-orange);
    margin-bottom: 1rem;
    opacity: 0.5;
}

.no-banner h5 {
    color: var(--text-on-dark);
    margin: 0;
    font-weight: 400;
}

/* ========== SEARCH RESULTS ========== */
.search-results-container {
    display: none;
    margin-top: 1rem;
}

.search-results-container.active {
    display: block;
}

.no-results {
    text-align: center;
    padding: 3rem;
    background: white;
    border-radius: var(--border-radius-md);
    box-shadow: var(--card-shadow);
}

.no-results i {
    font-size: 3rem;
    color: var(--blueish-gray);
    opacity: 0.5;
}

/* User Card Image Placeholder */
.user-card-image-placeholder {
    width: 100%;
    height: 200px;
    background: var(--very-light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
}