/* =====================================================
ROOT VARIABLES
===================================================== */

:root {
    --primary: #caa96b;
    --primary-dark: #b8924f;
    --dark: #111111;
    --light: #f8f9fa;
    --gray: #6c757d;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0,0,0,.08);
}

/* =====================================================
GENERAL
===================================================== */

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter',sans-serif;
    color: #555;
    background: #fff;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}

section {
    padding: 25px 0;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
}

.section-subtitle {
    color: #777;
    max-width: 700px;
    margin: auto;
}

/* =====================================================
BUTTONS
===================================================== */

.btn-primary {
    background: var(--primary);
    border-color: var(--primary);
}

    .btn-primary:hover {
        background: var(--primary-dark);
        border-color: var(--primary-dark);
    }

.btn-outline-light:hover {
    color: #111;
}

/* =====================================================
CARD
===================================================== */

.card {
    border: none;
    box-shadow: var(--shadow);
}

/* =====================================================
SCROLL TOP
===================================================== */

#scrollTopBtn {
    border-radius: 50%;
    width: 50px;
    height: 50px;
}

/* =====================================================
ANIMATION
===================================================== */

.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all .6s ease;
}

    .fade-up.show {
        opacity: 1;
        transform: none;
    }

/* =====================================================
NAVBAR
===================================================== */

.navbar {
    background: #fff;
    padding: 6px 0;
    box-shadow: 0 2px 15px rgba(0,0,0,.06);
    
}


.navbar-brand{

    text-decoration:none;

}

    .navbar-brand img {
        height: 42px;
        
    }

.logo-img {
    height: 55px;
    width: auto;
}

@media (max-width:768px) {
    .logo-img {
        height: 40px;
    }
}

.navbar-brand .fw-bold{

    font-size:1.1rem;

    letter-spacing:1px;

}

.brand-title {
    font-size: 1.4rem;
    font-weight: 700;
}

.brand-subtitle {
  
    color: #777;
    line-height: 1;
    font-size: .8rem;
}

.nav-link {
    font-size: .95rem;
    font-weight: 600;
}

    .nav-link:hover {
        color: #0d6efd !important;
    }

    .nav-link.active {
        color: #c89b3c !important;
    }

.nav-link {
    position: relative;
}

    .nav-link::after {
        content: '';
        position: absolute;
        left: 50%;
        bottom: 0;
        width: 0;
        height: 2px;
        background: #0d6efd;
        transition: .3s;
        transform: translateX(-50%);
    }

    .nav-link:hover::after,
    .nav-link.active::after {
        width: 70%;
    }
.navbar .btn{

    font-weight:600;

}

.sticky-top{

    z-index:1050;

}

.btn-booking {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 26px;
    background: linear-gradient( 135deg, #caa96b, #b8924f );
    color: #fff;
    text-decoration: none;
    border: none;
    border-radius: 999px;
    font-weight: 600;
    letter-spacing: .3px;
    box-shadow: 0 6px 18px rgba(202,169,107,.25);
    transition: all .3s ease;
}

    .btn-booking:hover {
        color: #fff;
        text-decoration: none;
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(202,169,107,.35);
        background: linear-gradient( 135deg, #d4b67d, #caa96b );
    }

    .btn-booking i {
        font-size: .9rem;
    }

.btn-book {
    background: #c89b3c;
    color: #fff;
    border-radius: 25px;
    padding: 8px 18px;
    font-weight: 600;
}
.btn-book {
    padding: 8px 18px;
    font-size: .95rem;
}

    .btn-book:hover {
        background: #b48729;
    }



.hero-overlay {
    background: rgba(0,0,0,.35);
}

.navbar .phone {
    font-size: .75rem;
}
.hotel-phone {
    font-size: .75rem;
}
.hero-section {
    padding-top: 0;
    margin-top: 0;
}
.custom-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: .3s;
    padding: 10px 0;
}

    .custom-navbar .nav-link {
        color: #fff !important;
    }

    .custom-navbar .brand-title,
    .custom-navbar .brand-subtitle {
        color: #fff;
    }

    .custom-navbar.scrolled {
        background: #fff;
        box-shadow: 0 4px 20px rgba(0,0,0,.08);
    }

        .custom-navbar.scrolled .nav-link {
            color: #333 !important;
        }

        .custom-navbar.scrolled .brand-title {
            color: #222;
        }

        .custom-navbar.scrolled .brand-subtitle {
            color: #777;
        }

.footer-simple {
    background: #111;
    color: #ddd;
    padding: 50px 0 20px;
}

.footer-logo {
    height: 50px;
    width: auto;
}

.footer-text {
    color: #999;
    font-size: .95rem;
    max-width: 280px;
}

.footer-link {
    color: #ccc;
    margin: 0 10px;
    transition: .3s;
}

    .footer-link:hover {
        color: #caa96b;
    }

.footer-simple hr {
    border-color: rgba(255,255,255,.1);
    margin: 30px 0 20px;
}

.footer-bottom {
    color: #888;
    font-size: .9rem;
}

.room-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,.08);
    transition: .3s;
}

    .room-card:hover {
        transform: translateY(-5px);
    }

    .room-card img {
        width: 100%;
        height: 180px;
        object-fit: cover;
    }

.room-body {
    padding: 18px;
}

.room-title {
    font-weight: 700;
    margin-bottom: 10px;
}

.room-desc {
    font-size: .9rem;
    color: #666;
    min-height: 50px;
}

.room-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.room-price {
    color: #caa96b;
    font-weight: 700;
    margin: 0;
}

.btn-booking {
    padding: 6px 14px;
    font-size: .85rem;
}

/* =========================================
PAGE HERO
========================================= */

.page-hero {
    position: relative;
    background: linear-gradient( rgba(0,0,0,.55), rgba(0,0,0,.55) ), url('../images/hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 120px 0 80px;
}

    .page-hero h1 {
        font-size: 3rem;
        font-weight: 700;
        margin-bottom: 15px;
        text-shadow: 0 2px 10px rgba(0,0,0,.3);
    }

    .page-hero p {
        max-width: 700px;
        margin: auto;
        font-size: 1.1rem;
        color: rgba(255,255,255,.9);
    }

/* Mobile */

@media(max-width:768px) {

    .page-hero {
        min-height: 280px;
        padding: 100px 0 60px;
    }

        .page-hero h1 {
            font-size: 2rem;
        }

        .page-hero p {
            font-size: 1rem;
        }
}
/* =========================================
CONTACT PAGE
========================================= */

.contact-card {
    background: #fff;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

    .contact-item i {
        width: 55px;
        height: 55px;
        background: rgba(202,169,107,.12);
        color: #caa96b;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
    }

    .contact-item h6 {
        margin-bottom: 5px;
        font-weight: 600;
    }

    .contact-item p {
        margin: 0;
        color: #666;
    }

.form-control {
    border-radius: 12px;
    padding: 12px 15px;
}

    .form-control:focus {
        border-color: #caa96b;
        box-shadow: none;
    }

.map-container {
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}
.contact-link {
    color: #555;
    text-decoration: none;
    transition: .3s;
}

    .contact-link:hover {
        color: #caa96b;
    }

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

    .contact-item i {
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(202,169,107,.12);
        color: #caa96b;
        border-radius: 50%;
        font-size: 1.1rem;
    }

    .contact-item h6 {
        margin-bottom: 5px;
        font-weight: 700;
    }

    .contact-item p {
        margin-bottom: 0;
        color: #666;
    }

/* =========================================
GALLERY PAGE
========================================= */

.gallery-card {
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
    transition: .3s;
}

    .gallery-card:hover {
        transform: translateY(-5px);
    }

    .gallery-card img {
        width: 100%;
        height: 250px;
        object-fit: cover;
        transition: .5s;
    }

    .gallery-card:hover img {
        transform: scale(1.08);
    }
.booking-form-card {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

    .booking-form-card .form-control,
    .booking-form-card .form-select {
        border-radius: 12px;
        padding: 12px;
    }

        .booking-form-card .form-control:focus,
        .booking-form-card .form-select:focus {
            border-color: #caa96b;
            box-shadow: none;
        }

    .booking-form-card h3 {
        font-weight: 700;
    }