*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: futuranowitalic;
    src: url(FuturaNowHeadlineLightItalic.ttf);
    font-display: swap;
  }

  @font-face {
    font-family: futuranow;
    src: url(FuturaNowHeadlineLight.ttf);
    font-display: swap;
  }

:root {
    /* Colors */
    --color-primary: #181818;
    --color-accent: #910000;
    --color-light: #e0e0e0;
    --color-dark: #121212;
    --color-border: #040404;

    /* Typography */
    --font-family-main: 'Arial', sans-serif;
    --font-size-base: 16px;
    --line-height-base: 1.7;

    /* Spacing */
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 24px;

    /* Border Radius */
    --border-base: .1em solid #040404;

    /* Shadows */
    --shadow-base: .1em .1em 1em #040404;
}

.iconlinks img:hover {
        transform: scale(1.02);
        transition: transform 0.3s ease;
}

/* Base Styles */
body {
    font-family: Arial, sans-serif;
    line-height: 1.7;
    color: #e0e0e0;
    background-color: #121212;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    max-width: 100%;
}

/* Hero Banner */
.hero-banner {
    text-align: center;
    color: white;
    border-radius: 8px;
}

.hero-banner h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
    font-family: futuranowitalic;
}

.hero-banner p {
    font-size: 1.2em;
    font-weight: 300;
    font-family: futuranow;
    padding-bottom: .4em;
}

/* Header */
header {
    text-align: center;
    color: white;
    padding: 0em 0em 2em 0em;
    margin: 0em;
    width: 100%;
    max-width: 800px;
    box-shadow: var(--shadow-base);
    border: var(--border-base);
}

header h1 {
    font-size: 2.2em;
    margin-bottom: 10px;
    margin-top: 10px;
}

header p {
    font-size: 1.2em;
    font-weight: 300;
}

nav ul {
    display: flex;
    justify-content: center;
    gap: 0em;
    list-style-type: none;
    margin-top: 1.5em;
    background-color: #910000;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 15px 25px;

    transition: background-color 0.3s;
    background-color: #910000;

    display: list-item;
    font-family: futuranow;
}
nav ul li a:hover {
    background-color: #b13e3e;
}

/* Main Content */
main {
    width: 100%;
    max-width: 800px;
    padding: 45px 45px 25px 45px;
    color: var(--color-light);
    margin-top: 20px;
    box-shadow: var(--shadow-base);
    border: var(--border-base);
}

main section {
    margin-bottom: 20px;
}

main h2 {
    font-size: 1.8em;
    margin-bottom: 10px;
    font-family: futuranow;
}

main p {
    font-size: 1em;
    margin-bottom: 20px;
}

main ul {
    list-style-type: disc;
    padding-left: 20px;
}

main ul li {
    margin-bottom: 10px;
}

/* Buttons */
.button {
    display: inline-block;
    background-color: #910000; /* Muted red */
    color: white;
    padding: 15px 25px;

    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
    

    display: grid;
    text-align: center;
    margin-top: 1.5em;
    font-family: futuranow;
}

.button:hover {
    background-color: #b13e3e; /* Slightly darker red on hover */
}

/* Form Styles */
form {
    display: flex;
    flex-direction: column;
    gap: 7px;
    padding: 20px;
    background-color: #222; /* Dark background for form */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Subtle shadow */
    margin: 0 auto;
    border-radius: .25em;
}

form label {
    font-weight: bold;
}

form input[type="text"],
form input[type="email"],
form input[type="tel"],
form textarea,
form select {
    padding: 10px;
    font-size: 1em;
    border: 1px solid var(--border-color); /* Softer border for form elements */
    background-color: #333; /* Dark input background */
    color: var(--neutral-light); /* Light text in inputs */
    border-radius: 4px;
    width: 100%;
}

form textarea {
    height: 15em;
}

form input[type="submit"] {
    background-color: #910000;; /* Muted red */
    color: white;
    padding: 15px 25px;
    font-size: 1em;
    font-weight: bold;
    border: none;

    cursor: pointer;
    transition: background-color 0.3s;
}

form input[type="submit"]:hover {
    background-color: #b13e3e; /* Softer hover effect */
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    color: white;
    width: 100%;
    max-width: 800px;
    border-radius: 8px;
    margin-top: 20px;
}

footer p, footer address {
    font-size: 0.9em;
    margin-bottom: 5px;
}

footer h2 {
    font-family: futuranow;
}

footer a {
    color: var(--primary-yellow); /* Softer yellow for links */
    text-decoration: none;
    transition: color 0.3s;
}

footer a:hover {
    color: #f39c12; /* Softer hover effect */
}

/* Responsive Design */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        gap: 10px;
    }

    .hero-banner h1 {
        font-size: 1.8em;
    }

    main h2 {
        font-size: 1.5em;
    }
}

/* Gallery Styles */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.gallery-item {
    position: relative;
    overflow: visible;
    margin-bottom: 1em;
}

.gallery-item img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
    border: 2px solid var(--border-color);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Soft shadow for depth */
}

.gallery-item:hover img {
    transform: scale(1.02);
}

.caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 15px;
    text-align: center;
    transition: opacity 0.3s ease;
    opacity: 0;
}

.gallery-item:hover .caption {
    opacity: 1;
}

.caption h3 {
    font-size: 1.2em;
    margin-bottom: 5px;
}

.caption p {
    font-size: 1em;
}

/* Dropdown Container */
.dropdown {
    display: grid;
    position: relative;
}

/* Dropdown Button */
.dropbtn {
    background-color: transparent; /* Match main menu background */
    font-weight: bold;
    font-size: 1em;
    color: white;
    font-weight: bold;
    padding: 15px 25px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
    background-color: #910000;
    margin: 0em 1.5em 1em 1.5em;
    text-align: center;
    font-family: futuranow;
}

.dropbtn:hover {
    background-color: #b13e3e; /* Consistent hover color with other links */
}

/* Dropdown Content */
.dropdown-content {
    display: none; /* Hidden by default */
    position: absolute;
    top: 100%; /* Position below button */
    left: 50%; /* Center-align with button */
    transform: translateX(-50%); /* Center alignment */
    min-width: 160px;
    background-color: var(--color-primary); /* Dark dropdown background */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Soft shadow for depth */
    border-radius: 4px;
    z-index: 1;
    overflow: hidden; /* Maintain rounded corners */
}

/* Dropdown Links */
.dropdown-content a {
    display: block;
    color: var(--neutral-light); /* Consistent text color */
    padding: 10px 15px; /* Adjust padding for alignment with menu */
    text-decoration: none;
    border-bottom: 1px solid var(--border-color); /* Consistent border */
    transition: background-color 0.3s;
}

.dropdown-content a:last-child {
    border-bottom: none; /* Remove border from last item */
}

.dropdown-content a:hover {
    background-color: #2c2c2c; /* Consistent hover color with form inputs */
}

/* Display Dropdown on Hover */
.dropdown:hover .dropdown-content {
    display: block;
}

/* Optional: Show a hover effect on the button itself */
.dropdown:hover .dropbtn {
    background-color: #b13e3e; /* Darker blue when hovering button */
}


/* Event Section Styles */
#events {
    margin-top: 20px;
}

#events h2 {
    font-size: 2em;
    margin-bottom: 15px;
}

#events p {
    margin-bottom: 1.5em;
}

/* Event Boxes */
.event {
    background-color: #222; /* Darker box background */
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid var(--border-color); /* Subtle border */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Soft shadow for depth */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth hover effect */
}

/* Event Hover Effect */
.event:hover {
    transform: scale(1.02); /* Slightly larger on hover */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3); /* More prominent shadow */
}

/* Event Heading */
.event h3 {
    font-size: 1.6em;
    color: white; /* Distinct color for event titles */
    margin-bottom: 10px;
    font-family: futuranow;
    text-align: center;
    border-bottom: .1em solid;
    padding-bottom: .5em;
}

/* Event Details */
.event p {
    font-size: 1em;
    color: var(--neutral-light); /* Light text for readability */
    margin-bottom: 8px;
}

/* Link Styles within Events */
#events a {
    color: var(--primary-yellow);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

#events a:hover {
    color: #f39c12; /* Lighter yellow on hover */
}

.bannerlogo {
    width: 100%;
    margin: 0;
    padding: 0;
}