﻿/* Custom styles to complement Bootstrap */
:root {
    --primary-color: #e12744;
    --primary-dark: #c11a35;
    --primary-light: #f8e6e9;
}

/* Hero section adjustments */
.hero-section {
    padding: 6rem 0;
}

/* Grayscale effect for partner logos */
.grayscale {
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

    .grayscale:hover {
        filter: grayscale(0%);
        opacity: 1;
    }

/* Custom button styles */
.btn-danger {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

    .btn-danger:hover {
        background-color: var(--primary-dark);
        border-color: var(--primary-dark);
    }

.btn-outline-danger {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

    .btn-outline-danger:hover {
        background-color: var(--primary-color);
        color: white;
    }

/* Card hover effects */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
    }

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section {
        padding: 4rem 0;
    }

    .display-4 {
        font-size: 2.5rem;
    }
}
/* Comparison Table Styles */
.comparison-table {
    font-size: 0.9rem;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 8px;
    overflow: hidden;
}

    .comparison-table th {
        vertical-align: middle;
        text-align: center;
        white-space: nowrap;
        padding: 12px 8px;
    }

    .comparison-table td {
        padding: 10px 8px;
        vertical-align: middle;
    }

    .comparison-table thead th:first-child {
        text-align: left;
        width: 25%;
    }

    .comparison-table tbody td:first-child {
        text-align: left;
        font-weight: 500;
    }

    .comparison-table .table-group-divider {
        border-top: 2px solid #dee2e6;
    }

        .comparison-table .table-group-divider td:first-child {
            font-weight: bold;
            background-color: rgba(225, 39, 68, 0.05);
        }

/* Badge styles */
.badge {
    padding: 0.35em 0.65em;
    font-size: 0.75em;
    font-weight: 600;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .comparison-table {
        font-size: 0.8rem;
    }

        .comparison-table th,
        .comparison-table td {
            padding: 8px 4px;
        }
}

/* Secondary Page Specific Styles */
.content-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.card {
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 20px;
}

    .card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
    }

.breadcrumb {
    background-color: transparent;
    padding: 0;
}

.breadcrumb-item.active {
    color: #6c757d;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .content-section {
        padding: 40px 0;
    }

    .display-5 {
        font-size: 2.2rem;
    }
}

/* Small Banner Styles */
.small-banner {
    padding: 15px 0;
    background-color: #f8f9fa; /* Light background if image doesn't cover full width */
}

    .small-banner img {
        height: 150px; /* Fixed height for consistency */
        width: 100%;
        object-fit: cover; /* Ensures image covers the space nicely */
        object-position: center; /* Centers the image */
        border: 1px solid #e0e0e0; /* Optional subtle border */
        box-shadow: 0 2px 4px rgba(0,0,0,0.1); /* Subtle shadow */
    }

/* Responsive adjustments */
@media (max-width: 768px) {
    .small-banner img {
        height: 120px; /* Slightly smaller on mobile */
    }
}

/* ===== Banner Styles ===== */
/* ===== Banner with Text Overlay ===== */
.page-banner {
    position: relative;
    height: 300px;
    margin-bottom: 40px;
    background: url('images/banner-main.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    //background-color: rgba(0, 0, 0, 0.4); /* Dark overlay */
}

.banner-content {
    position: relative;
    z-index: 2;
    padding: 20px;
    max-width: 800px;
}

    .banner-content h1 {
        font-size: 3.5rem;
        font-weight: 700;
        margin-bottom: 15px;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    }

    .banner-content .lead {
        font-size: 1.5rem;
        text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    }

/* Responsive Adjustments */
@media (max-width: 992px) {
    .page-banner {
        height: 250px;
    }

    .banner-content h1 {
        font-size: 3rem;
    }

    .banner-content .lead {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .page-banner {
        height: 200px;
    }

    .banner-content h1 {
        font-size: 2.5rem;
    }

    .banner-content .lead {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .page-banner {
        height: 180px;
    }

    .banner-content h1 {
        font-size: 2rem;
    }

    .banner-content .lead {
        font-size: 1rem;
    }
}

/* ===== Team Member Styles ===== */
.rounded-circle {
    object-fit: cover;
    border: 3px solid #e12744;
}

