
:root {
    --hm-gold: #c77a53;
    --hm-gold-hover: #b06642;
    --hm-dark-bg: #221611;
    --hm-sidebar-bg: #1e1511;
    --hm-topbar-bg: #1a120e;
    --hm-white: #ffffff;
    --hm-white-dim: rgba(255, 255, 255, 0.7);
    --hm-border: rgba(255, 255, 255, 0.1);
    --font-heading: 'Marcellus', serif;
    --font-body: 'Jost', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: #f4f4f4;
}

body.no-scroll {
    overflow: hidden;
}

.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
}

.hm-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    padding: 0 30px;
}

.hm-topbar {
    background-color: var(--hm-topbar-bg);
    height: 45px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    font-size: 13px;
    color: var(--hm-white-dim);
}

.topbar-flex {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.topbar-left, .topbar-right {
    display: flex;
    gap: 20px;
    align-items: center;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.info-item .material-symbols-outlined {
    font-size: 16px;
    color: var(--hm-gold);
}

.topbar-socials {
    display: flex;
    gap: 10px;
    margin-left: 10px;
    border-left: 1px solid var(--hm-border);
    padding-left: 15px;
}

.topbar-socials a {
    color: var(--hm-white-dim);
    transition: 0.3s;
    display: flex;
    align-items: center;
}

.topbar-socials a:hover {
    color: var(--hm-gold);
}

.topbar-socials .material-symbols-outlined {
    font-size: 18px;
}

.hm-header {
    background-color: var(--hm-dark-bg);
    height: 90px;
    width: 100%;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--hm-border);
    position: relative;
    z-index: 100;
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hm-logo img {
    height: 40px;
    display: block;
}

.hm-navbar {
    display: block;
}

.hm-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.hm-menu a {
    text-decoration: none;
    color: var(--hm-white);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    position: relative;
    padding-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.hm-menu a .material-symbols-outlined {
    font-size: 18px;
    color: var(--hm-gold);
    transition: 0.3s;
}

.hm-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--hm-gold);
    transition: width 0.3s ease;
}

.hm-menu a:hover,
.hm-menu a.active {
    color: var(--hm-gold);
}

.hm-menu a:hover .material-symbols-outlined,
.hm-menu a.active .material-symbols-outlined {
    color: var(--hm-white);
}

.hm-menu a:hover::after,
.hm-menu a.active::after {
    width: 100%;
}

.hm-header-actions {
    display: flex;
    align-items: center;
    gap: 25px;
}

.hm-header-lang {
    position: relative;
    margin-right: 10px;
}

.lang-current {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    color: var(--hm-white-dim);
    transition: 0.3s;
}

.lang-current:hover {
    color: var(--hm-white);
}

.lang-current .fi {
    font-size: 16px;
    filter: sepia(100%) hue-rotate(320deg) saturate(50%) contrast(0.8);
    transition: 0.3s;
}

.lang-current:hover .fi {
    filter: none;
}

.lang-current .arrow {
    font-size: 18px;
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: var(--hm-dark-bg);
    border: 1px solid var(--hm-border);
    list-style: none;
    padding: 10px;
    margin-top: 10px;
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.3s;
    min-width: 50px;
    text-align: center;
}

.hm-header-lang:hover .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-dropdown li {
    margin-bottom: 8px;
}

.lang-dropdown li:last-child {
    margin-bottom: 0;
}

.lang-dropdown .fi {
    font-size: 16px;
    filter: sepia(100%) hue-rotate(320deg) saturate(50%) contrast(0.8);
    transition: 0.3s;
}

.lang-dropdown a:hover .fi {
    filter: none;
}

.hm-booking-btn {
    background-color: var(--hm-gold);
    color: var(--hm-white);
    text-decoration: none;
    padding: 10px 24px;
    border-radius: 2px; 
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hm-booking-btn .material-symbols-outlined {
    font-size: 18px;
}

.hm-booking-btn:hover {
    background-color: var(--hm-white);
    color: var(--hm-dark-bg);
}

.hm-menu-trigger {
    cursor: pointer;
    color: var(--hm-white);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    transition: 0.3s;
}

.hm-menu-trigger:hover {
    border-color: var(--hm-gold);
    color: var(--hm-gold);
}

.hm-menu-trigger .menu-icon {
    font-size: 24px;
}

.hm-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 380px; 
    height: 100vh;
    background-color: var(--hm-sidebar-bg);
    z-index: 1000;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    box-shadow: -10px 0 40px rgba(0,0,0,0.6);
    display: flex;
    flex-direction: column;
}

.hm-sidebar.active {
    transform: translateX(0);
}

.hm-sidebar-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://safar.devsvibe.co/wp-content/uploads/2025/11/hotel-reservation-cta-shade-1.svg');
    background-size: cover;
    opacity: 0.04;
    pointer-events: none;
    z-index: 0;
}

.hm-sidebar-close {
    position: absolute;
    top: 25px;
    right: 25px;
    background: none;
    border: 1px solid rgba(255,255,255,0.15);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: var(--hm-white);
    cursor: pointer;
    transition: 0.3s;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hm-sidebar-close:hover {
    border-color: var(--hm-gold);
    color: var(--hm-gold);
    transform: rotate(90deg);
}

.hm-sidebar-close .material-symbols-outlined {
    font-size: 20px;
}

.hm-sidebar-inner {
    position: relative;
    z-index: 2;
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow-y: auto;
}

.hm-sidebar-top {
    border-bottom: 1px solid var(--hm-border);
    padding-bottom: 25px;
    margin-bottom: 25px;
}

.hm-sidebar-brand {
    margin-bottom: 25px;
}
.hm-sidebar-brand img {
    height: 40px;
}

.hm-sidebar-lang .lang-heading {
    display: block;
    font-size: 10px;
    color: var(--hm-gold);
    letter-spacing: 2px;
    margin-bottom: 12px;
    font-weight: 600;
}

.lang-flags {
    display: flex;
    gap: 12px;
}

.flag-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 24px;
    border: 1px solid var(--hm-border);
    border-radius: 2px;
    transition: 0.3s;
    background: rgba(255,255,255,0.03);
}

.flag-btn .fi {
    font-size: 16px;
    filter: sepia(100%) hue-rotate(320deg) saturate(50%) contrast(0.8);
    transition: 0.3s;
}

.flag-btn:hover, .flag-btn.active {
    border-color: var(--hm-gold);
    background: rgba(199, 122, 83, 0.1);
}

.flag-btn:hover .fi, .flag-btn.active .fi {
    filter: none;
}

.hm-sidebar-nav-wrap {
    flex-grow: 1;
}

.hm-sidebar-menu {
    list-style: none;
    width: 100%;
}

.hm-sidebar-menu li {
    margin-bottom: 0;
    border-bottom: 1px solid rgba(255,255,255,0.03);
}

.hm-sidebar-menu li:last-child {
    border: none;
}

.hm-sidebar-menu a {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: var(--font-heading);
    font-size: 18px; 
    color: var(--hm-white);
    text-decoration: none;
    transition: 0.3s;
    padding: 15px 0;
}

.hm-sidebar-menu .icon-box {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    transition: 0.3s;
}

.hm-sidebar-menu .material-symbols-outlined {
    font-size: 16px;
    color: var(--hm-white-dim);
    transition: 0.3s;
}

.hm-sidebar-menu a:hover {
    color: var(--hm-gold);
    padding-left: 10px;
}

.hm-sidebar-menu a:hover .icon-box {
    background: var(--hm-gold);
}

.hm-sidebar-menu a:hover .material-symbols-outlined {
    color: var(--hm-white);
}

.hm-sidebar-bottom {
    margin-top: 25px;
    border-top: 1px solid var(--hm-border);
    padding-top: 25px;
}

.info-title {
    font-size: 10px;
    color: var(--hm-gold);
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-weight: 600;
}

.info-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--hm-white-dim);
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 10px;
    transition: 0.3s;
}

.info-link.address {
    align-items: flex-start;
    line-height: 1.5;
}

.info-link .material-symbols-outlined {
    font-size: 18px;
    color: var(--hm-gold);
}

.info-link:hover {
    color: var(--hm-white);
}

.hm-social-icons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-link {
    width: 36px;
    height: 36px;
    border: 1px solid var(--hm-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.social-link:hover {
    background-color: var(--hm-gold);
    border-color: var(--hm-gold);
    transform: translateY(-3px);
}

.hm-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(20, 15, 12, 0.9);
    z-index: 900;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
    backdrop-filter: blur(4px);
}

.hm-backdrop.visible {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 1024px) {
    .hm-navbar { display: none; }
    .hm-topbar { display: none; }
    .hm-header { height: 80px; }
}

@media (max-width: 768px) {
    .hm-sidebar { width: 100%; }
    .hm-booking-btn { display: none; }
}

/* Footer Block */
.hm-site-footer {
    background-color: #2a1b15;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Jost', sans-serif;
    position: relative;
    overflow: hidden;
    font-size: 16px;
}

.hm-footer-content {
    padding: 85px 0 50px;
    position: relative;
    z-index: 2;
}

.hm-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
}

.hm-footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.hm-col {
    flex: 1;
    min-width: 200px;
}

.hm-col-info {
    flex: 1.2;
    padding-right: 30px;
}

.hm-col-newsletter {
    flex: 1.3;
}

.hm-logo-wrap {
    margin-bottom: 20px;
}

.hm-footer-logo {
    max-width: 180px;
}

.hm-footer-desc {
    margin-bottom: 30px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

.hm-social-wrap {
    display: flex;
    align-items: center;
    gap: 15px;
}

.hm-social-label {
    color: #fff;
    font-weight: 500;
}

.hm-social-icons {
    display: flex;
    gap: 10px;
}

.hm-social-link {
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    color: #fff;
    transition: 0.3s;
}

.hm-social-link:hover {
    background-color: #c77a53;
}

.hm-footer-title {
    font-family: 'Marcellus', serif;
    color: #fff;
    font-size: 24px;
    margin-bottom: 30px;
    font-weight: 400;
}

.hm-footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hm-footer-list li {
    margin-bottom: 14px;
}

.hm-footer-list a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: 0.3s;
    position: relative;
    display: inline-block;
}

.hm-footer-list a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: #fff;
    transition: 0.3s;
}

.hm-footer-list a:hover {
    color: #fff;
}

.hm-footer-list a:hover::after {
    width: 100%;
}

.hm-icon-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.hm-icon-list i {
    color: #c77a53;
    margin-top: 5px;
}

.hm-address-item span {
    line-height: 1.5;
}

.hm-newsletter-desc {
    margin-bottom: 25px;
    line-height: 1.6;
}

.hm-newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hm-input-group {
    position: relative;
}

.hm-input-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.5);
}

.hm-email-input {
    width: 100%;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 15px 15px 15px 50px;
    border-radius: 50px;
    color: #fff;
    outline: none;
    font-family: 'Jost', sans-serif;
    font-size: 15px;
}

.hm-email-input:focus {
    border-color: #c77a53;
}

.hm-subscribe-btn {
    background-color: #c77a53;
    color: #fff;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    cursor: pointer;
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: 0.3s;
    width: 200px;
}

.hm-subscribe-btn i {
    background: #fff;
    color: #c77a53;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.hm-subscribe-btn:hover {
    background-color: #fff;
    color: #2a1b15;
}

.hm-footer-watermark {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    overflow: hidden;
}

.hm-watermark-text {
    opacity: 0.03;
    width: 60%;
    margin-bottom: -50px;
    margin-left: -50px;
}

.hm-watermark-shape {
    opacity: 0.03;
    width: 25%;
    margin-bottom: -50px;
    margin-right: -20px;
}

.hm-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    position: relative;
    z-index: 2;
    background-color: #2a1b15;
}

.hm-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.hm-copyright {
    font-size: 15px;
}

.hm-copyright a {
    color: #fff;
    text-decoration: none;
}

.hm-bottom-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.hm-bottom-links li {
    display: flex;
    align-items: center;
    gap: 15px;
}

.hm-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.hm-bottom-links a:hover {
    color: #c77a53;
}

.hm-dot {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 992px) {
    .hm-footer-row {
        flex-direction: column;
    }
    .hm-col {
        width: 100%;
        margin-bottom: 30px;
    }
    .hm-col-info {
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .hm-bottom-flex {
        flex-direction: column;
        text-align: center;
    }
    .hm-bottom-links {
        justify-content: center;
    }
    .hm-watermark-text {
        width: 100%;
    }
}