﻿/* General Styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #e6e6e6;
    color: black;
}

/* Navbar */
.navbar {
    background-color: white !important;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.navbar-nav .nav-link {
    color: #1f4b6b !important;
    font-weight: bold;
}

.navbar-toggler {
    border: none;
}

    .navbar-toggler:focus {
        outline: none;
        box-shadow: none;
    }

/* Logo Size */
.logo-small {
    max-height: 100px;
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 70vh;
    overflow: hidden;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(73, 150, 199, 0.5);
}

/* Hero Text */
.hero .text {
    font-size: 2em;
    font-weight: bold;
    color: white;
    z-index: 2;
}

/* Mobile Styles */
@media screen and (max-width: 768px) {
    .hero .text {
        font-size: 1.5em;
        padding: 10px;
    }
}
