/*
    Theme Name: Hotel Mandala
    Description: This Theme is specially designed for Hotel Mandala
    Theme URL: 
    Author: PINE TECH
    Author URI: 
    Version: 0.1
    Date: 15/09/2025
    Copyright: (c) 2025 Hotel Mandala
*/

:root {
    --brand: #d48e03;
    /* gold accent */
    --dark: #191919;
    /* footer bg */
}

body {
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    color: #333;
}

.top-bar a {
    color: #f0f0f0;
    text-decoration: none;
}

.top-bar a:hover {
    color: #d48e03;
    transition: 1s;
}

.navbar {
    background: #ffffff;
    backdrop-filter: blur(6px);
    border-bottom: 1px solid #eee;
}

.navbar .nav-link {
    font-size: 18px;
    font-weight: 600;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
    color: var(--brand);
}

.nav-link:hover {
    color: var(--brand);
}

.carousel-item {
    height: 80vh;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.carousel-caption {
    bottom: 35%;
}

.carousel-caption h1 {
    font-size: 3rem;
    font-weight: 700;
}

h1,
h2 {
    font-family: "Playfair Display", serif;
    font-size: clamp(2.25rem, 4vw, 3.5rem);
    letter-spacing: .5px;
}

.room-block {
    padding-block: 3.5rem;
    border-bottom: 1px solid #eee;
}

.room-title {
    font-family: "Playfair Display", serif;
    font-size: clamp(1.5rem, 2.2vw, 2rem);
    margin-bottom: .35rem;
}

.room-price {
    font-weight: 700;
}

.stat-list {
    list-style: none;
    padding-left: 0;
    margin: 0 0 1rem 0;
}

.stat-list li {
    display: flex;
    justify-content: space-between;
    padding: .35rem 0;
    border-bottom: 1px dashed #e5e5e5;
    font-size: .95rem;
}

.btn-brand {
    background: var(--brand);
    color: #fff;
    font-weight: 700;
}

.btn-brand:hover {
    background: #606060;
    color: #fff;
}

.amenity-card {
    background: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.amenity-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.banner-image {
    position: relative;
    width: 100%;
    height: 400px;
    /* Adjust the height as needed */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.banner-title {
    position: relative;
    text-align: center;
    color: #fff;
    z-index: 2;
}

.banner-title h1 {
    font-size: 3rem;
    font-weight: 700;
    margin: 0;
}

.footer {
    background: var(--dark);
    color: #c9c9c9;
}

.footer h6 {
    color: #fff;
    letter-spacing: .02em;
}

.footer a {
    color: #c9c9c9;
    text-decoration: none;
}

.footer a:hover {
    color: #d9910c;
}

.social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
/*     width: 36px;
    height: 36px; */
    border: 1px solid #2b2b2b;
    border-radius: 10px;
	padding: 10px;
    margin-right: .35rem;
}

@media (min-width: 320px) and (max-width: 425px) {
    .navbar-brand{
        width: 200px;
    } 
}