/**
 * Landing Page Styles
 * Hotel Management System
 * 
 * This file contains all landing page styling
 * extracted from blade templates for better maintainability.
 */

/* =============================================
   CSS Variables / Design Tokens
   ============================================= */
:root {
    --primary-color: #4e73df;
    --secondary-color: #858796;
    --success-color: #1cc88a;
    --info-color: #36b9cc;
    --warning-color: #f6c23e;
    --danger-color: #e74a3b;
    --dark-color: #1a1a2e;
    --light-color: #f8f9fc;
}

/* =============================================
   Base Styles
   ============================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body.landing-page {
    font-family: 'Inter', sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

/* =============================================
   Navbar
   ============================================= */
.landing-navbar {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.landing-navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
}

.landing-navbar .navbar-brand {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.landing-navbar .nav-link {
    color: #333;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
    position: relative;
}

.landing-navbar .nav-link:hover {
    color: var(--primary-color);
}

.landing-navbar .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.landing-navbar .nav-link:hover::after {
    width: 80%;
}

/* =============================================
   Buttons
   ============================================= */
.btn-primary-custom {
    background: linear-gradient(135deg, var(--primary-color) 0%, #224abe 100%);
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(78, 115, 223, 0.3);
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(78, 115, 223, 0.4);
    color: white;
}

.btn-outline-custom {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    background: transparent;
}

.btn-outline-custom:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.btn-hero {
    border-radius: 50px;
    font-weight: 600;
}

/* =============================================
   Hero Section
   ============================================= */
.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8rem 0 6rem;
}

.hero-section .hero-title {
    font-weight: 800;
}

.hero-section .hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

.hero-section .hero-image {
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* =============================================
   Sections
   ============================================= */
.section-padding {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 3rem;
}

/* =============================================
   Feature Cards
   ============================================= */
.feature-card {
    border-radius: 15px;
    transition: all 0.3s ease;
    border: none;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15) !important;
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.feature-icon-pink {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.feature-icon-cyan {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.feature-icon-orange {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.feature-icon-purple {
    background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
}

.feature-icon-light {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

/* =============================================
   How It Works Section
   ============================================= */
.how-it-works-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.step-number {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 2rem;
    font-weight: bold;
}

.step-description {
    opacity: 0.9;
}

/* =============================================
   Pricing Cards
   ============================================= */
.pricing-card {
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.pricing-card.popular {
    border: 2px solid var(--primary-color);
}

.pricing-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    transform: rotate(45deg);
    width: 150px;
    text-align: center;
    padding: 5px 0;
}

/* =============================================
   CTA Section
   ============================================= */
.cta-section {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
}

.cta-section .cta-subtitle {
    opacity: 0.9;
}

/* =============================================
   Footer
   ============================================= */
.landing-footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    padding: 4rem 0 2rem;
}

.landing-footer h5 {
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

.landing-footer a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    margin-bottom: 0.5rem;
}

.landing-footer a:hover {
    color: white;
    padding-left: 5px;
}

.landing-footer .footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-right: 0.5rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    padding-left: 0;
}

/* =============================================
   Animations
   ============================================= */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.float-animation {
    animation: float 3s ease-in-out infinite;
}

/* =============================================
   Responsive
   ============================================= */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .section-padding {
        padding: 3rem 0;
    }

    .hero-section {
        padding: 5rem 0 4rem;
    }
}

/* =============================================
   Common Utility Classes
   ============================================= */
.rounded-lg {
    border-radius: 15px;
}

.rounded-xl {
    border-radius: 20px;
}

.rounded-input {
    border-radius: 10px;
}

.bg-light-gray {
    background: #f8f9fc;
}

/* Gradient Backgrounds */
.bg-gradient-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.bg-gradient-pink {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.bg-gradient-blue {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.bg-gradient-orange {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

/* Icon Wrapper */
.icon-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Demo Info Item */
.demo-info-item {
    background: #f8f9fc;
    border-radius: 15px;
}

/* Video Placeholder */
.video-placeholder {
    height: 450px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

/* Accordion Styling */
.accordion-item.rounded-accordion {
    border-radius: 15px;
    overflow: hidden;
}

