/* ===================================
   Opulent Computing - Custom Styles
   =================================== */

/* Primary color override (optional: change to match your brand) */
:root {
    --bs-primary: #0d6efd;        /* Keep Bootstrap blue or change to your preferred accent */
    --bs-primary-rgb: 13, 110, 253;
}

/* Ensure video fills the container properly */
.about-video-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 0.5rem;
}

.about-video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Improve service cards on hover */
.service-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Partner images responsive & centered */
.partner-img {
    max-height: 120px;
    width: auto;
    transition: transform 0.3s ease;
}

.partner-img:hover {
    transform: scale(1.05);
}

/* Better mobile spacing */
@media (max-width: 768px) {
    .navbar-brand img {
        height: 40px !important;
    }
    
    .display-3 {
        font-size: 2.5rem;
    }
    
    .service-item {
        margin-bottom: 30px;
    }
}

/* Optional: Dark mode support (if you want to add later) */
/*
@media (prefers-color-scheme: dark) {
    body {
        background-color: #121212;
        color: #e0e0e0;
    }
    .bg-white {
        background-color: #1e1e1e !important;
    }
    .bg-light {
        background-color: #2d2d2d !important;
    }
}
*/

/* Footer link colors */
.footer a {
    color: #aaa;
    text-decoration: none;
}

.footer a:hover {
    color: var(--bs-primary);
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Optional: Add a subtle overlay on carousel if video ever goes there */
.header-carousel .owl-item img {
    filter: brightness(0.7);
}