/* Custom Hero Section Styling for Hotel Ozone 24 */

.hero-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

.hero-slider .hs-item {
    position: relative;
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

.hero-slider .hs-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.7) 100%);
    z-index: 1;
}

.hero-slider .container {
    position: relative;
    z-index: 2;
}

/* Hero Text Styling */
.hi-text {
    color: white;
    padding: 40px 0;
}

.hi-text span {
    display: inline-block;
    font-size: 16px;
    color: #dfa974;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    position: relative;
}

.hi-text span::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 60px;
    height: 2px;
    background: #dfa974;
}

.hi-text h1 {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hi-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 35px;
    max-width: 500px;
    color: rgba(255,255,255,0.9);
}

.primary-btn {
    display: inline-block;
    padding: 15px 35px;
    background: linear-gradient(135deg, #dfa974 0%, #c8956d 100%);
    color: white;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(223, 169, 116, 0.3);
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(223, 169, 116, 0.4);
    color: white;
    text-decoration: none;
}

/* Enhanced Booking Form Styling */
.booking-form {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px 35px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.booking-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #dfa974 0%, #c8956d 100%);
}

.booking-form h3 {
    color: #333;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}

.booking-form h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: #dfa974;
    border-radius: 2px;
}

.check-date {
    margin-bottom: 25px;
    position: relative;
}

.check-date label {
    display: block;
    color: #555;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.check-date input {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    font-size: 16px;
    background: white;
    transition: all 0.3s ease;
    outline: none;
}

.check-date input:focus {
    border-color: #dfa974;
    box-shadow: 0 0 0 3px rgba(223, 169, 116, 0.1);
    transform: translateY(-2px);
}

.check-date .icon_calendar {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #dfa974;
    font-size: 18px;
    pointer-events: none;
}

.booking-form button {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #dfa974 0%, #c8956d 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(223, 169, 116, 0.3);
    margin-top: 10px;
}

.booking-form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(223, 169, 116, 0.4);
}

.booking-form button:active {
    transform: translateY(-1px);
}

/* Carousel Navigation Styling */
.hero-slider .owl-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    z-index: 3;
}

.hero-slider .owl-nav button {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    font-size: 24px;
    transition: all 0.3s ease;
    outline: none;
}

.hero-slider .owl-nav button:hover {
    background: rgba(223, 169, 116, 0.8);
    border-color: #dfa974;
    transform: scale(1.1);
}

.hero-slider .owl-nav .owl-prev {
    left: 30px;
}

.hero-slider .owl-nav .owl-next {
    right: 30px;
}

/* Carousel Dots */
.hero-slider .owl-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.hero-slider .owl-dots .owl-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    margin: 0 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.hero-slider .owl-dots .owl-dot.active,
.hero-slider .owl-dots .owl-dot:hover {
    background: #dfa974;
    transform: scale(1.3);
}

/* Responsive Design */
@media (max-width: 991px) {
    .hi-text h1 {
        font-size: 3rem;
    }
    
    .booking-form {
        margin-top: 40px;
        padding: 30px 25px;
    }
    
    .hero-slider .owl-nav button {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

@media (max-width: 767px) {
    .hi-text h1 {
        font-size: 2.5rem;
    }
    
    .hi-text p {
        font-size: 16px;
    }
    
    .booking-form {
        padding: 25px 20px;
    }
    
    .hero-slider .owl-nav .owl-prev {
        left: 15px;
    }
    
    .hero-slider .owl-nav .owl-next {
        right: 15px;
    }
}

/* Animation Effects */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hi-text span,
.hi-text h1,
.hi-text p,
.primary-btn {
    animation: fadeInUp 0.8s ease forwards;
}

.hi-text h1 {
    animation-delay: 0.2s;
}

.hi-text p {
    animation-delay: 0.4s;
}

.primary-btn {
    animation-delay: 0.6s;
}

.booking-form {
    animation: fadeInUp 0.8s ease 0.8s forwards;
    opacity: 0;
}

/* Smooth scrolling indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: white;
    text-align: center;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}
