.hotel-section {
    background: transparent;
    padding: 80px 0;
}
.container {
    width: min(1400px, 90%);
    margin: 0 auto;
}
.hotel-intro {
    text-align: center;
    margin-bottom: 60px;
}

.hotel-intro h2 {
    color: var(--gold);
}

.hotel-intro p {
    color: var(--gray-muted);
    max-width: 700px;
    margin: 10px auto 0;
    line-height: 1.6;
}
.hotel-rooms {
    margin-bottom: 80px;
	text-align: center;
}

.section-title {
    text-align: center;
    color: var(--gold);
    margin-bottom: 30px;
}
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.room-card {
    background: var(--black-card);
    padding: 25px;
    border-radius: 12px;

    border: 1px solid var(--gray-dark);
    transition: 0.3s ease;
	text-align: center;
}
.room-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
}
.room-card h4 {
    color: var(--gold);
    margin-bottom: 10px;
}

.room-card p {
    color: var(--gray-muted);
    line-height: 1.5;
}
.room-list {
    margin-top: 15px;
    padding-left: 18px;
    color: var(--gray-muted);
	display: inline-block;
    text-align: left;
	width: 100%;
}
.hotel-location {
    margin-top: 40px;
}
.location-layout {
    display: flex;
    gap: 40px;
    align-items: center;
}
.location-info {
    flex: 1;
    color: var(--white-soft);
}

.location-list {
    margin-top: 15px;
    padding-left: 18px;
    color: var(--gray-muted);
}

.location-list li {
    margin-bottom: 8px;
}
.location-map {
    flex: 1;
}

.location-map iframe {
    width: 100%;
    height: 350px;

    border: 0;
    border-radius: 12px;

    filter: grayscale(100%) contrast(1.1);
}
@media (max-width: 900px) {

    .rooms-grid {
        grid-template-columns: 1fr;
    }

    .location-layout {
        flex-direction: column;
        text-align: center;
    }

    .location-list {
        padding-left: 0;
        list-style: none;
    }
}

