/**
 * Landing Page Styles
 * Modern black and white theme for AirMukwai.com
 */

:root {
    --primary-black: #000000;
    --primary-white: #ffffff;
    --accent-gray: #f8f9fa;
    --text-dark: #212529;
    --text-light: #6c757d;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
}

/* Navigation */
.navbar {
    background: var(--primary-white) !important;
    border-bottom: 1px solid #e9ecef;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-black) !important;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--text-dark) !important;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-black) !important;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-white) 0%, var(--accent-gray) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary-black);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* Buttons */
.btn-primary-custom {
    background: var(--primary-black);
    border: 2px solid var(--primary-black);
    color: var(--primary-white);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    background: var(--primary-white);
    color: var(--primary-black);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.btn-outline-custom {
    border: 2px solid var(--primary-black);
    color: var(--primary-black);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-custom:hover {
    background: var(--primary-black);
    color: var(--primary-white);
    transform: translateY(-2px);
}

/* Feature Cards */
.feature-card {
    background: var(--primary-white);
    border: none;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--primary-white);
}

/* Pricing Cards */
.pricing-card {
    background: var(--primary-white);
    border: 2px solid #e9ecef;
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    border-color: var(--primary-black);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.pricing-card.popular {
    border-color: var(--primary-black);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.pricing-card.popular::before {
    content: 'MOST POPULAR';
    position: absolute;
    top: 15px;
    right: -35px;
    background: var(--primary-black);
    color: var(--primary-white);
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 0.75rem;
    font-weight: 600;
}

/* Footer */
.footer {
    background: var(--primary-black);
    color: var(--primary-white);
    padding: 3rem 0 1rem;
}

.footer a {
    color: #adb5bd;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--primary-white);
}

/* Stickers/Graphics */
.sticker {
    position: absolute;
    opacity: 0.1;
    z-index: 0;
    pointer-events: none;
}

.sticker.plane {
    top: 10%;
    right: 10%;
    font-size: 8rem;
    color: var(--primary-black);
}

.sticker.gear {
    bottom: 20%;
    left: 5%;
    font-size: 6rem;
    color: var(--primary-black);
}

.sticker.chart {
    top: 50%;
    left: 10%;
    font-size: 5rem;
    color: var(--primary-black);
}

/* About Page Styles */
.section-bg {
    background: var(--accent-gray);
    padding: 80px 0;
}

.feature-box {
    background: var(--primary-white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
}

.team-member {
    text-align: center;
    margin-bottom: 2rem;
}

.team-avatar {
    width: 120px;
    height: 120px;
    background: var(--primary-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2.5rem;
    color: var(--primary-white);
}

.stats-counter {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-black);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .sticker {
        display: none;
    }

    .stats-counter {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }

    .btn-primary-custom,
    .btn-outline-custom {
        width: 100%;
        margin-bottom: 1rem;
    }
}