/* Hero Section Styles */
#home {
    height: 90vh;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 20px;
    overflow: hidden;
}

.slideshow-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: all 2s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(1.2);
    transform: scale(1.05);
}

.slide.active {
    opacity: 1;
    transform: scale(1);
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(29, 78, 216, 0.40) 0%, rgba(37, 99, 235, 0.30) 50%, rgba(59, 130, 246, 0.20) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    animation: slideUp 0.8s ease-out;
    max-width: 800px;
}

.hero-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 30px;
    opacity: 0.95;
    line-height: 1.6;
}

.hero-content .btn-book {
    font-size: 1rem;
    padding: 16px 40px;
    border-radius: var(--radius-3xl);
    box-shadow: var(--shadow-lg);
    animation: pulse 2s infinite;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: var(--shadow-lg);
        transform: scale(1);
    }
    50% {
        box-shadow: var(--shadow-xl);
        transform: scale(1.02);
    }
}

.hero-content .btn-book:hover {
    animation: none;
    box-shadow: var(--shadow-hover);
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px) scale(1.02);
}
