/* Page background */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #ffffff;
    color: #1a1a1a;
}

/* Header */
.top-header {
    background: #1e9e47;
    color: white;
    padding: 18px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-header h1 {
    margin: 0;
    font-size: 24px;
}

.top-header nav a {
    color: white;
    text-decoration: none;
    margin-left: 18px;
    font-weight: bold;
}

.top-header nav a:hover {
    text-decoration: underline;
}

/* Page title */
.page-title {
    text-align: center;
    padding: 40px 20px;
    background: #e9f7ed; /* very light green */
}

.page-title h2 {
    font-size: 32px;
    color: #1e9e47;
}

.page-title p {
    font-size: 16px;
    color: #555;
}

/* Grid */
.attraction-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    padding: 40px;
}

/* Cards */
.attraction-card {
    background: white;
    border: 2px solid #1e9e47;
    border-radius: 12px;
    padding-bottom: 20px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.attraction-card:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.attraction-card img {
    width: 100%;
    height: 180px;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    object-fit: cover;
}

.attraction-card h3 {
    padding: 15px;
    color: #1e9e47;
    margin: 0;
}

.attraction-card p {
    padding: 0 15px 15px;
    font-size: 14px;
    color: #555;
}

.attraction-card button {
    margin: 0 15px;
    padding: 10px;
    width: calc(100% - 30px);
    background: #1e9e47;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 15px;
}

.attraction-card button:hover {
    background: #187c38;
}
