.hero {
    height: 65vh;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 0;
}

.places-bar {
    background: none;
    color: #ffffff;
    padding: 20px 0;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 1px;
    margin-bottom: 80px;
    display: flex;
    justify-content: center;
}

.places-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.places-label {
    opacity: 0.8;
    margin-right: 10px;
    color: var(--accent);
}

.place-separator {
    opacity: 0.4;
    font-weight: normal;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(11,11,11,0.9) 20%, rgba(11,11,11,0.4) 60%, rgba(11,11,11,0.1));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero h1 span {
    color: var(--accent);
}

.tagline {
    font-size: 1.8rem !important;
    font-style: italic;
    color: var(--accent) !important;
    font-family: 'Georgia', serif;
    margin-bottom: 10px !important;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-dim);
    margin-bottom: 40px;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
}

.section-header h2 span {
    color: var(--accent);
}

.section-header p {
    color: var(--text-dim);
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 100px;
}

.gallery-item {
    aspect-ratio: 21 / 9;
    overflow: hidden;
    border-radius: var(--radius-md);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    filter: grayscale(0.5);
}

.gallery-item:hover img {
    transform: scale(1.1);
    filter: grayscale(0);
}

@media (max-width: 992px) {
    .hero h1 { font-size: 3rem; }
}

@media (max-width: 600px) {
    .hero h1 { font-size: 2.5rem; }
    .hero-btns { flex-direction: column; }
}
