/* styles.css */

/* Reset styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f7f7f7;
    line-height: 1.6;
}

header {
    background-color: #00796b;
    color: white;
    text-align: center;
    padding: 50px 20px;
}

header h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

header p {
    font-size: 18px;
    margin-top: 10px;
}

.content {
    padding: 20px;
}

h2 {
    text-align: center;
    font-size: 30px;
    margin-bottom: 20px;
    color: #00796b;
}

.places-section {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    justify-items: center;
}

.place-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
    width: 100%;
}

.place-card:hover {
    transform: scale(1.05);
}

.place-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.place-card .content {
    padding: 20px;
    text-align: center;
}

.place-card h3 {
    font-size: 24px;
    color: #00796b;
    margin-bottom: 10px;
}

.place-card p {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
}

.price {
    font-size: 18px;
    color: #e67e22;
    font-weight: bold;
    margin-bottom: 20px;
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.button {
    background-color: #00796b;
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    font-size: 16px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: #004d40;
}

/* Responsive Design */
@media (max-width: 768px) {
    header h1 {
        font-size: 36px;
    }
    header p {
        font-size: 16px;
    }
    .places-section {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 480px) {
    header h1 {
        font-size: 28px;
    }
    header p {
        font-size: 14px;
    }
    .places-section {
        grid-template-columns: 1fr;
    }
}
