/* CSS Styles matching the Navy and Gold branding */
:root {
    --navy: #0F172A;
    --gold: #D4AF37;
    --white: #F8F9FA;
}
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: var(--white);
    line-height: 1.6;
}
header {
    background-color: var(--navy);
    color: var(--gold);
    padding: 1.5rem;
    text-align: center;
}
header h1 {
    margin: 0;
    font-size: 2.5rem;
    letter-spacing: 2px;
}
.hero {
    background-color: var(--navy);
    color: white;
    text-align: center;
    padding: 4rem 1rem;
    border-bottom: 5px solid var(--gold);
}
.hero h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}
.hero p {
    font-size: 1.2rem;
    font-style: italic;
}
.cta-btn {
    display: inline-block;
    background-color: var(--gold);
    color: var(--navy);
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    margin-top: 20px;
    border-radius: 5px;
}
section {
    padding: 4rem 10%;
    text-align: center;
}
.services-list {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin-top: 20px;
}
.services-list li {
    background: white;
    padding: 1rem 2rem;
    border: 2px solid var(--gold);
    border-radius: 5px;
    font-weight: bold;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 2rem;
}
.gallery-item {
    width: 100%;
    height: 250px;
    background-color: #ddd;
    border-radius: 5px;
    object-fit: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;

}
video.gallery-item {
    object-fit: contain;
    background-color: #000;
}
.gallery-figure.tall .gallery-item {
    height: 450px;
}
footer {
    background-color: var(--navy);
    color: white;
    text-align: center;
    padding: 2rem;
    border-top: 5px solid var(--gold);
}
footer a {
    color: var(--gold);
    text-decoration: none;
}
.gallery-figure {
    margin: 0;
    position: relative;
}
figcaption {
    text-align: center;
    padding: 6px 0;
    font-weight: bold;
    font-size: 0.85rem;
    border-radius: 0 0 5px 5px;
}
figcaption.before {
    background-color: #555;
    color: white;
}
figcaption.after {
    background-color: var(--gold);
    color: var(--navy);
}