.christmas-party-page .page-content .content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

.christmas-party-page .blurb-section {
    margin-bottom: 40px;
    font-size: 1.1em;
    line-height: 1.6;
    color: #fff; /* Set blurb text to white */
    text-align: center;
}

.christmas-party-page .blurb-section p {
    margin-bottom: 1em;
}

.christmas-party-page .gallery-section {
    margin-bottom: 40px;
}

.christmas-party-page .gallery-section h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #fff; /* Set gallery heading to white */
}

.christmas-party-page .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.christmas-party-page .gallery-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.christmas-party-page .contact-section .form-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.christmas-party-page .contact-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #fff; /* White text for heading */
    font-family: "Bebas Neue", sans-serif;
    font-size: 2rem;
}

/* Form Styles adapted from contact.css */
.christmas-party-page .form-group {
    margin-bottom: 1.5rem;
}

.christmas-party-page .form-group label {
    display: block;
    color: #fff; /* White for labels */
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.christmas-party-page .form-group input,
.christmas-party-page .form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.1); /* Semi-transparent background */
    border: 1px solid rgba(255, 255, 255, 0.2); /* Semi-transparent border */
    border-radius: 6px;
    color: #fff; /* White text color */
    font-size: 1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.christmas-party-page .form-group input:focus,
.christmas-party-page .form-group textarea:focus {
    outline: none;
    border-color: #7a9e06; /* Highlight color on focus */
    background: rgba(255, 255, 255, 0.15);
}

.christmas-party-page .submit-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: #7a9e06;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.christmas-party-page .submit-button:hover {
    background: #8fb307;
    transform: translateY(-2px);
}

/* Add smooth scrolling to the page */
html {
    scroll-behavior: smooth;
}

.christmas-party-page {
    background-color: rgb(40, 40, 40);
}

.christmas-party-page .hero-section .fade-out-overlay {
    background: linear-gradient(to top, rgb(40, 40, 40), transparent);
}

.christmas-party-page .hero-button {
    margin-top: 1.5rem;
    padding: 0.8rem 2.5rem;
    background: #D43737; /* Festive Red */
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.christmas-party-page .hero-button:hover {
    background: #E74C3C; /* Brighter Red on hover */
    transform: translateY(-2px);
}

.croc-attack-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin: 4rem 0;
    color: #fff;
}

.croc-attack-section h2 {
    font-family: "Bebas Neue", sans-serif;
    font-size: 2.5rem;
    color: #D43737; /* Festive Red */
    margin-bottom: 1.5rem;
}

.croc-attack-description {
    line-height: 1.7;
}

.croc-attack-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.croc-attack-image-item img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Make Croc-Attack section single column on smaller screens */
@media (max-width: 768px) {
    .croc-attack-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}
