/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Typography */
body {
    font-family: Arial, sans-serif;
    background: #f8f9fa;
    color: #333;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #0d2036;
    color: white;
}

.navbar .nav-links li {
    display: inline;
    margin: 0 15px;
}

.navbar a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.login-btn {
    background: #ff6b6b;
    border: none;
    padding: 8px 12px;
    color: white;
    cursor: pointer;
}

/* Hero */
.hero {
    text-align: center;
    padding: 60px 20px;
    background: url('images/hero-bg.jpg') no-repeat center/cover;
    color: white;
}

.hero input {
    margin-top: 15px;
    padding: 10px;
    width: 300px;
    border-radius: 4px;
    border: none;
}

/* Venues */
.venues-section {
    padding: 40px 20px;
    text-align: center;
}

.venues-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.venue-card {
    background: white;
    width: 280px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    padding-bottom: 20px;
}

.venue-card img {
    width: 100%;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.book-btn {
    background: #007bff;
    color: white;
    padding: 8px 12px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 10px;
}

/* Footer */
footer {
    padding: 25px;
    background: #0d2036;
    color: white;
    text-align: center;
    margin-top: 40px;
}
