/* Base Styles */
body {
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #fdfdfd;
    line-height: 1.6;
}

h1, h2, h3, h4 {
    margin-bottom: 0.5rem;
}

header, section, footer {
    padding: 2rem 1rem;
    max-width: 1000px;
    margin: auto;
}

.main-header {
    background: #1a1a1a;
    color: white;
    text-align: center;
    padding: 3rem 1rem;
}

.main-header h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.subheader {
    font-size: 1.1rem;
    color: #ddd;
}

/* Section Layout */
.about, .package, .prom, .events, .gallery, .contact {
    background: white;
    margin: 1rem 0;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.package ul,
.prom ul,
.events ul {
    list-style: none;
    padding-left: 0;
}

.package li,
.prom li,
.events li {
    margin: 0.5rem 0;
}

.price {
    font-size: 1.2rem;
    font-weight: bold;
    margin-top: 1rem;
}

/* Gallery */
.gallery .photos {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.gallery img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 5px;
}

<-- /* Contact Form */
.contact form {
    text-align: left; /* keep inputs aligned properly */
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact {
    background: white;
    margin: 2rem auto; /* centers it */
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    max-width: 600px; /* keeps it from stretching too wide */
    text-align: center; /* centers headings and messages */
}

.contact input,
.contact textarea {
    padding: 0.75rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    transition: border-color 0.3s, background-color 0.3s;
}

.contact button {
    background: #1a1a1a;
    color: white;
    padding: 0.75rem;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-weight: bold;
}

/* Success + Error Messages */
.success {
    color: #2e7d32; /* green */
    font-weight: bold;
    margin-bottom: 1rem;
    border: 1px solid #c8e6c9;
    background: #e8f5e9;
    padding: 0.75rem;
    border-radius: 5px;
}

.errors {
    color: #b71c1c; /* dark red */
    font-weight: bold;
    margin-bottom: 1rem;
    border: 1px solid #ffcdd2;
    background: #ffebee;
    padding: 0.75rem;
    border-radius: 5px;
}

.errors ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Input Validation Highlights */
.contact input.error,
.contact textarea.error {
    border-color: #e53935;
    background-color: #ffebee;
}

.contact input.success,
.contact textarea.success {
    border-color: #43a047;
    background-color: #e8f5e9;
}

/* Footer */
footer {
    text-align: center;
    background: #eee;
    padding: 1rem;
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 600px) {
    .main-header h1 {
        font-size: 1.5rem;
    }

    .subheader {
        font-size: 1rem;
    }

    .gallery .photos {
        flex-direction: column;
        align-items: center;
    }
}

