/* style.css */

body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    background-color: #fff0f5; /* light pink background */
    color: #4b2e2e; /* dark brown text */
}

header {
    background-color: #d88f8f; /* muted pink */
    padding: 15px 20px;
    color: white;
}

header h1 {
    margin: 0;
    font-family: 'Georgia', serif;
    font-weight: bold;
}

nav {
    background-color: #7a4e4e; /* darker brown */
}

nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
}

nav ul li {
    margin: 0;
}

nav ul li a {
    display: block;
    padding: 15px 20px;
    color: white;
    text-decoration: none;
    font-weight: bold;
}

nav ul li a:hover,
nav ul li a.active {
    background-color: #d88f8f;
    color: #4b2e2e;
}

.container {
    padding: 20px;
    max-width: 900px;
    margin: 0 auto;
    background: white;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    border-radius: 8px;
    margin-top: 20px;
}

footer {
    background-color: #7a4e4e;
    color: white;
    text-align: center;
    padding: 15px;
    margin-top: 40px;
    font-size: 0.9em;
}

/* Form Styles */
form label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

form input[type="text"],
form input[type="email"],
form input[type="date"],
form input[type="time"],
form select,
form textarea {
    width: 100%;
    padding: 8px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

form button {
    background-color: #d88f8f;
    border: none;
    padding: 10px 20px;
    color: #4b2e2e;
    font-weight: bold;
    cursor: pointer;
    border-radius: 4px;
}

form button:hover {
    background-color: #7a4e4e;
    color: white;
}

/* Gallery images */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
    gap: 15px;
}

.gallery-grid img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* Responsive Nav */
@media(max-width: 600px){
    nav ul {
        flex-direction: column;
    }
}