/* General Styles for the Gallery Page */
body {
    background-color: #121212;
    color: white;
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
}

/* Header Styling (Fixing the layout) */
header {
    background-color: #333;
    padding: 20px 0;
    text-align: center;
    margin-bottom: 40px;
}

header nav ul {
    list-style-type: none;
    padding: 0;
}

header nav ul li {
    display: inline;
    margin: 0 20px;
}

header nav ul li a {
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    text-transform: uppercase;
}

header nav ul li a:hover {
    color: #ff4444;
}

/* Gallery Container */
.gallery-container {
    padding: 40px 20px;
    text-align: center;
}

h1 {
    font-size: 36px;
    color: #ff4444;
    margin-bottom: 20px;
}

p {
    font-size: 18px;
    color: #ccc;
    margin-bottom: 40px;
}

/* Event Sections */
.event-section {
    margin: 30px 0;
    padding: 30px;
    background-image: url('your-image-path.jpg');  /* Replace with your image */
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    color: white; /* Ensure text remains readable over background image */
}

.event-section:hover {
    transform: scale(1.05);  /* Keep a smooth zoom effect */
}

.event-section h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.event-section p {
    font-size: 16px;
    margin-bottom: 20px;
}

/* Buttons */
.event-section .btn {
    padding: 12px 25px;
    background-color: #ff4444;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.event-section .btn:hover {
    background-color: #cc0000;
    transform: translateY(-2px);
}

/* Instagram Embed */
.instagram-embed {
    margin: 40px auto;
    width: 80%;
    max-width: 800px;
}

.instagram-media {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

/* Footer */
footer {
    background-color: #333;
    padding: 20px;
    text-align: center;
    color: #ccc;
    font-size: 14px;
}

footer a {
    color: #ff4444;
    text-decoration: none;
}

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