/* Fix for RemixIcon font loading */
:where([class^="ri-"])::before { content: "\f3c2"; }
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scrollbar-width: thin;
    scrollbar-color: #F59E0B rgba(252, 211, 77, 0.1);
}

::-webkit-scrollbar {
    width: 2px;
    height: 2px;
}

::-webkit-scrollbar-track {
    background: rgba(252, 211, 77, 0.1);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #DC2626, #F59E0B, #FCD34D);
    border-radius: 1px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #F59E0B, #FCD34D);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    scroll-behavior: smooth;
}

.hero-slider {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    background-size: cover;
    background-position: center;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.glass-morphism {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.floating-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 25px 50px rgba(255, 107, 107, 0.15);
    border: 1px solid rgba(255, 160, 122, 0.2);
}

.gradient-bg {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.08), rgba(245, 158, 11, 0.08), rgba(252, 211, 77, 0.05));
}

.btn-gradient {
    background: linear-gradient(45deg, #DC2626, #F59E0B);
    transition: all 0.3s ease;
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(245, 158, 11, 0.4);
}

.navbar-scroll {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.15);
}

/* Gradient text effect for logo when navbar scrolls */
.navbar-scroll .nav-brand-text {
    background: linear-gradient(90deg, #DC2626, #F59E0B, #FCD34D);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    line-height: 1.6;
    padding: 6px 0;
    margin: 0;
    vertical-align: middle;
    height: auto;
    min-height: 2.5rem;
}

.navbar-scroll .nav-link {
    color: #374151 !important;
    transition: all 0.3s ease;
}

.navbar-scroll .nav-link:hover {
    background: linear-gradient(180deg, #F59E0B, #FCD34D);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.navbar-scroll .mobile-menu-btn {
    color: #374151 !important;
}

.custom-input {
    border: 2px solid rgba(252, 211, 77, 0.4);
    background: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.custom-input:focus {
    border-color: #F59E0B;
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.15);
    outline: none;
}

.room-type-highlight {
    animation: roomTypePulse 2s ease-in-out;
    border-color: #F59E0B !important;
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.25) !important;
    background: rgba(252, 211, 77, 0.1) !important;
}

@keyframes roomTypePulse {
    0% { transform: scale(1); box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.25); }
    50% { transform: scale(1.02); box-shadow: 0 0 0 6px rgba(252, 211, 77, 0.4); }
    100% { transform: scale(1); box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.25); }
}

.custom-switch {
    position: relative;
    width: 60px;
    height: 30px;
    background: rgba(252, 211, 77, 0.3);
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.custom-switch.active {
    background: linear-gradient(270deg, #F59E0B, #FCD34D);
}

.switch-handle {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 24px;
    height: 24px;
    background: white;
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Switch handle slides right when active */
.custom-switch.active .switch-handle {
    transform: translateX(30px);
}

.room-card {
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
}

.room-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(220, 38, 38, 0.2);
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(220, 38, 38, 0.2);
    transition: all 0.3s ease;
}

.star-rating {
    color: #F59E0B;
    filter: drop-shadow(0 2px 4px rgba(245, 158, 11, 0.4));
}

.parallax-section {
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

.feature-icon {
    background: rgba(252, 211, 77, 0.08);
    transition: all 0.3s ease;
}

.feature-icon:hover {
    background: linear-gradient(225deg, rgba(220, 38, 38, 0.15), rgba(245, 158, 11, 0.15));
    transform: scale(1.1);
}

.progress-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.progress-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.progress-dot.active {
    background: #F59E0B;
    box-shadow: 0 0 15px rgba(245, 158, 11, 0.6);
}

.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-arrow:hover {
    background: linear-gradient(315deg, rgba(220, 38, 38, 0.3), rgba(252, 211, 77, 0.3));
    transform: translateY(-50%) scale(1.1);
}

.nav-arrow.prev { left: 30px; }
.nav-arrow.next { right: 30px; }

.floating-book-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    background: linear-gradient(180deg, #DC2626, #F59E0B);
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.4);
    transition: all 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

.floating-book-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(220, 38, 38, 0.5);
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-slider {
    position: relative;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-slide {
    min-width: 100%;
    padding: 0 20px;
}

@media (max-width: 768px) {
    .hero-slider .text-5xl {
        font-size: 2.5rem;
    }
}