/* Theme Colors: Maroon (#800000) and Gold (#FFD700) */

body {
    margin: 0;
    padding: 0;
    font-family: 'Verdana', sans-serif;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
}

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
}

header {
    background: #800000; /* Maroon */
    color: #FFD700;    /* Gold */
    padding-top: 30px;
    min-height: 70px;
    border-bottom: 4px solid #D4AF37; /* Metallic Gold Accent */
    text-align: center;
}

header h1 {
    margin: 0;
    text-transform: uppercase;
    font-size: 2.5rem;
    letter-spacing: 3px;
}

.hero {
    text-align: center;
    padding: 100px 20px;
    background: #fff;
    margin-top: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.hero h2 {
    color: #800000;
    font-size: 2rem;
}

.btn-gold {
    display: inline-block;
    background: #FFD700;
    color: #800000;
    padding: 10px 25px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background 0.3s ease;
}

footer {
    padding: 20px;
    margin-top: 20px;
    color: #FFD700;
    background-color: #800000;
    text-align: center;
}

/* Gallery styles for home page images */
.gallery {
    background: #fff;
    margin-top: 20px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.08);
    text-align: center;
}

.gallery h3 {
    color: #800000;
    margin-top: 0;
}

.gallery-grid {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.gallery-grid img {
    width: 100%;
    max-width: 420px;
    height: auto;
    border-radius: 6px;
    object-fit: cover;
}

@media (min-width: 700px) {
    .gallery-grid img {
        width: calc(50% - 12px);
    }
}

.social {
    background: #fff;
    margin-top: 20px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.08);
    text-align: center;
}

.social h3 {
    color: #800000;
    margin-top: 0;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    margin-top: 10px;
}

.social-links a {
    color: #800000;
    text-decoration: none;
    font-weight: bold;
    background: #FFD700;
    padding: 10px 18px;
    border-radius: 999px;
    transition: background 0.3s ease, transform 0.2s ease;
}

.social-links a:hover,
.social-links a:focus {
    background: #e6c000;
    transform: translateY(-1px);
}

@media (min-width: 700px) {
    .social-links {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
}