/* Import Montserrat font from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

/* General Styles */
body {
    font-family: 'Montserrat', sans-serif;
    background-color: #f0fdf4; /* Light green background */
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    min-height: 100vh;
}

/* Navbar */
.navbar {
    background-color: #4caf50 !important; /* Green navbar */
    padding: 1rem 0; /* Increase padding for broader appearance */
}

.navbar-brand, .nav-link {
    color: #fff !important;
}

.btn-light {
    background-color: #ffffff !important; /* White buttons */
    border-color: #ffffff !important;
}

.btn-danger {
    background-color: #dc3545 !important; /* Red buttons */
    border-color: #dc3545 !important;
}

/* Carousel */
.carousel-item {
    height: 65vh;
    min-height: 300px;
    background: no-repeat center center scroll;
    background-size: cover;
}

.carousel-caption {
    bottom: 220px;
}

.carousel-caption h5 {
    font-size: 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 25px;
}

.carousel-caption p {
    width: 75%;
    margin: auto;
    font-size: 1.2rem;
    line-height: 1.9;
}

/* Footer */
footer {
    background-color: #4caf50 !important; /* Green footer */
    color: white;
    padding: 1rem 0;
    text-align: center;
    width: 100%;
    position: absolute;
    bottom: 0;
}

/* Logo */
.navbar-brand img {
    border-radius: 50%; /* Make the logo round */
}

