:root {
    --primary-color: #FFD700;
    --dark-color: #333;
    --light-bg: #fff;
    --transition-speed: 0.3s;
    --font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    font-family: var(--font-family);
    background: #f7f7f7;
    margin: 0;
    padding: 0;
}

.places-container {
    max-width: 1200px;
    margin: 100px auto 40px;
    padding: 20px;
    background: var(--light-bg);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 20px;
    position: relative;
}
.section-title::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    margin: 10px auto 0;
    border-radius: 2px;
}

.places-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.place-card {
    background: #f9f9f9;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.place-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.place-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}
.place-info {
    padding: 15px;
    flex: 1;
}
.place-info h3 {
    font-size: 1.8rem;
    color: var(--dark-color);
    margin-bottom: 10px;
}
.place-short {
    font-size: 1rem;
    color: #777;
    margin-bottom: 10px;
}
.btn {
    display: inline-block;
    padding: 8px 15px;
    background: var(--primary-color);
    color: var(--dark-color);
    text-decoration: none;
    border-radius: 4px;
    transition: background var(--transition-speed) ease;
    text-align: center;
}
.btn:hover {
    background: #e6c200;
}
@media (max-width: 600px) {
    .section-title {
        font-size: 2rem;
    }
    .place-info h3 {
        font-size: 1.4rem;
    }
    .place-short {
        font-size: 0.9rem;
    }
}
