/* Global Styles */
:root {
    --primary-color: #0d6efd;
    /* Bootstrap Primary Blue */
    --secondary-color: #6c757d;
    --silver-color: #C0C0C0;
    --dark-bg: #212529;
    --light-bg: #f8f9fa;
}

body {
    font-family: 'Inter', sans-serif;
    color: #333;
    line-height: 1.6;
    padding-top: 76px;
    /* Height of fixed navbar */
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
}

/* Navbar */
.navbar-brand img {
    max-height: 80px;
}

.nav-link {
    font-weight: 600;
    color: #333 !important;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
}

/* Hero Carousel */
.carousel-item {
    height: 600px;
    background-color: #000;
}

.carousel-item img {
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    /* Darken image for text readability */
}

.carousel-caption {
    bottom: 20%;
}

.carousel-caption h2 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

.carousel-caption p {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
    font-size: 1.25rem;
}

/* Sections */
section {
    padding: 80px 0;
}

.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;
}

/* Footer */
footer a {
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--silver-color) !important;
}

/* Custom Utilities */
.text-silver {
    color: var(--silver-color);
}

.bg-silver {
    background-color: var(--silver-color);
}