/* Navbar */
.custom-navbar {
    background: linear-gradient(to right, #ffffff 30%, #28a745 70%);
    padding: 10px 0;
    transition: all 0.3s;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.custom-navbar.scrolled {
    background: #28a745;
    padding: 5px 0;
}

.navbar-nav .nav-link {
    color: #fff;
    font-weight: 500;
    padding: 8px 15px;
    margin: 0 3px;
    border-radius: 4px;
    transition: all 0.3s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    background-color: rgba(255,255,255,0.2);
    color: #fff;
}

.navbar-brand img {
    transition: all 0.3s;
}

.custom-navbar.scrolled .navbar-brand img {
    height: 60px;
    width: 60px;
}

@media (max-width: 991.98px) {
    .custom-navbar {
        background: #28a745;
    }
    .navbar-nav {
        padding: 10px 0;
    }
    .navbar-nav .nav-link {
        text-align: right;
        padding: 10px 0;
        margin: 5px 0;
    }
}

/* Hero Section */
.hero {
    position: relative;
    background: url('../imgs/dinner.jpeg') no-repeat center center/cover;
    color: #fff;
    min-height: 80vh;
    display: flex;
    align-items: center;
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero * {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

/* Cards */
.card {
    transition: transform 0.3s, box-shadow 0.3s;
    border-radius: 8px;
    overflow: hidden;
}

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

/* Progress bars */
.progress {
    border-radius: 3px;
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    .hero p {
        font-size: 1.2rem;
    }
}

/* General Section Styling */


/* Title Styling */
.section-title {
    font-size: 2.2rem; /* Adjusted font size for better proportion */
    font-weight: bold;
    margin-bottom: 0.8rem; /* Reduced bottom margin */
}

/* Description Styling */
.section-description {
    font-size: 1rem; /* Slightly smaller font size */
    line-height: 1.6; /* Reduced line height for more compact text */
    color: #555;
}

/* Use custom lime green and red colors */
.text-success {
    color: #32CD32 !important;
}

.text-danger {
    color: #FF0000 !important;
}

.btn-success {
    background-color: #32CD32 !important; 
    border-color: #32CD32 !important;
}

.btn-success:hover {
    background-color: #28a745 !important; 
}

.additional-info {
    background-color: white;
    padding: 40px;
    margin-bottom: 5px;
    border: 2px solid #32CD32; 
    border-radius: 8px; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
}

.list-unstyled li {
    font-size: 1.1rem;
    line-height: 1.8;
}

.icon-wrapper {
    font-size: 40px;
}



#vision {
    padding: 2.5rem 0; /* Reduced padding for the Vision section */
}

#vision .section-title {
    color: #222;
}

#vision .section-description {
    color: #555;
}

#vision img {
    max-height: 300px; /* Restrict image height for better balance */
    object-fit: cover; /* Ensure the image remains well-framed */
}

/* Mission Section Specific Styling */
#mission {
    padding: 2.5rem 0; /* Reduced padding for the Mission section */
    background: linear-gradient(135deg, limegreen, limegreen);
}

#mission .section-description {
    color: #fff;
    font-size: larger;
}

#mission img {
    max-height: 300px; /* Restrict image height for better balance */
    object-fit: cover; /* Ensure the image remains well-framed */
}

/* Button Styling */
.btn-primary {
    background: linear-gradient(135deg, rgb(24, 155, 12), rgb(24, 155, 12));
    border: none;
    color: white;
}

.btn-primary:hover {
    background: rgb(24, 155, 12);
}

.btn-outline-light {
    border: 2px solid white;
    color: white;
}

.btn-outline-light:hover {
    background: white;
    color: rgb(24, 155, 12);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .vision-text, .mission-text {
        text-align: center;
    }

    .section-title {
        font-size: 1.8rem; /* Adjusted font size for smaller screens */
    }

    .section-description {
        font-size: 0.9rem; /* Adjusted font size for smaller screens */
    }

    #vision img, #mission img {
        max-height: 200px; /* Reduce image height further for smaller screens */
    }
}




/* Footer General Styles */
footer {
    background-color: red;
    color: #fff;
    padding-top: 2rem;
    font-size: large;
}

/* Footer Top Section */
.footer-top {
    border-bottom: 1px solid #555;
    padding-bottom: 2rem;
    margin-bottom: 1rem;
}

.footer-section {
    margin-bottom: 1.5rem;
}

.footer-section h4 {
    font-size: large;
    margin-bottom: 1rem;
    color: #000;
}

.footer-section p {
    line-height: 1.5;
    color: #fff;
}

.footer-section a {
    color: skyblue;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: large;
}

.footer-section a:hover {
    color: #fff;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links li a {
    text-decoration: none;
    color: skyblue;
    transition: color 0.3s ease;
}

.footer-links li a:hover {
    color: #fff;
}


/* Footer Bottom Section */
.footer-bottom {
    padding: 1rem 0;
    background-color: red;
    text-align: center;
}

.footer-bottom p {
    margin: 0.5rem 0;
    color: #aaa;
}

.footer-bottom a {
    color: skyblue;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #fff;
}
