/*
Theme Name: Astra Child
Theme URI: https://wpastra.com/
Description: Child theme for Astra
Author: Your Name
Author URI: https://yourwebsite.com
Template: astra
Version: 1.0.0
Text Domain: astra-child
*/
.hotel-single {
    background: #f8f9fb;
}

/* HERO */
.hotel-hero {
    position: relative;
    height: 80vh;
    overflow: hidden;
}

.hotel-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hotel-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
}

.hotel-hero-content {
    position: absolute;
    bottom: 40px;
    left: 60px;
    color: #fff;
    max-width: 600px;
    z-index: 9;
}

.hotel-city {
    font-size: 14px;
    opacity: 0.9;
    padding: 8px 12px;
    background: var(--ast-global-color-1);
    color: var(--ast-global-color-0);
    border-radius: 20px;
}

.hotel-title {
    font-size: 42px;
    margin: 10px 0;
    color:#fff;
}
/* BODY */
.container {
    margin: auto;
    padding: 60px;
}

.hotel-body {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.hotel-description h2 {
    font-size: 26px;
    margin-bottom: 15px;
}


/* SIDEBAR */
.booking-card {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    position: sticky;
    top: 100px;
}

.price-highlight {
    font-size: 28px;
    font-weight: 700;
    margin: 15px 0;
}

.btn-primary {
    display: block;
    background: #60081C;
    color: #fff;
    text-align: center;
    padding: 14px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    margin: 20px 0;
}

.hotel-info {
    list-style: none;
    padding: 0;
    margin: 20px 0;
	display: grid;
    grid-template-columns: 1fr 1fr
}

.hotel-info li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    margin-bottom: 12px;
}

.check-icon svg {
    width: 16px;
    height: 16px;
    stroke: #2e7d32;
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* RESPONSIVE */
@media (max-width: 900px) {
    .hotel-body {
        grid-template-columns: 1fr;
    }

    .hotel-hero-content {
        left: 20px;
        right: 20px;
    }

    .hotel-title {
        font-size: 32px;
    }
}
.hotel-facilities {
    margin-top: 50px;
}
.hotel-facilities {
    margin: 20px 0;
}
.shotel-archive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.shotel-card {
    background: transparent;
    border-radius: 0px;
    overflow: hidden;
/*     box-shadow: 0 12px 30px rgba(0,0,0,0.08); */
    transition: transform .3s ease;
}

.shotel-card:hover {
    transform: translateY(-6px);
}

.shotel-thumb img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.shotel-card-body {
    padding: 20px 0;
	position: relative;
}

.shotel-title {
    font-size: 18px;
    margin-bottom: 6px;
	color:var(--ast-global-color-2);
}
.shotel-title a {
	color:var(--ast-global-color-2);
}
.shotel-city {
    font-size: 14px;
    background: #fff;
    color: var(--ast-global-color-0);
    position: absolute;
    padding: 5px 12px;
    top: -50px;
    left: 20px;
    border-radius: 25px;
    box-shadow: 0px 0px 4px #00000026;
}

.shotel-price {
    font-size: 17px;
    font-weight: 600;
	color:var(--ast-global-color-2);
}

.shotel-facilities {
    list-style: none;
    padding: 0;
    margin: 12px 0;
}

.shotel-facilities li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    margin-bottom: 6px;
}

.shotel-icon svg {
    width: 14px;
    height: 14px;
}
.shotel-card a {
    text-decoration: none !important;
}
.hotel-card-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
	margin:10px 0px;
}
.shotel-btn {
    display: inline-block;
    padding: 6px 12px;
    background:  var(--ast-global-color-0);
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
	font-size:14px;
}
