/* CSS for Little Town Playroom Website */
/* Add styles for the sticky navigation bar */
nav {
    background-color: #FFDAB9; /* Peach color, soft and friendly */
    color: #333; /* Darker text for better contrast */
    padding: 10px 0;
    text-align: center;
    position: fixed; /* Makes the nav bar fixed at the top */
    top: 0;         /* Position at the very top */
    width: 100%;    /* Ensure it spans the full width */
    z-index: 1000;  /* Ensures it stays on top of other elements */
}

/* Add styles for the overall page background */
body {
    background-image: url('LittleTownPlayroomImage.webp'); /* Full page background image */
    background-attachment: fixed; /* Make the background image fixed */
    background-position: center; /* Center the background image */
    background-repeat: no-repeat; /* Do not repeat the background image */
    background-size: cover; /* Cover the entire viewport */
    margin: 0;
    padding-top: 60px; /* Adjust top padding for fixed navbar */
    /* Other body styles */


nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

header {

}

section {
    padding: 20px;
    text-align: center;
}

#gallery img {
    width: 100%;
    max-width: 300px;
    margin: 10px;
    border: 3px solid #ddd;
    border-radius: 5px;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px 0;
    position: relative;
    bottom: 0;
    width: 100%;
}
