@charset "utf-8";

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    background-color: #f0f8ff;
}

body {
    font-family: Verdana, Geneva, sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #fff;
}

/* Header */
header img {
    width: 100%;
    display: block;
}

/* Navigation */
nav {
    background: linear-gradient(to right, #0066cc, #003366);
    padding: 1rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

nav li {
    margin: 0 1.2rem;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

nav a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
    font-size: 1.2em;
}

/* Main content */
main {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.business-header {
    text-align: center;
    padding: 2.5rem 1rem;
    background: linear-gradient(135deg, #ff6600, #cc0000);
    color: white;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.business-header h1 {
    margin: 0;
    font-size: 3em;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.4);
}

.business-header p {
    margin: 0.8rem 0 0;
    font-size: 1.3em;
}

/* Headings */
h1, h2 {
    color: #0066cc;
    margin-bottom: 1rem;
}

/* Gallery */
.event-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    margin: 2rem 0;
}

.event-gallery figure {
    margin: 0;
    text-align: center;
    flex: 1 1 280px;
    max-width: 340px;
}

.event-gallery img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0,0,0,0.2);
    transition: transform 0.3s;
}

.event-gallery img:hover {
    transform: scale(1.06);
}

.event-gallery figcaption {
    margin-top: 0.8rem;
    font-weight: bold;
    font-size: 1.1em;
}

/* Form */
form {
    max-width: 700px;
    margin: 2rem auto;
    padding: 2rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

fieldset {
    border: 1px solid #ccc;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
}

legend {
    font-weight: bold;
    padding: 0 12px;
    background: white;
}

label {
    display: block;
    margin: 1rem 0 0.5rem;
    font-weight: bold;
}

input, select, textarea {
    width: 100%;
    padding: 0.9rem;
    margin-bottom: 1.2rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1em;
}

button {
    background-color: #0066cc;
    color: white;
    padding: 0.9rem 2rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1.1rem;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #004080;
}

/* Footer */
footer {
    background-color: #0066cc;
    color: white;
    text-align: center;
    padding: 1.5rem;
    margin-top: 3rem;
}

/* Responsive */
@media only screen and (max-width: 768px) {
    nav ul {
        flex-direction: column;
        text-align: center;
    }

    nav li {
        margin: 0.6rem 0;
    }

    .event-gallery figure {
        flex: 1 1 100%;
        max-width: 100%;
    }

    main {
        padding: 1rem;
    }
}