/* Custom Styles for West London RPC Look-alike */
:root {
    --primary-color: #1a1a40; /* Dark Blue/Purple */
    --accent-color: #2c3e50;
    --text-color: #333;
    --bg-light: #f4f6f9;
}

body {
    background-color: var(--bg-light);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Top Bar (Logo & CTAs) */
.top-bar {
    background-color: #fff;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.site-title {
    font-weight: 700;
    color: #000;
    font-size: 1.5rem;
    line-height: 1.2;
}

.btn-custom-dark {
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 4px; /* Slight rounded corners */
    padding: 8px 20px;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.btn-custom-dark:hover {
    background-color: #2a2a60;
    color: #fff;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

/* Navigation Strip */
.navbar-custom {
    background-color: var(--primary-color);
    padding: 0.8rem 1rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.navbar-custom .navbar-brand {
    font-weight: 700;
    font-size: 1.4rem;
    color: #fff;
    display: flex;
    align-items: center;
}

.navbar-custom .navbar-brand img {
    height: 45px;
    margin-right: 12px;
}

.navbar-custom .nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.5rem 1rem !important;
    transition: all 0.2s ease;
    border-radius: 4px;
}

.navbar-custom .nav-link:hover,
.navbar-custom .nav-item.active .nav-link {
    color: #fff !important;
    background-color: rgba(255,255,255,0.1);
    transform: translateY(-1px);
}

.navbar-custom .btn-cta {
    background-color: #d9534f; /* Accent Red */
    color: white;
    font-weight: 700;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
}

.navbar-custom .btn-cta:hover {
    background-color: #c9302c;
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0,0,0,0.25);
    color: white;
}

/* Hero Section */
.hero-wrapper {
    position: relative;
    height: 400px;
    overflow: hidden;
    background-color: #000; /* Fallback */
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    opacity: 0.6; /* Dim the image slightly */
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(26, 26, 64, 0.9), rgba(26, 26, 64, 0.4));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
}

/* Global Card Enhancements */
.hover-card {
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    border: none;
    box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.15);
}

.hover-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 2rem 0 rgba(58, 59, 69, 0.25) !important;
}

.icon-circle {
    height: 3rem;
    width: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

/* Section Headings */
h2.font-weight-bold {
    position: relative;
    padding-bottom: 15px;
}

h2.font-weight-bold::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

h2.font-weight-bold.text-center::after {
    left: 50%;
    transform: translateX(-50%);
}

.text-md-right h2.font-weight-bold::after {
    left: auto;
    right: 0;
    transform: none;
}

/* Utilities */
.border-left-primary {
    border-left: 0.25rem solid var(--primary-color) !important;
}

.border-top-primary {
    border-top: 0.25rem solid var(--primary-color) !important;
}

.text-primary-custom {
    color: var(--primary-color) !important;
}
