/* Landing Page - PizzaMaster */

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    padding-top: 76px;
}

/* Navbar */
#mainNav {
    background: rgba(15, 23, 42, 0.95) !important;
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

/* Hero */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-bg-shapes {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(245,158,11,0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(59,130,246,0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(34,197,94,0.05) 0%, transparent 50%);
    pointer-events: none;
}

/* Mockup */
.mockup-window {
    max-width: 540px;
    margin: 0 auto;
    box-shadow: 0 25px 60px rgba(0,0,0,0.3) !important;
}

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

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Feature cards */
.feature-card {
    transition: all 0.3s ease;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
    border-radius: 16px;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.feature-icon {
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

/* Tracking */
.tracking-wide { letter-spacing: 2px; }
.text-purple { color: #a855f7; }

/* Plan card hover */
.card { transition: all 0.3s ease; }

/* Pricing section */
.plan-highlight {
    background: linear-gradient(135deg, rgba(59,130,246,0.05), rgba(37,99,235,0.03));
    border: 2px solid rgba(59,130,246,0.2);
}

/* Responsive */
@media (max-width: 991px) {
    .hero-section {
        text-align: center;
        padding: 100px 0 60px;
    }
}

@media (max-width: 576px) {
    .hero-section { min-height: auto; }
    .display-4 { font-size: 2.2rem; }
    .display-6 { font-size: 1.6rem; }
}
