/* Hero Section Styles */
.hero-bg {
    position: relative;
    overflow: hidden;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(91, 33, 182, 0.1) 0%, rgba(76, 29, 149, 0.1) 100%);
    z-index: 1;
}

/* Animation Classes */
.float {
    animation: float 15s ease-in-out infinite;
}

.rotate-slow {
    animation: rotate 20s linear infinite;
}

.typing-effect {
    border-right: 4px solid;
    animation: typing 3.5s steps(40, end), blink .75s step-end infinite;
    white-space: nowrap;
    overflow: hidden;
}

.feature-card {
    transition: transform 0.3s ease-in-out;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.floating-icon {
    animation: floating 10s ease-in-out infinite;
}

.scale-in {
    opacity: 0;
    transform: scale(0.9);
    animation: scaleIn 0.5s ease-out forwards;
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    animation: slideInLeft 0.5s ease-out forwards;
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    animation: slideInRight 0.5s ease-out forwards;
}

/* Animation Delays */
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }

/* Neon Effects */
.neon-glow {
    text-shadow: 0 0 10px rgba(176, 38, 255, 0.7),
                 0 0 20px rgba(176, 38, 255, 0.5),
                 0 0 30px rgba(176, 38, 255, 0.3);
}

.blue-glow {
    text-shadow: 0 0 10px rgba(59, 130, 246, 0.7),
                 0 0 20px rgba(59, 130, 246, 0.5),
                 0 0 30px rgba(59, 130, 246, 0.3);
}

.pink-glow {
    text-shadow: 0 0 10px rgba(236, 72, 153, 0.7),
                 0 0 20px rgba(236, 72, 153, 0.5),
                 0 0 30px rgba(236, 72, 153, 0.3);
}

.green-glow {
    text-shadow: 0 0 10px rgba(34, 197, 94, 0.7),
                 0 0 20px rgba(34, 197, 94, 0.5),
                 0 0 30px rgba(34, 197, 94, 0.3);
}

.purple-glow {
    text-shadow: 0 0 10px rgba(147, 51, 234, 0.7),
                 0 0 20px rgba(147, 51, 234, 0.5),
                 0 0 30px rgba(147, 51, 234, 0.3);
}

/* Card Effects */
.card-glow {
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(176, 38, 255, 0.1);
}

.card-glow:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(176, 38, 255, 0.3);
}

.neon-border {
    border: 1px solid rgba(176, 38, 255, 0.3);
    box-shadow: 0 0 15px rgba(176, 38, 255, 0.2);
}

/* Room Cards */
.room-card {
    transition: all 0.3s ease;
}

.room-card.selected {
    border-color: rgba(176, 38, 255, 0.5);
    box-shadow: 0 0 20px rgba(176, 38, 255, 0.3);
}

/* Time Slots */
.time-slot {
    transition: all 0.3s ease;
}

.time-slot.booked {
    opacity: 0.5;
    cursor: not-allowed;
    background-color: rgba(239, 68, 68, 0.2) !important;
}

.time-slot.selected {
    border-color: rgba(176, 38, 255, 0.5);
    box-shadow: 0 0 15px rgba(176, 38, 255, 0.2);
}

/* Summary Card */
.summary-card {
    background: rgba(17, 24, 39, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    border: 1px solid rgba(176, 38, 255, 0.2);
    box-shadow: 0 0 20px rgba(176, 38, 255, 0.1);
}

/* Modal Animations */
.modal-animate-in {
    animation: modalIn 0.3s ease-out;
}

/* Base Styles */
body {
    background-color: #111827;
    background-image: url('/images/bg-pattern.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    color: white;
}

/* Keyframes */
@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}

@keyframes blink {
    from, to { border-color: transparent }
    50% { border-color: #b026ff }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: .7;
    }
}

@keyframes floating {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(10px, -10px) rotate(5deg);
    }
    50% {
        transform: translate(0, -20px) rotate(0deg);
    }
    75% {
        transform: translate(-10px, -10px) rotate(-5deg);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes modalIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Additional Animation Classes */
.fade-in-down {
    animation: fadeInDown 0.5s ease-out;
}

.fade-in-left {
    animation: fadeInLeft 0.5s ease-out;
}

.fade-in-right {
    animation: fadeInRight 0.5s ease-out;
}

/* Custom Neon Effects */
.btn-glow {
    box-shadow: 0 0 10px rgba(176, 38, 255, 0.5),
                0 0 20px rgba(176, 38, 255, 0.3);
    transition: all 0.3s ease;
}

.btn-glow:hover {
    box-shadow: 0 0 15px rgba(176, 38, 255, 0.7),
                0 0 30px rgba(176, 38, 255, 0.5);
}

.blue-card-glow {
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.2);
    transition: all 0.3s ease;
}

.blue-card-glow:hover {
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
} 