/* css/style.css */

/* --- General and Typography --- */
body {
    padding-top: 56px; /* Adjust for fixed navbar height */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

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

.display-4 {
    font-weight: 800;
}

.lead {
    font-size: 1.2rem;
    font-weight: 300;
}

/* --- Header / Navbar --- */
.navbar-brand img {
    margin-right: 10px;
}
.navbar .nav-link {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
}

/* --- Carousel / Slider --- */
.carousel-item {
    height: 70vh; /* Adjust height as needed */
    min-height: 400px;
    background: no-repeat center center scroll;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.carousel-item img {
    object-fit: cover;
    height: 100%;
    filter: brightness(0.6); /* Darken images to make text readable */
}

.carousel-caption {
    bottom: 20%;
    background-color: rgba(0, 0, 0, 0.4);
    padding: 20px;
    border-radius: 5px;
}

.carousel-caption h5 {
    font-size: 2.5rem;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

/* --- Page Content --- */
.page-content {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

/* --- Buttons --- */
.btn-primary {
    background-color: #005a87;
    border-color: #005a87;
}

.btn-primary:hover {
    background-color: #003e5c;
    border-color: #003e5c;
}

/* --- Cards --- */
.card {
    border: none;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* --- Footer --- */
footer a {
    text-decoration: none;
    transition: color 0.3s;
}

footer a:hover {
    color: #a7a7a7 !important;
}

.social-icons a {
    transition: transform 0.3s ease-in-out;
}

.social-icons a:hover {
    transform: scale(1.2);
}


