/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #1a1a1a;
    color: #f0f0f0;
    line-height: 1.6;
}

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
    padding: 20px 0;
}

/* Header */
header {
    background: #333;
    color: #fff;
    padding-top: 20px;
    min-height: 70px;
    border-bottom: #77aaff 3px solid;
}

header h1 {
    float: left;
    margin: 0;
    padding: 0;
}

header nav {
    float: right;
    margin-top: 10px;
}

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

header li {
    display: inline;
    padding: 0 15px;
}

header a {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 16px;
}

header a:hover {
    color: #77aaff;
    font-weight: bold;
}

/* Hero Section */
#hero {
    min-height: 400px;
    background: #222;
    text-align: center;
    position: relative;
    padding: 50px 0;
}

#hero .hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
}

#hero h2 {
    font-size: 3em;
    margin-bottom: 10px;
    color: #77aaff;
}

#hero p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

/* Buttons */
.btn {
    display: inline-block;
    color: #fff;
    background: #77aaff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.btn:hover {
    background: #5588dd;
}

.btn-small {
    display: inline-block;
    color: #fff;
    background: #555;
    padding: 5px 10px;
    text-decoration: none;
    border-radius: 3px;
    font-size: 0.9em;
    transition: background 0.3s ease;
}

.btn-small:hover {
    background: #777;
}

/* Featured Venues */
#featured-venues {
    padding: 40px 0;
    background: #2a2a2a;
    text-align: center;
}

#featured-venues h3 {
    font-size: 2.5em;
    color: #77aaff;
    margin-bottom: 30px;
}

.venue-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.venue-card {
    background: #333;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    text-align: center;
}

.venue-card img {
    max-width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover; /* Ensures images cover the area without distortion */
    border-radius: 5px;
    margin-bottom: 15px;
}

.venue-card h4 {
    color: #77aaff;
    margin-bottom: 10px;
}

/* Community CTA */
#community-cta {
    background: #333;
    padding: 50px 0;
    text-align: center;
}

#community-cta h3 {
    font-size: 2.5em;
    color: #77aaff;
    margin-bottom: 20px;
}

#community-cta p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

/* Footer */
footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    margin-top: 30px;
    border-top: #77aaff 3px solid;
}

footer ul {
    padding: 0;
    list-style: none;
    display: inline-block; /* For centering */
    margin-top: 10px;
}

footer li {
    display: inline;
    padding: 0 10px;
}

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

footer a:hover {
    color: #77aaff;
}

/* Venues Page Specific */
#venues-list {
    padding: 40px 0;
    background: #2a2a2a;
}

#venues-list h2 {
    font-size: 3em;
    color: #77aaff;
    text-align: center;
    margin-bottom: 40px;
}

.venue-item {
    background: #333;
    padding: 25px;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.venue-item h3 {
    color: #77aaff;
    margin-bottom: 10px;
}

.venue-item p {
    margin-bottom: 5px;
}

.venue-item a {
    color: #77aaff;
    text-decoration: none;
}

.venue-item a:hover {
    text-decoration: underline;
}

/* Community Page Specific */
#community-content {
    padding: 40px 0;
    background: #2a2a2a;
}

#community-content h2 {
    font-size: 3em;
    color: #77aaff;
    text-align: center;
    margin-bottom: 40px;
}

.post-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.community-post {
    background: #333;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.community-post h4 {
    color: #77aaff;
    margin-bottom: 10px;
}

.community-post p {
    font-size: 0.95em;
}

/* Contact Page Specific */
#contact-form-section {
    padding: 40px 0;
    background: #2a2a2a;
}

#contact-form-section h2 {
    font-size: 3em;
    color: #77aaff;
    text-align: center;
    margin-bottom: 40px;
}

.contact-form {
    background: #333;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    max-width: 600px;
    margin: auto;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    color: #f0f0f0;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: calc(100% - 20px);
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #555;
    background: #444;
    color: #f0f0f0;
    border-radius: 5px;
}

.contact-form textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-form input[type="submit"] {
    display: block;
    width: 100%;
    padding: 10px;
    background: #77aaff;
    color: #fff;
    border: 0;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1em;
    transition: background 0.3s ease;
}

.contact-form input[type="submit"]:hover {
    background: #5588dd;
}

/* Policy Pages Specific */
.policy-content {
    padding: 40px 0;
    background: #2a2a2a;
}

.policy-content h2 {
    font-size: 3em;
    color: #77aaff;
    text-align: center;
    margin-bottom: 40px;
}

.policy-content h3 {
    color: #77aaff;
    margin-top: 25px;
    margin-bottom: 10px;
}

.policy-content p {
    margin-bottom: 15px;
}

.policy-content ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 15px;
}

.policy-content li {
    margin-bottom: 5px;
}
