/*============================================================================================*/
/* Your custom styles below */
/*============================================================================================*/

/*============================================================================================*/
/* Logo Size Adjustment */
/*============================================================================================*/
header .logo_normal img {
    width: 120px;
    height: 120px;
}

header .logo_sticky img {
    width: 120px;
    height: 120px;
}

/*============================================================================================*/
/* Beautiful Language Dropdown Styles */
/*============================================================================================*/
.language-selector {
    position: relative;
}

.language-dropdown {
    position: relative;
    display: inline-block;
}

.language-btn {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 8px 16px;
    border-radius: 25px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.language-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.language-btn .flag-icon {
    width: 24px;
    height: 18px;
    vertical-align: middle;
    display: inline-block;
}

.language-btn .lang-text {
    font-weight: 600;
    letter-spacing: 0.5px;
}

.language-btn .dropdown-arrow {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.language-btn:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.language-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.95);
    transition: all 0.3s ease;
    z-index: 1000;
    min-width: 180px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.language-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.language-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: #333;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.language-option:last-child {
    border-bottom: none;
}

.language-option:hover {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #333;
    transform: translateX(5px);
}

.language-option.active {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: #fff;
    font-weight: 600;
}

.language-option.active:hover {
    background: linear-gradient(135deg, #0056b3 0%, #004085 100%);
    color: #fff;
    transform: translateX(5px);
}

.language-option .flag-icon {
    width: 20px;
    height: 15px;
    vertical-align: middle;
    display: inline-block;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .language-btn {
        padding: 6px 12px;
        font-size: 13px;
        width: 100%;
        justify-content: space-between;
        border-radius: 8px;
        margin-top: 10px;
    }

    .language-menu {
        position: static;
        width: 100%;
        margin-top: 10px;
        box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.1);
        transform: none;
        opacity: 1;
        visibility: visible;
        display: none;
    }

    .language-menu.show {
        display: block;
        transform: none;
    }

    .language-option {
        padding: 10px 14px;
        font-size: 13px;
        margin-left: 20px;
        border-radius: 5px;
        margin-bottom: 2px;
    }

    /* Mobile menu specific adjustments */
    .main-menu .language-selector {
        width: 100%;
        margin-top: 20px;
        padding: 0 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 20px;
    }

    .main-menu .language-dropdown {
        width: 100%;
    }

    .main-menu .language-btn {
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(0, 0, 0, 0.2);
        color: #333 !important;
        border-radius: 8px;
        font-weight: 500;
    }

    .main-menu .language-menu {
        background: rgba(255, 255, 255, 0.05);
        border: none;
        border-radius: 8px;
        margin-top: 8px;
    }

    .main-menu .language-option {
        color: #333 !important;
        margin-left: 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .main-menu .language-option:hover {
        background: rgba(0, 0, 0, 0.05);
        color: #333 !important;
    }

    .main-menu .language-option.active {
        background: rgba(0, 0, 0, 0.1);
        color: #333 !important;
    }
}

/* Header sticky state adjustments */
.fixed_header.sticky .language-btn {
    border-color: rgba(0, 0, 0, 0.2);
    color: #333;
}

.fixed_header.sticky .language-btn:hover {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.3);
}

/*============================================================================================*/
/* Force Menu Single Line - Override all other styles */
/*============================================================================================*/
@media (min-width: 992px) {
    .language-btn {
        padding: 2px 8px;
        white-space: nowrap;
    }
}

/*============================================================================================*/
/* Gallery Category Cards - Used in pictures.html */
/*============================================================================================*/
.category-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    position: relative;
}
.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}
.category-card .card-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}
.category-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.category-card:hover .card-image img {
    transform: scale(1.1);
}
.category-card .card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(248, 181, 0, 0.8), rgba(255, 215, 0, 0.8));
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.category-card:hover .card-overlay {
    opacity: 1;
}
.category-card .overlay-icon {
    color: white;
    font-size: 48px;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}
.category-card:hover .overlay-icon {
    transform: translateY(0);
}
.category-card .card-content {
    padding: 25px;
    text-align: center;
}
.category-card h3 {
    font-family: 'Caveat', cursive;
    font-size: 28px;
    font-weight: 500;
    color: #333;
    margin-bottom: 10px;
}
.category-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 0;
}
.category-grid {
    margin-top: 50px;
}
.category-link {
    text-decoration: none;
    color: inherit;
}
.category-link:hover {
    text-decoration: none;
    color: inherit;
}

/*============================================================================================*/
/* Breadcrumb Navigation Styles - Used for Room Pages and Gallery Pages */
/*============================================================================================*/
.gallery-nav {
    background: #f8f9fa;
    padding: 15px 0;
    margin-bottom: 40px;
    border-radius: 10px;
}

.gallery-nav .breadcrumb {
    background: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
}

.gallery-nav .breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    color: #f8b500;
    font-weight: bold;
}

.gallery-nav .breadcrumb-item a {
    color: #f8b500;
    text-decoration: none;
}

.gallery-nav .breadcrumb-item a:hover {
    text-decoration: underline;
}

.gallery-nav .breadcrumb-item.active {
    color: #333;
    font-weight: 600;
}

/*============================================================================================*/
/* Gallery Header Styles - Used for Gallery Pages and Room Pages */
/*============================================================================================*/
.gallery-header {
    text-align: center;
    margin-bottom: 50px;
}

.gallery-header h2 {
    font-family: 'Caveat', cursive;
    font-size: 42px;
    color: #333;
    margin-bottom: 15px;
}

.gallery-header p {
    font-size: 16px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}
