
body {
    margin: 0; 
    font-family: 'Roboto', sans-serif;                             /* OVERALL FONT */
    line-height: 1.6;                                             /* FONT SIZE */
    color: #280003;                                               /* OVERALL TEXT COLOR */
    background-color: #F1E3D3;                                    /* OVERALL BACKGROUND COLOR */
}

/* --- Header & Navigation Bar Styling --- */

header {
    background-color: #99C1B9;                                    /* HEADER COLOR */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);                     /* HEADER SHADOW */
    position: sticky; /* Makes header stick to top when scrolling */
    top: 0; /* Sticks it to the very top */
    z-index: 1000; /* Ensures it stays on top of other content */
}

.navbar {
    max-width: 1200px; /* Limit content width for better readability on large screens */
    margin: 0 auto; /* Center the navbar within the header */
    padding: 1rem 2rem; /* Vertical and horizontal padding */
    display: flex; /* Use Flexbox for alignment of logo and links */
    justify-content: space-between; /* Pushes logo to left, links to right */
    align-items: center; /* Vertically centers items in the middle */
}

/* --- Logo Styling --- */
.navbar .logo a {
    color: #F1E3D3;                                              /* LOGO TEXT COLOR */
    text-decoration: none; /* Remove underline from the logo link */
    font-size: 1.8rem; /* Larger font size for prominence */
    font-weight: bold; /* Make the logo text bold */
    letter-spacing: 0.5px; /* Slightly space out letters */
}

/* --- Navigation Links (UL/LI) Styling --- */
.nav-links {
    list-style: none; /* Remove default bullet points from the list */
    margin: 0; /* Remove default margin */
    padding: 0; /* Remove default padding */
    display: flex; /* Arrange list items horizontally */
    gap: 25px; /* Space between each navigation item */
}

.nav-links a {
    color: #F1E3D3;                                             /* NAV LINK COLORS */
    text-decoration: none; /* Remove underline from links */
    padding: 0.5rem 1rem; /* Padding around each link for clickable area */
    transition: background-color 0.3s ease, color 0.3s ease; /* Smooth transition on hover */
    border-radius: 5px; /* Slightly rounded corners for hover effect */
}

.nav-links a:hover,
.nav-links a:focus {
    background-color: #a8dadc;                                 /* HOVER COLOR*/
    color: #1d3557; /* Keep text white on hover/focus */
}

/* --- Main Content Area (Basic Styling) --- */
/* Add some basic styling for your main content to see it below the header */
main {
    max-width: 1200px; /* Match header width for consistency */
    margin: 20px auto; /* Center content and add space below header */
    padding: 20px;
    background-color: #F1E3D3;                                 /* CONTENT SECTION BACKGROUND COLOR */
    border-radius: 8px; /* Slightly rounded corners for content boxes */
    /*box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for content boxes */
    min-height: 80vh; /* Ensure content area takes up most of the viewport */
}

/* --- Footer Styling (Basic) --- */
footer {
    text-align: center;
    padding: 20px;
    margin-top: 40px;
    background-color: #457b9d;                                   /* FOOTER COLOR */
    color: white;
    font-size: 0.9rem;
}

/* --- Responsive Design (Optional, but highly recommended) --- */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column; /* Stack logo and nav links vertically on small screens */
        align-items: flex-start; /* Align items to the start when stacked */
        padding: 1rem; /* Adjust padding for smaller screens */
    }

    .navbar .logo {
        margin-bottom: 15px; /* Space between logo and stacked links */
    }

    .nav-links {
        flex-direction: column; /* Stack links vertically */
        width: 100%; /* Make links take full width */
        gap: 0; /* Remove gap when stacked */
    }

    .nav-links li {
        width: 100%; /* Make each list item take full width */
        text-align: left; /* Align text to the left */
        margin-left: 0; /* Remove left margin */
    }

    .nav-links a {
        display: block; /* Make links block-level to fill width */
        padding: 10px 15px; /* Adjust padding for stacked links */
        border-radius: 0; /* Remove border radius if you don't want it for stacked items */
        border-bottom: 1px solid rgba(255, 255, 255, 0.1); /* Subtle separator */
    }

    .nav-links li:last-child a {
        border-bottom: none; /* No border for the last item */
    }
}
