.background-hotel {
    background: url('/theme/img/bg/poe.jpg');
    background-size: cover;
}
/* Contenedor general */
#main-promos-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
    font-family: Arial, sans-serif;
}

/* Títulos */
#main-promos-header {
    font-size: 2rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 0.5rem;
}

#main-promos-subheader {
    font-size: 1.2rem;
    text-align: center;
    color: #555;
    margin-bottom: 2rem;
}

/* Grid layout */
.promo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

@media (max-width: 1024px) {
    .promo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .promo-grid {
        grid-template-columns: 1fr;
    }
}

/* Tarjeta */
.promo-item {
    background: rgba(141, 131, 104, 0.24);
    border: 1px solid rgba(141, 131, 104, 0.24);
    border-radius: 8px;
    color: #FFF;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    text-align: center;
    display: flex;
    flex-direction: column;
}

.promo-item:hover {
    background-color: rgba(141, 131, 104, 0.125);
}

/* Imagen */
.promo-item img {
    width: 100%;
    height: 250px;
    -o-object-fit: cover;
       object-fit: cover;
}

.promo-item.featured {
    border: 1px solid rgba(58, 44, 27, 0.5);
    background-color: rgb(36 23 7 / 82%);
}

.promo-item.featured a,
.promo-item.featured .title {
    color: #FFF;
}

/* Título */
.promo-item .title {
    font-size: 26px;
    font-weight: 900;
    line-height: 30px;
    padding: 1rem;
    color: rgba(65, 62, 55, 0.7);
}

.promo-more-rooms {
    width: 100%;
    padding: 20px 0;
    text-align: center;
}

/* Botón */
.promo-more-rooms a {
    margin: 0 1rem 1.5rem;
    background-color: rgb(141, 131, 104);
    color: white;
    padding: 0.6rem;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s;
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
}

.promo-more-button:hover {
    background-color: rgba(141, 131, 104, 0.7);
}

.promo-wssp {
    font-size: 30px;
}

.promo-icon i {
    font-style: normal !important;
}

.promo-icons {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    align-items: center;
    text-align: center;
    flex-wrap: nowrap;
    justify-content: center;
}

.promo-icon a {
    font-size: 50px;
    cursor: pointer;
    color: rgba(28, 134, 45, 0.7);
}

/* .booking-form input[type="text"] {
    padding: 0;
    width: 100%;
} */

#booking-wrap {
	background-color: #e4e4e4;
	padding-top: 20px;
}

#booking-wrap h3 {
    text-align: center;
}

#booking-wrap .booking-form {
	display: table;
}

#booking-wrap .booking-form .item-label {
	font-size: 14px;
	padding-bottom: 6px;
	display: flex;
}

#booking-wrap .booking-form input {
	line-height: 34px;
	border: 1px solid rgba(34, 34, 34, 0.20);
	padding: 4px 8px;
	font-weight: bold;
	color: #22201e;
	font-family: 'Open Sans';
}

#booking-wrap .booking-form input[type=submit] {
	line-height: 34px;
	border: 1px solid rgba(34, 34, 34, 0.20);
	background-color: rgb(196, 183, 147);
	padding: 4px 8px;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: #fff;
	font-family: 'Open Sans';
}

#booking-wrap .booking-form input[type=submit]:hover {
	border: 1px solid rgba(34, 34, 34, 0.420);
	background-color: rgba(34, 34, 34, 0.420);
}

#booking-wrap .booking-form input[type=button] {
	border: 1px solid rgba(34, 34, 34, 0.1420);
	color: rgba(0, 0, 0, 0.51);
	font-weight: 400;
	text-transform: uppercase;
}

#booking-wrap .booking-form input[type=button]:hover {
	border: 1px solid rgba(34, 34, 34, 0.10);
	background-color: rgba(34, 34, 34, 0.10);
	font-weight: 400;
	text-transform: uppercase;
}
@media only screen and (min-width: 768px) {
    #booking-wrap .booking-form .item {
        display: table-cell;
        padding: 10px;
    }
}

@media only screen and (max-width: 767px) {
	#booking-wrap .booking-form {
		display: block;
	}

	#booking-wrap .booking-form .item {
		display: block;
		width: 100%;
	}

	#booking-wrap .booking-form .item-label,
	#booking-wrap .booking-form input {
		width: 100%;
        /* padding: 0; */
	}
}
