/*
Theme Name: Jersey Shore Taxi Premium
Theme URI: https://yourdomain.com
Author: Jersey Shore Taxi & Rideshare
Description: Premium Modern Yellow & Black Business Theme
Version: 1.0
*/

:root {
    --primary: #FFC300;
    --dark: #0E0E0E;
    --dark-secondary: #1A1A1A;
    --light: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--dark);
    color: var(--light);
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

header {
    background: rgba(0,0,0,0.9);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 999;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary);
}

nav a {
    color: var(--light);
    text-decoration: none;
    margin-left: 30px;
    font-weight: 500;
    transition: .3s;
}

nav a:hover {
    color: var(--primary);
}

.hero {
    height: 90vh;
    background: linear-gradient(rgba(0,0,0,.7), rgba(0,0,0,.7)),
    url('https://images.unsplash.com/photo-1502877338535-766e1452684a');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 600px;
}

.hero h1 {
    font-size: 52px;
    color: var(--primary);
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    padding: 14px 30px;
    background: var(--primary);
    color: #000;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: .3s;
}

.btn:hover {
    background: #e6ac00;
}

.section {
    padding: 100px 0;
}

.section-dark {
    background: var(--dark-secondary);
}

.section h2 {
    text-align: center;
    color: var(--primary);
    margin-bottom: 50px;
    font-size: 36px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.card {
    background: #121212;
    padding: 40px;
    border-radius: 8px;
    transition: .3s;
}

.card:hover {
    transform: translateY(-5px);
}

footer {
    background: #000;
    text-align: center;
    padding: 40px 0;
    font-size: 14px;
}