/* General Styles */
body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
}

.alert { width: 40%; margin: 1em auto; background-color: #d4cfbc; }

/* Navbar Styles */
.navbar {
    background-color: #343a40;
}

.navbar-brand {
    font-weight: bold;
    color: white;
}

.navbar-nav .nav-link {
    color: white;
}

.navbar-nav .nav-link:hover {
    color: #007bff;
}

/* Hero Section */
.hero {
    background: url('hero-ylf.jpg') center center/cover no-repeat;
    padding: 150px 0;
    color: white;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    padding: 20px;
    text-shadow: black 2px 5px; /* Drop shadow */
    display: inline-block; /* Keeps the text size tight around the shadow */
    margin: 0 auto; /* Centers the element */
}

.hero p {
    font-size: 1.2rem;
    text-shadow: black 2px 2px; /* Drop shadow */
}

.hero .btn, #about .team-bios {
    font-size: 1.1rem;
    padding: 12px 40px;
    border-radius: 30px;
    background-color: #d4cfbc;
    border: none;
}

/* About Section */
#about {
    background-color: #f8f9fa;
}

#about p {
    max-width: 800px;
    margin: 0 auto;
    padding-bottom: 2em;
}

/* Services Section */
#services .card {
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

#services .card-title {
    font-weight: bold;
}

/* Contact Section */
#contact form .form-control {
    border-radius: 30px;
    padding: 12px 20px;
    font-size: 1rem;
}

#contact .btn {
    font-size: 1.1rem;
    padding: 12px 40px;
    background-color: #007bff;
    border: none;
    border-radius: 30px;
}

/* Footer */
footer {
    background-color: #343a40;
    color: white;
}

.login-container {
    max-width: 400px;
    margin: 0 auto;
    padding: 30px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
