/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fdf6e3; /* Light beige Easter theme */
    color: #333;
    background: url('WhatsApp Image 2025-02-08 at 16.08.45_d094dd12.jpg') no-repeat center center/cover;
    background-attachment: fixed; /* Makes the background stay fixed when scrolling */
    height: 100vh;
}

/* Header Styling */
header {
    text-align: center;
    background-color: #ffcc00; /* Yellow, Easter theme */
    padding: 20px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

.logo-container img {
    width: 100px;
    height: auto;
}

/* Navigation Bar */
nav {
    margin-top: 10px;
}

nav a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    margin: 0 15px;
    padding: 10px;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}

nav a:hover {
    background-color: #ff9900; /* Orange highlight */
    color: white;
}

/* Main Content */
main {
    text-align: center;
    padding: 40px;
}
/* Section Styling - Shadow Box */
section {
    background-color: white; /* White background for contrast */
    padding: 30px;
    margin: 40px auto; /* Centering */
    width: 80%; /* Adjust width */
    max-width: 600px; /* Limit max size */
    border-radius: 15px; /* Rounded corners */
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2); /* Shadow effect */
    text-align: center;
}


h1 {
    font-size: 32px;
    color: #4d2600; /* Dark brown */
}

h2 {
    color: #ff6600; /* Orange */
}

h3 {
    color: #cc3300; /* Dark red */
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background-color: #ffcc00;
    position: fixed;
    bottom: 0;
    width: 100%;
}
