* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
    scroll-behaviour: smooth;
}

body {
    background-color: #f5f5f5;
}

header {
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('reuben-hayfron-RjkZHESUuPw-unsplash.jpg');
    height: 100vh;
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding-top: 100px;
}

nav {
    background-color: #1a472a;
    padding: 20px;
    position: sticky;
    top: 0;
    z-index: 100;
}

nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
}

nav ul li {
    margin: 0 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
}

h2 {
    color: #1a472a;
    text-align: center;
    margin-bottom: 40px;
}

.attraction-card {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 20px;
}

.attraction-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 5px;
}

.hotel-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.hotel-card {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

footer {
    background-color: #1a472a;
    color: white;
    text-align: center;
    padding: 30px;
    margin-top: 50px;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

input, textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
}

button {
    background-color: #d4af37;
    color: white;
    padding: 10px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

@media (max-width: 768px) {
    .attraction-card {
        grid-template-columns: 1fr;
    }
    
    nav ul {
        flex-direction: column;
        text-align: center;
    }
    
    nav ul li {
        margin: 10px 0;
    }
}
#map {
    height: 500px;
    width: 100%;
    margin: 40px 0;
    border-radius: 10px;
    overflow: hidden;
}
.motac-contact {
    text-align: center;
    margin-top: 30px;
}
.motac-contact a {
    color: #1a472a;
    text-decoration: none;
    display: block;
    margin: 10px 0;
}
section:target {
    animation: highlight 1.5s ease-out;
}
@keyframes highlight {
    0% { background-color: rgba(214, 175, 55, 0.3); }
    100% { background-color: transparent; }
}
