/* ===== General Styles ===== */
/* Ensures the body takes up the full screen height */
html, body {
    height: 100%;
    display: flex;
    flex-direction: column;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-top: 55px; /* Prevents content from being hidden under the navbar */
}

/* ===== Main Content (Ensures footer stays at the bottom) ===== */
main {
    flex-grow: 1; /* Expands to fill available space */
}

/* ===== Typography ===== */
h1, h2 {
    color: #2c3e50;
}

/* ===== Primary Button Styles ===== */
.btn-primary {
    background-color: #3498db;
    border: none;
}

.btn-primary:hover {
    background-color: #2980b9;
}

/* ===== Navbar Styles ===== */
/* Navbar icons */
.navbar-nav .nav-link i {
    color: white;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link i:hover {
    color: #3498db;
}

/* Responsive Navbar Adjustments */
@media (max-width: 992px) {
    .navbar-nav {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .navbar-nav .nav-item {
        width: 100%;
        text-align: center;
    }

    /* Social media icons alignment in the navbar */
    .navbar-nav .social-icons {
        display: flex;
        justify-content: center;
        gap: 15px;
        margin-top: 10px;
    }

    .navbar-nav .social-icons .nav-item {
        display: inline-block;
        width: auto;
    }
}

/* Social media icons alignment for larger screens */
@media (min-width: 993px) {
    .social-icons {
        display: flex;        
    }
}

/* ===== Footer Styles (Always sticks to the bottom) ===== */
footer {
    background: #2c3e50;
    color: white;
    padding: 15px 0;
    text-align: center;
    margin-top: auto; /* Ensures the footer stays at the bottom */
}

/* Footer links */
footer a {
    color: white;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}
