/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-color: #6e6ef1; /* Lavender purple */
    color: #333;
}

header {
    background-color: #4e429b; /* Darker purple for header */
    color: white;
    padding: 15px 20px;
}

header h1 {
    margin: 0;
    font-size: 2em;
}

nav {
    margin-top: 10px;
}

nav a {
    color: white;
    text-decoration: none;
    margin-right: 20px;
    font-weight: bold;
}

nav a:hover {
    text-decoration: underline;
}

main {
    padding: 20px;
}

h2 {
    margin-top: 0;
}

/* Card style for sections */
.card {
    background-color: white;
    padding: 15px;
    margin: 15px 0;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

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

.gallery-grid img {
    width: 100%;
    border-radius: 5px;
}

/* Form styling */
form input, form select, form textarea {
    width: 100%;
    max-width: 400px;
    padding: 8px;
    margin: 5px 0 15px 0;
    border-radius: 4px;
    border: 1px solid #ccc;
}

/* Footer */
footer {
    background-color: #6A5ACD;
    color: white;
    padding: 15px 20px;
    margin-top: 30px;
}

footer a {
    color: white;
    text-decoration: none;
    margin-right: 10px;
}

footer a:hover {
    text-decoration: underline;
}
