/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}

a {
    text-decoration: none;
    color: #333;
}

ul {
    list-style: none;
}

/* Header styles */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #0077b6;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    padding: 0.5rem;
    transition: all 0.3s ease;
}

nav ul li a:hover,
nav ul li a.active {
    color: #0077b6;
    border-bottom: 2px solid #0077b6;
}

/* Banner styles */
.banner {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://via.placeholder.com/1920x800');
    height: 500px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.banner-content {
    max-width: 800px;
    padding: 2rem;
}

.banner h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.banner p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

.cta-button {
    padding: 1rem 2rem;
    background-color: #0077b6;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #023e8a;
}

/* Attractions styles */
.attractions {
    padding: 4rem 5%;
}

.attractions h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    color: #0077b6;
}

.quick-links {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

.quick-link {
    flex: 1;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.quick-link:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.image-placeholder {
    width: 100%;
    height: 200px;
    background-color: #f0f0f0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #777;
    font-style: italic;
    margin: 0;
}

.quick-link h3 {
    padding: 1rem 1rem 0.5rem;
    color: #0077b6;
}

.quick-link p {
    padding: 0 1rem 1rem;
}

/* Map section styles */
.map-section {
    padding: 4rem 5%;
    background-color: #f9f9f9;
}

.map-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    color: #0077b6;
}

#map {
    width: 100%;
    height: 500px;
    border-radius: 5px;
    overflow: hidden;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background-color: #f0f0f0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #777;
    font-style: italic;
    margin: 0;
}

/* Footer styles */
footer {
    background-color: #333;
    color: white;
    padding: 3rem 5% 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.footer-section {
    flex: 1;
    padding: 0 1rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.social-links a {
    color: white;
    margin-right: 1rem;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.social-links a:hover {
    color: #0077b6;
}

#newsletter-form {
    display: flex;
}

#newsletter-form input {
    padding: 0.5rem;
    width: 70%;
    border: none;
}

#newsletter-form button {
    padding: 0.5rem;
    background-color: #0077b6;
    color: white;
    border: none;
    cursor: pointer;
}

.copyright {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid #555;
}

/* Responsive styles */
@media (max-width: 768px) {
    .quick-links {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
    }

    .footer-section {
        margin-bottom: 2rem;
    }
}