﻿html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}

/* Full height for the section */
.full-screen-image {
    width: 100%;
    height: 65vh; /* Full viewport height */
    overflow: hidden;
}

    /* Make the image fill the section, covering it entirely */
    .full-screen-image img {
        width: 100%;
        height: 100%;
        object-fit: cover; /* Ensure the image covers the entire section */
        object-position: center; /* Center the image */
    }

/* Responsive adjustments for mobile */
@media (max-width: 768px) {
    .full-screen-image img {
        object-position: center;
    }
}
/* Increase font size and padding for the nav links */
.navbar-nav .nav-link {
    font-size: 1.25rem; /* Increase font size */
    padding: 10px 20px; /* Add more padding for larger buttons */
    margin-left: 15px; /* Add space between the buttons */
    font-weight: bold;
}

/* Optionally increase padding on smaller screens */
@media (max-width: 768px) {
    .navbar-nav .nav-link {
        font-size: 1.1rem; /* Slightly smaller on mobile */
        padding: 8px 15px;
        margin-left: 10px;
        font-weight: bold;
    }
}

.aboutus-text {
    text-align: justify;
}
/* Footer styling */
footer {
    background-color: #333; /* Optional: Dark background for contrast */
    color: #ccc; /* Keep text color muted */
    padding: 15px 0;
}

/* Footer Links */
#links a {
    color: white !important; /* Make links white */
    font-size: 1rem; /* Increase font size */
    font-weight: bold;
}

    #links a:hover {
        color: #f8f9fa; /* Slightly lighter color on hover */
        text-decoration: underline;
    }

/* Footer text below links */
footer div {
    font-size: 0.85rem; /* Slightly smaller text */
    color: #aaa; /* Keep text readable but subtle */
}

/* Ensure text wraps properly */
footer div {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Adjust footer text size for mobile */
@media (max-width: 768px) {
    #links a {
        font-size: 0.9rem; /* Slightly smaller on mobile */
    }

    footer div {
        font-size: 0.75rem; /* Even smaller text for mobile */
    }
}
