/* MotoChronic Premium Landing Page Styles */

:root {
    --mc-orange: #D35400;
    --mc-orange-glow: rgba(211, 84, 0, 0.4);
    --dark-bg: #121212;
    --darker-bg: #0a0a0a;
    --text-light: #f5f5f5;
    --text-muted: #aaaaaa;
    --glass-bg: rgba(25, 25, 25, 0.6);
    --glass-border: rgba(255, 255, 255, 0.08);
}

.landing-wrapper {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-light);
    background-color: var(--dark-bg);
    overflow-x: hidden;
}

/* Typography */
.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #fff;
}

.highlight {
    color: var(--mc-orange);
    text-shadow: 0 0 20px var(--mc-orange-glow);
}

/* Glassmorphism Utilities */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

/* Hero Section */
.hero-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, rgba(10,10,10,0.95) 0%, rgba(20,20,20,0.9) 100%);
    /* You can add an image URL later: url('/assets/images/hero-bg.jpg') center/cover no-repeat; */
    padding: 2rem;
    position: relative;
}

.hero-content {
    max-width: 800px;
    z-index: 2;
    animation: fadeInUP 1s ease-out forwards;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

/* Call to Action Buttons */
.cta-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn-playstore, .btn-webapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.btn-playstore {
    background: linear-gradient(135deg, #ff7e29 0%, var(--mc-orange) 100%);
    color: white;
    box-shadow: 0 6px 20px var(--mc-orange-glow), inset 0 1px 1px rgba(255,255,255,0.4);
    border: 1px solid rgba(255,255,255,0.1);
}

.btn-playstore:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 30px rgba(211, 84, 0, 0.6), inset 0 1px 2px rgba(255,255,255,0.5);
    color: white;
}

.btn-webapp {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2), inset 0 1px 1px rgba(255,255,255,0.1);
}

.btn-webapp:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.08) 100%);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3), inset 0 1px 2px rgba(255,255,255,0.2);
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
}

/* iOS Hint */
.ios-hint {
    padding: 1rem 1.5rem;
    font-size: 0.95rem;
    color: #ccc;
    max-width: 500px;
    margin: 0 auto;
    text-align: left;
    border-left: 4px solid var(--mc-orange);
}

/* Feature Showcase */
.feature-showcase {
    padding: 5rem 2rem;
    background-color: var(--darker-bg);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    padding: 2.5rem 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
    border-color: rgba(255, 255, 255, 0.15);
}

.feature-icon {
    font-size: 3rem;
    color: var(--mc-orange);
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 10px var(--mc-orange-glow));
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.feature-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

.highlight-card {
    border-color: rgba(211, 84, 0, 0.3);
    background: linear-gradient(180deg, rgba(25,25,25,0.6) 0%, rgba(35,20,10,0.6) 100%);
}

/* Live Data Section */
.live-data-section {
    padding: 5rem 2rem;
    background-color: var(--dark-bg);
}

.live-data-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.tours-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.tour-card {
    padding: 1.5rem;
    border-left: 4px solid var(--mc-orange);
    transition: transform 0.2s ease;
}

.tour-card:hover {
    transform: translateX(5px);
    background: rgba(40, 40, 40, 0.8);
}

.tour-card h4 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    color: #fff;
}

.tour-meta {
    margin: 0.3rem 0;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Animations */
@keyframes fadeInUP {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .live-data-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* Hide Burger Menu on Landing Page */
.menu-toggle {
    display: none !important;
}
