/* Global Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f9;
    padding: 0;
    margin: 0;
}

/* Header Styles */
header {
    background-color: #006400; /* Dark Green */
    color: #fff;
    padding: 1em;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

header nav ul {
    list-style: none;
    display: flex;
    justify-content: space-around;
    padding: 0;
}

header nav ul li {
    margin: 0;
}

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

header nav a:hover {
    color: #FFD700; /* Gold */
}

/* Main and Hero Section */
main {
    padding: 2em;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero {
    background-image: url('https://weblium.com/blog/wp-content/uploads/2019/07/photo-1563000215-e31a8ddcb2d0.jpeg'); 
    background-size: cover;
    background-position: center;
    height: 60vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    background-color: #4682B4; /* Blue fallback */
}

/* Exhibitions Section */
.exhibitions {
    background-color: #FFEFD5; /* Light Pale */
    padding: 2em;
    width: 90%;
    max-width: 1200px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    margin: 2em 0;
}

.exhibitions ul {
    list-style: none;
    padding: 0;
}

.exhibitions li {
    margin-bottom: 1.5em;
    border-bottom: 1px solid #ddd;
    padding-bottom: 1.5em;
}

.exhibitions h2 {
    font-size: 28px;
    margin-bottom: 1em;
    color: #008000; /* Green */
}

.exhibitions h3 {
    font-size: 20px;
    color: #4682B4; /* Blue */
}

.exhibitions p {
    font-size: 16px;
    color: #555;
}

/* Fare Chart Section */
.fare-chart {
    background-color: #FAFAD2; /* Light Goldenrod */
    padding: 2em;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    width: 90%;
    max-width: 1000px;
    margin: 2em 0;
}

.fare-chart ul {
    list-style-type: none;
    padding: 0;
}

.fare-chart li {
    font-size: 18px;
    color: #444;
    padding: 0.5em 0;
}

/* Book Tickets Section */
.book-tickets {
    background-color: #FF6347; /* Tomato */
    padding: 2em;
    text-align: center;
    border-radius: 10px;
    width: 90%;
    max-width: 1000px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

#ticket-form {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 1em;
    background-color: #F0F8FF; /* AliceBlue */
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

#ticket-form label {
    font-size: 16px;
    margin-bottom: 0.5em;
    color: #333;
}

#ticket-form input[type="text"],
#ticket-form input[type="email"],
#ticket-form input[type="tel"],
#ticket-form input[type="date"],
#ticket-form input[type="time"] {
    width: 100%;
    padding: 0.75em;
    margin-bottom: 1.5em;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

#ticket-form button[type="submit"] {
    background-color: #006400; /* Dark Green */
    color: #fff;
    padding: 0.75em;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
}

#ticket-form button[type="submit"]:hover {
    background-color: #4682B4; /* Blue */
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 1em;
    margin-top: 2em;
    font-size: 16px;
}

/* Responsive Design */
@media only screen and (max-width: 768px) {
    main {
        padding: 1em;
    }

    .hero {
        height: 40vh;
        font-size: 24px;
    }

    .exhibitions, .book-tickets, .fare-chart {
        width: 95%;
    }
    
    #ticket-form {
        width: 90%;
        padding: 1em;
    }
}

@media only screen and (max-width: 480px) {
    .hero {
        height: 30vh;
        font-size: 20px;
    }

    .exhibitions h2 {
        font-size: 24px;
    }

    .exhibitions h3 {
        font-size: 16px;
    }

    #ticket-form {
        width: 100%;
    }
}
