body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f8ff;
    color: #333;
}

header {
    background-color: #00aaff;
    padding: 1em 0;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0 1em;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #ffdd57;
}

.hero {
    background-image: url('https://www.kayak.com.au/rimg/himg/87/26/79/expediav2-157523-04ea65-205744.jpg?width=968&height=607&crop=true');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 5em 0;
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.hero h1 {
    font-size: 3em;
    margin: 0;
    position: relative;
    z-index: 1;
}

.hero p {
    font-size: 1.5em;
    position: relative;
    z-index: 1;
}

section {
    padding: 2em;
    text-align: center;
}

.attraction-list {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.attraction {
    background-color: #e0f7fa;
    padding: 1em;
    border-radius: 10px;
    width: 30%;
    margin: 1em 0;
    transition: transform 0.3s;
    position: relative;
}

.attraction:hover {
    transform: scale(1.05);
}

.attraction-hero {
    background-size: cover;
    background-position: center;
    height: 200px;
    border-radius: 10px 10px 0 0;
}

.ticket-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

.ticket-list li {
    background-color: #00aaff;
    color: white;
    padding: 1em;
    margin: 0.5em;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.ticket-list li:hover {
    background-color: #0077cc;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

form label {
    margin-top: 1em;
}

form input, form textarea {
    width: 80%;
    padding: 0.5em;
    margin-top: 0.5em;
    border: 1px solid #ccc;
    border-radius: 5px;
}

form button {
    margin-top: 1em;
    padding: 0.5em 2em;
    background-color: #00aaff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

form button:hover {
    background-color: #0077cc;
}

footer {
    background-color: #00aaff;
    color: white;
    text-align: center;
    padding: 1em 0;
}

footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

footer ul li {
    margin: 0 1em;
}

footer ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

footer ul li a:hover {
    color: #ffdd57;
}

footer ul li a i {
    margin-right: 0.5em;
}

/* Media Queries for Mobile */
@media (max-width: 768px) {
    .attraction {
        width: 80%;
    }

    .ticket-list {
        flex-direction: column;
        align-items: center;
    }

    .ticket-list li {
        width: 80%;
        margin: 0.5em 0;
    }
}

.btn {
    background-color: #0088cc;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

.btn:hover {
    background-color: #006699;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0088cc;
    box-shadow: 0 0 0 2px rgba(0, 136, 204, 0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-form {
        padding: 1rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.6rem;
    }
}