/*
 Theme Name:   HotelGalaxy Pro Child
 Description:  Child theme for HotelGalaxy Pro - enables separate template settings for each page
 Template:     hotelgalaxy-pro
 Version:      1.0.0
 Author:       Luna
 */

.restaurant-template-section {
    margin-top: 0;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.restaurant-template-section .container-fluid {
    padding-top: 0;
}

.restaurant-template-section.section {
    padding: 0 !important;
}

.breadcrumb-section {
    margin-bottom: 0 !important;
}

.slider-section {
    max-height: 700px !important;
    overflow: hidden;
}

.room-template.template-area {
    padding: 0 !important;
}

/* Disable slider text spin animation - replace with simple fade */
.splitting .char,
.owl-item.active .char,
.owl-item.active .plop-it .char {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
}

/* Simple fade-in for slider text */
.owl-item.active .plop-it {
    animation: simple-fade-in 0.6s ease-out both;
}

@keyframes simple-fade-in {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}