.navbar-brand {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
}

.navbar {
    background-color: #1976d2;
    height: 85px;
}

/* Banner Section */
.banner-section {
    position: relative;
    background-color: rgba(25, 118, 210, 0.1);
}

.banner-image {
    height: 600px;
    object-fit: cover;
    width: 100%;
}

.banner-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(255, 255, 255, 0.75);
    border-radius: 1rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    width: 100%;
    max-width: 1320px; /* matches Bootstrap's container width */
    margin: 0 auto;
    z-index: 2;
}

.banner-content h1 {
    font-size: 2rem;
}

.lead {
    font-size: 1.1rem;
}

.product-section {
    background-color: #1976d2;
}

.dashboard-preview {
    cursor: pointer;
    transition: transform 0.2s;
    max-height: 400px;
    object-fit: contain;
}

.dashboard-preview:hover {
    transform: scale(1.02);
}

.product-banner {
    height: 50px;
}

.modal-xl {
    max-width: calc(75%) !important;
}

.product-carousel-container {
    min-height: 400px;
}

.product-carousel-container .carousel-item {
    height: 100%;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .navbar {
        height: auto !important;
        padding: 10px 0;
    }

    .navbar-brand img {
        height: 60px !important;
    }

    /* Mobile Banner Adjustments */
    .banner-section {
        padding: 2rem 0;
        height: auto;
        display: flex;
        flex-direction: column;
    }

    .banner-image {
        position: absolute;
        height: 100%;
        top: 0;
        left: 0;
        z-index: 1;
    }

    .banner-overlay {
        position: relative;
        transform: none;
        top: 0;
        left: 0;
        width: auto;
        margin: 1rem;
        background-color: rgba(255, 255, 255, 0.9);
    }

    .banner-content {
        padding: 0 !important;
    }

    .banner-content h1 {
        font-size: 1.75rem;
    }

    .product-carousel-container {
        min-height: auto;
    }

    .carousel-item .row {
        margin: 0;
    }

    .carousel-item .col-md-6 {
        margin-bottom: 20px;
    }

    .carousel-item .btn {
        width: 100%;
        margin-bottom: 10px;
    }

    .carousel-item .d-flex.gap-3 {
        flex-direction: column;
    }

    h2 {
        font-size: 1.5rem;
    }

    .lead {
        font-size: 1rem !important;
    }

    .modal-xl {
        max-width: 95% !important;
    }
} 