/* Backseat DJ - Landing Page Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.landing-container {
    min-height: 100vh;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 2rem;
    position: relative;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

.logo-section {
    text-align: left;
}

.logo-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: #fff;
    opacity: 0.9;
}

.brand-name {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: linear-gradient(45deg, #fff, #e0e0ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tagline {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    font-weight: 300;
}

.hero-description {
    margin-bottom: 2rem;
}

.lead {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
}

.btn-passenger {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-passenger:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.btn-driver {
    background: white;
    color: #667eea;
    border-color: white;
}

.btn-driver:hover {
    background: #f8f9ff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

/* Hero Visual - Phone Mockups */
.hero-visual {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    position: relative;
}

.phone-mockup {
    width: 180px;
    height: 360px;
    background: #333;
    border-radius: 30px;
    padding: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
}

.passenger-phone {
    transform: rotate(-5deg);
    z-index: 2;
}

.driver-phone {
    transform: rotate(5deg) translateY(20px);
    z-index: 1;
    opacity: 0.9;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    padding: 20px 15px;
    color: #333;
    font-size: 11px;
}

.mock-search-bar {
    background: white;
    padding: 10px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.mock-search-bar i {
    color: #667eea;
}

.mock-results {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mock-song {
    background: white;
    padding: 8px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}

.mock-art {
    width: 25px;
    height: 25px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 5px;
}

.mock-info {
    flex: 1;
}

.mock-title, .mock-artist {
    height: 8px;
    border-radius: 4px;
    margin-bottom: 3px;
}

.mock-title {
    background: #333;
    width: 60%;
}

.mock-artist {
    background: #999;
    width: 40%;
}

.mock-btn {
    background: #667eea;
    color: white;
    padding: 3px 8px;
    border-radius: 10px;
    font-size: 9px;
}

/* Driver Phone Mock */
.mock-header {
    text-align: center;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 10px;
}

.mock-play-btn {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
    padding: 12px;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.mock-queue {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.mock-queue-item {
    background: white;
    padding: 6px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 9px;
}

.mock-number {
    color: #667eea;
    font-weight: 600;
    min-width: 12px;
}

.mock-art-small {
    width: 20px;
    height: 20px;
    background: linear-gradient(45deg, #e74c3c, #f39c12);
    border-radius: 4px;
}

.mock-song-info {
    flex: 1;
}

.mock-title-small, .mock-artist-small {
    height: 6px;
    border-radius: 3px;
    margin-bottom: 2px;
}

.mock-title-small {
    background: #333;
    width: 70%;
}

.mock-artist-small {
    background: #999;
    width: 50%;
}

/* Features Section */
.features {
    padding: 5rem 2rem;
    background: #f8f9ff;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #333;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.feature {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.passenger-color {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.sync-color {
    background: linear-gradient(135deg, #f093fb, #f5576c);
}

.driver-color {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
}

.feature h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.feature p {
    color: #666;
    line-height: 1.7;
}

/* Benefits Section */
.benefits {
    padding: 3rem 2rem;
    background: white;
}

.benefits-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 15px;
    background: #f8f9ff;
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-2px);
}

.benefit-item i {
    font-size: 2rem;
    color: #667eea;
    min-width: 40px;
}

.benefit-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #333;
}

.benefit-item p {
    color: #666;
    font-size: 0.9rem;
}

/* Final CTA Section */
.final-cta {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #2c3e50, #3498db);
    color: white;
    text-align: center;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
}

.final-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.final-cta > p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.final-cta .cta-buttons {
    justify-content: center;
    margin-bottom: 2rem;
}

.final-cta .btn-passenger {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.final-cta .btn-driver {
    background: white;
    color: #2c3e50;
}

.cta-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 2rem;
}

.cta-note i {
    color: #4facfe;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 2rem;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.footer-brand i {
    color: #667eea;
}

.footer p {
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .brand-name {
        font-size: 2.5rem;
    }
    
    .hero-visual {
        justify-content: center;
        gap: 1rem;
    }
    
    .phone-mockup {
        width: 140px;
        height: 280px;
        padding: 15px;
    }
    
    .phone-screen {
        padding: 15px 10px;
        font-size: 10px;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .final-cta h2 {
        font-size: 2rem;
    }
    
    .benefits-container {
        grid-template-columns: 1fr;
    }
    
    .benefit-item {
        text-align: center;
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 1rem;
    }
    
    .brand-name {
        font-size: 2rem;
    }
    
    .phone-mockup {
        width: 120px;
        height: 240px;
        padding: 12px;
    }
    
    .hero-visual {
        gap: 0.5rem;
    }
    
    .driver-phone {
        transform: rotate(5deg) translateY(10px) scale(0.9);
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(-5deg);
    }
    50% {
        transform: translateY(-10px) rotate(-5deg);
    }
}

@keyframes float-reverse {
    0%, 100% {
        transform: translateY(0px) rotate(5deg);
    }
    50% {
        transform: translateY(10px) rotate(5deg);
    }
}

.passenger-phone {
    animation: float 3s ease-in-out infinite;
}

.driver-phone {
    animation: float-reverse 3s ease-in-out infinite 1.5s;
}
