/* Custom Header Styles for Menu Layout */
/* Logo Left | Menu Center | CTA Right */

.header-main {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
}

.header-left {
    flex: 0 0 auto;
}

.header-center {
    flex: 1 1 auto;
    display: flex;
    justify-content: center;
}

.header-right {
    flex: 0 0 auto;
}

/* Logo Sizing Improvements */
.header-logo img,
.header-logo-2 img,
.logo img {
    max-height: 80px;
    /* Adjust this value to get the perfect size */
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

/* Offcanvas Menu Logo */
.offcanvas__logo img {
    max-height: 80px;
    width: auto;
    object-fit: contain;
}

/* Footer Logo Adjustment */
.gt-footer-logo img {
    max-height: 100px;
    width: auto;
    object-fit: contain;
}

/* Mobile responsive logo adjustment */
@media (max-width: 991px) {

    .header-logo img,
    .header-logo-2 img,
    .logo img {
        max-height: 70px;
    }
}

/* Mobile logo swap - show cropped logo on phones only */
.mobile-logo {
    display: none !important;
}

@media (max-width: 767px) {
    .desktop-logo {
        display: none !important;
    }

    .mobile-logo {
        display: block !important;
    }
}

@media (max-width: 1199px) {
    .header-center {
        display: none;
    }
}

/* Room Booking Section Styles */
.gt-room-booking-section {
    background-color: #f8f5f0;
}

.gt-room-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.gt-room-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.gt-room-thumb {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.gt-room-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gt-room-card:hover .gt-room-thumb img {
    transform: scale(1.1);
}

.gt-room-info {
    padding: 25px;
    text-align: center;
    background: #fff;
}

.gt-room-info h4 {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-family: var(--heading-font);
}

.gt-room-info .gt-theme-btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
}

@media (max-width: 991px) {
    .gt-room-thumb {
        height: 220px;
    }

    .gt-room-info h4 {
        font-size: 20px;
    }
}

@media (max-width: 575px) {
    .gt-room-thumb {
        height: 200px;
    }

    .gt-room-info {
        padding: 20px;
    }

    .gt-room-info h4 {
        font-size: 18px;
        margin-bottom: 15px;
    }
}

/* Premium Breadcrumb Background Refinements */
.gt-breadcrumb-wrapper {
    background-position: center center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
}

.gt-breadcrumb-wrapper::before {
    background-color: rgba(0, 0, 0, 0.75) !important;
    /* Premium darkish overlay */
    opacity: 1 !important;
}

.gt-breadcrumb-wrapper .gt-page-heading {
    padding: 150px 0 180px !important;
    /* Increased padding to show "more of the image" */
}

@media (max-width: 991px) {
    .gt-breadcrumb-wrapper .gt-page-heading {
        padding: 100px 0 120px !important;
    }
}