﻿/* Body and Overall Layout */
body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background-color: #f9f6f0;
}

/* Banner Section */
.banner {
    background-color: #b5d6d6; /* Medium Sky Blue */
    color: #073b4c; /* Dark teal for text */
    text-align: center;
    padding: 10px 0;  /* Reduced height to ~1 inch */
    font-size: 18px;  /* Increased text size for better visibility */
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.banner h3, .banner p {
    margin: 0;
    padding: 2px 0;  /* Reduced space between lines */
    font-size: 20px;  /* Increased font size */
}

.banner h2 {
    font-size: 32px;  /* Increased size for better visibility */
    margin-top: 5px;
    font-weight: bold;
}

/* Social Media Icons */
.social-media-icons {
    display: flex;
    justify-content: flex-start;  /* Align icons to the left */
    gap: 15px;
    margin-bottom: 10px;
}

.social-media-icons a img {
    width: 30px;
    height: 30px;
}

/* Navbar Section */
.navbar {
    display: flex;
    justify-content: flex-start; /* Menu starts from left */
    background-color: #003366; /* Dark Blue for Menu */
    padding: 12px 24px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.menu a, .login a {
    margin-left: 20px;
    text-decoration: none;
    color: #ffffff; /* Gray for menu text */
    font-weight: 500;
    transition: color 0.3s ease;
}

.menu a:hover, .login a:hover {
    color: #ffb3b3; /* Soft pink on hover */
}

/* Footer Section */
.footer {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background-color: #f1f1f1;
        text-align: center;
        padding: 10px 0;
        font-size: 14px;
        color: #333;
    }

.footer p {
    margin: 5px 0;
}
