/* 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: 0 20px;
}

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

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

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

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

header .logo {
    float: left;
    font-size: 24px;
    font-weight: bold;
}

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

header .highlight,
header .current a {
    color: #77aaff;
    font-weight: bold;
}

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

/* Hero Section */
#hero {
    min-height: 400px;
    background: url('../images/hero.jpg') no-repeat center center/cover;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

#hero h1 {
    font-size: 55px;
    margin-bottom: 10px;
}

#hero p {
    font-size: 20px;
    margin-bottom: 20px;
}

.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: #5588cc;
}

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

.btn-small:hover {
    background: #5588cc;
}

/* Sections */
section {
    padding: 40px 0;
    border-bottom: 1px solid #333;
}

section h2 {
    text-align: center;
    font-size: 35px;
    margin-bottom: 30px;
    color: #77aaff;
}

/* Welcome Section */
#welcome {
    background: #222;
    text-align: center;
}

/* Featured Venues */
#featured-venues .venue-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

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

#featured-venues .venue-card img {
    max-width: 100%;
    border-radius: 5px;
    margin-bottom: 15px;
}

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

/* About Page */
#about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
}

#about-content .main-content {
    flex: 2;
}

#about-content .sidebar {
    flex: 1;
    background: #333;
    padding: 20px;
    border-radius: 8px;
}

#about-content .sidebar h3 {
    color: #77aaff;
    margin-bottom: 15px;
}

/* Venues Page */
#venues-list .venue-item {
    background: #222;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    display: flex;
    gap: 20px;
    align-items: center;
}

#venues-list .venue-item img {
    width: 200px;
    height: 150px;
    object-fit: cover;
    border-radius: 5px;
}

#venues-list .venue-item .venue-info h3 {
    color: #77aaff;
    margin-top: 0;
}

#venues-list .venue-item .venue-info p {
    margin-bottom: 5px;
}

/* Contact Page */
#contact-form .form-group {
    margin-bottom: 20px;
}

#contact-form label {
    display: block;
    margin-bottom: 5px;
    color: #77aaff;
}

#contact-form input[type="text"],
#contact-form input[type="email"],
#contact-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #555;
    background: #333;
    color: #f0f0f0;
    border-radius: 5px;
}

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

#contact-form button {
    display: block;
    width: 100%;
    padding: 10px;
    background: #77aaff;
    color: #fff;
    border: 0;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
    transition: background 0.3s ease;
}

#contact-form button:hover {
    background: #5588cc;
}

/* Policy Pages */
.policy-content h2 {
    text-align: left;
    margin-bottom: 20px;
}

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

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

/* Footer */
footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    margin-top: 20px;
}

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

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

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

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