﻿@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap');

/*===================================== 
YOU CAN WRITE CUSTOM CSS 
======================================*/

/* Inner Page Banner Styles */
.wt-bnr-inr {
    height: 450px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.wt-bnr-inr-entry {
    text-align: center;
    position: relative;
    z-index: 2;
}
.banner-title-name h2 {
    font-size: 56px;
    font-weight: 800;
    letter-spacing: 2px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}
.wt-breadcrumb {
    padding: 0;
    margin: 20px 0 0;
    list-style: none;
    display: flex;
    justify-content: center;
}
.wt-breadcrumb li {
    display: inline-block;
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.wt-breadcrumb li a {
    color: rgba(255,255,255,0.8);
}
.wt-breadcrumb li + li:before {
    content: "/";
    padding: 0 15px;
    color: rgba(255,255,255,0.5);
}

/* Modern Room Item (odalar.blade.php) */
.room-modern-item {
    background: #fff;
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid #f0f0f0;
    margin-bottom: 50px;
    min-height: 400px;
    display: flex;
}
.room-modern-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}
.room-image {
    width: 45%;
    height: 400px;
    overflow: hidden;
    position: relative;
}
.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.8s ease;
}
.room-modern-item:hover .room-image img {
    transform: scale(1.1);
}
.room-content {
    width: 55%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.room-price {
    margin-bottom: 5px;
}
.room-price .currency {
    font-size: 18px;
    vertical-align: top;
    font-weight: 600;
}
.room-price .amount {
    font-size: 36px;
    font-weight: 800;
    line-height: 1;
}
.room-price .per {
    font-size: 14px;
    color: #888;
    margin-left: 5px;
    text-transform: uppercase;
}
.room-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}
.room-title a {
    color: #222;
    transition: color 0.3s;
}
.room-title a:hover {
    color: #c19b76;
}
.room-description {
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
}
.room-features-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.feature-icon-item {
    display: flex;
    align-items: center;
    gap: 8px;
}
.feature-icon-item i {
    font-size: 20px;
    color: #c19b76;
}
.feature-icon-item span {
    font-size: 13px;
    font-weight: 600;
    color: #444;
}

/* Room Details (odadetay.blade.php) */
.room-detail-header {
    margin-bottom: 40px;
}
.room-detail-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
}
.detail-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}
.detail-stat-card {
    background: #fdfdfd;
    padding: 25px 15px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #f0f0f0;
    transition: all 0.3s;
}
.detail-stat-card:hover {
    background: #fff;
    border-color: #c19b76;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}
.detail-stat-card i {
    font-size: 32px;
    color: #c19b76;
    margin-bottom: 12px;
    display: block;
}
.detail-stat-card .stat-val {
    font-size: 18px;
    font-weight: 700;
    display: block;
    color: #222;
}
.detail-stat-card .stat-label {
    font-size: 12px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.room-services-organized {
    margin-top: 50px;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}
.service-item-modern {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: #fff;
    border-radius: 6px;
    border: 1px solid #eee;
}
.service-item-modern i {
    width: 40px;
    height: 40px;
    background: #f8f1ea;
    color: #c19b76;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 18px;
}

.widget_booking_premium {
    background: #222;
    color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}
.widget_booking_premium .widget-title {
    color: #fff;
    padding: 30px;
    background: #2a2a2a;
    margin: 0;
    text-align: center;
}
.booking-form-premium {
    padding: 30px;
}
.booking-form-premium .form-control {
    background: #333;
    border: 1px solid #444;
    color: #fff;
}
.booking-form-premium label {
    color: #aaa;
    font-size: 12px;
    text-transform: uppercase;
}

/* Pagination Styles */
.pagination-bx {
    margin-top: 50px;
}
.pagination-bx .pagination li a {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 5px;
    font-weight: 700;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .room-modern-item {
        flex-direction: column;
        min-height: auto;
    }
    .room-image, .room-content {
        width: 100%;
    }
    .room-image {
        height: 300px;
    }
    .detail-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .wt-bnr-inr {
        height: 350px;
    }
    .banner-title-name h2 {
        font-size: 36px;
    }
}

/* Discovery Section Header */
.discovery-header-subtitle {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #c19b76;
    letter-spacing: 5px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.discovery-header-title {
    font-size: 42px;
    font-weight: 800;
    color: #222;
    margin-bottom: 25px;
    position: relative;
    letter-spacing: 1px;
}

.discovery-separator {
    width: 60px;
    height: 3px;
    background: #c19b76;
    margin-bottom: 50px;
}

@media (max-width: 768px) {
    .discovery-header-title {
        font-size: 30px;
    }
}
.discovery-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    border: 1px solid rgba(0,0,0,0.03);
    height: 100%;
}

.discovery-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(193, 155, 118, 0.15);
    border-color: rgba(193, 155, 118, 0.2);
}

.discovery-media {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.discovery-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.discovery-card:hover .discovery-media img {
    transform: scale(1.1);
}

.discovery-price-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 8px 18px;
    border-radius: 12px;
    color: #222;
    z-index: 5;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.5);
}

.discovery-price-tag .currency {
    font-size: 14px;
    font-weight: 600;
    vertical-align: top;
    margin-right: 2px;
    color: #c19b76;
}

.discovery-price-tag .amount {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.discovery-price-tag small {
    font-size: 11px;
    color: #666;
    text-transform: uppercase;
    font-weight: 500;
    margin-left: 3px;
}

.discovery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 4;
}

.discovery-card:hover .discovery-overlay {
    opacity: 1;
}

.view-btn {
    width: 50px;
    height: 50px;
    background: #c19b76;
    color: #fff !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.discovery-card:hover .view-btn {
    transform: translateY(0);
}

.discovery-content {
    padding: 30px;
    background: #fff;
}

.discovery-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.discovery-meta span {
    font-size: 12px;
    color: #777;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.discovery-meta i {
    color: #c19b76;
    font-size: 14px;
}

.discovery-meta .dot {
    width: 4px;
    height: 4px;
    background: #ddd;
    border-radius: 50%;
}

.discovery-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.discovery-title a {
    color: #1a1a1a;
    transition: all 0.3s;
    text-decoration: none !important;
}

.discovery-card:hover .discovery-title a {
    color: #c19b76;
}

.discovery-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
}

.explore-link {
    font-size: 14px;
    font-weight: 700;
    color: #222 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    padding-bottom: 5px;
}

.explore-link:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: #c19b76;
    transition: width 0.3s ease;
}

.discovery-card:hover .explore-link:after {
    width: 60px;
}

.explore-link i {
    font-size: 12px;
    transition: transform 0.3s ease;
    color: #c19b76;
}

.discovery-card:hover .explore-link i {
    transform: translateX(5px);
}

/* Premium Language Switcher Redesign */
.premium-lang-dropdown {
    position: relative;
    z-index: 999999 !important;
}

.lang-toggle {
    font-weight: 800;
    letter-spacing: 1.5px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none !important;
    font-size: 14px;
    cursor: pointer;
    pointer-events: auto !important;
    color: #fff !important;
}

.lang-toggle i {
    color: #c19b76;
    font-size: 16px;
}

.lang-menu-list {
    display: none;
    position: absolute;
    min-width: 100px;
    background: #1a1a1a;
    border: 1px solid rgba(193, 155, 118, 0.3);
    border-radius: 12px;
    padding: 10px 0 !important;
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
    margin-top: 25px !important;
    right: 0;
    left: auto;
    backdrop-filter: blur(15px);
    list-style: none !important;
    overflow: hidden;
}

.premium-lang-dropdown.is-open .lang-menu-list {
    display: block !important;
    animation: fadeInDown 0.3s ease forwards;
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.lang-menu-list li {
    margin: 0 !important;
    padding: 0 !important;
}

.lang-menu-list li a {
    color: #fff !important;
    padding: 12px 25px !important;
    font-size: 13px;
    font-weight: 700;
    display: block;
    transition: all 0.3s;
    text-align: center;
    letter-spacing: 1.5px;
    text-decoration: none !important;
}

.lang-menu-list li a:hover,
.lang-menu-list li a.lang-active {
    color: #c19b76 !important;
    background: rgba(193, 155, 118, 0.1) !important;
}

/* Premium Gallery Redesign */
.premium-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    background: #000;
}

.premium-gallery-media {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.premium-gallery-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.premium-gallery-item:hover .premium-gallery-media img {
    transform: scale(1.15);
    opacity: 0.7;
}

.premium-gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0) 100%);
    display: flex;
    align-items: flex-end;
    padding: 30px;
    opacity: 0;
    transition: all 0.4s ease;
}

.premium-gallery-item:hover .premium-gallery-overlay {
    opacity: 1;
}

.premium-gallery-content {
    width: 100%;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.premium-gallery-item:hover .premium-gallery-content {
    transform: translateY(0);
}

.gallery-category {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #c19b76;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.gallery-title {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    letter-spacing: 1px;
}

.gallery-zoom-btn {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: #c19b76;
    color: #fff !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.premium-gallery-item:hover .gallery-zoom-btn {
    opacity: 1;
    transform: scale(1);
}

@media (max-width: 991px) {
    .premium-gallery-media {
        height: 300px;
    }
}

.slider-detail-small,
.slider-detail-small * {
    font-size: clamp(30px, 2.8vw, 44px);
    line-height: 1.12;
    font-weight: 700;
}

/* Global typography */
body,
h1, h2, h3, h4, h5, h6,
p, li,
button, input, textarea, select {
    font-family: 'Montserrat', sans-serif;
}

/* Header fine-tune (easy rollback) */
.header-style-1 .main-bar { min-height: 126px; display: flex; align-items: center; }
.header-style-1 .logo-header { height: 78px; width: 170px; }
.header-style-1 .header-nav .nav > li { margin: 0; padding: 0; }
.header-style-1 .header-nav .nav > li > a { font-weight: 500 !important; letter-spacing: 0.1px !important; font-size: 14px !important; padding: 8px 0 !important; margin: 0; display: block; }
.header-style-1 .extra-nav { height: auto; }


@media (min-width: 992px) {
    .header-style-1 .header-nav { margin-left: auto; margin-right: 16px; }
    .header-style-1 .header-nav .nav { justify-content: flex-start !important; gap: 20px; width: auto !important; }
}


