/*
 Theme Name: NYC Black Cars
 Theme URI: https://nycblackcars.com
 Author: Hassan Zia
 Author URI: https://seoxoom.com
 Description: A clean, modern limo booking theme for NYC Black Cars. Customizable, mobile-friendly, with a hero booking form.
 Version: 1.0.0
 License: GNU General Public License v2 or later
 License URI: https://www.gnu.org/licenses/gpl-2.0.html
 Text Domain: nycblackcars
*/

:root {
    --nyc-primary: #111827;   /* Dark charcoal */
    --nyc-accent:  #fbbf24;   /* Gold accent */
    --nyc-bg:      #ffffff;
    --nyc-muted:   #6b7280;
    --nyc-radius:  12px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background-color: var(--nyc-bg);
    color: #111827;
    line-height: 1.6;
}

/* Header */

.site-header {
    background: var(--nyc-primary);
    color: #ffffff;
    padding: 12px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.site-header-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.site-branding {
    display: flex;
    align-items: center;
    gap: 12px;
}

.site-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
}

.site-description {
    font-size: 0.85rem;
    margin: 0;
    color: #d1d5db;
}

.site-logo img {
    max-height: 48px;
    width: auto;
    border-radius: 999px;
}

/* Navigation */

.main-navigation {
    display: flex;
    align-items: center;
    gap: 16px;
}

.main-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 16px;
}

.main-navigation a {
    color: #e5e7eb;
    text-decoration: none;
    font-size: 0.95rem;
    padding: 6px 10px;
    border-radius: 999px;
    transition: background 0.2s, color 0.2s;
}

.main-navigation a:hover,
.main-navigation .current-menu-item > a {
    background: #1f2937;
    color: #ffffff;
}

/* Mobile nav button */

.menu-toggle {
    display: none;
    background: none;
    border: 1px solid #4b5563;
    color: #e5e7eb;
    padding: 6px 10px;
    border-radius: 999px;
    cursor: pointer;
    font-size: 0.85rem;
}

/* Hero / front page */

.hero {
    background: linear-gradient(135deg, #020617, #111827);
    color: #ffffff;
    padding: 40px 20px 50px;
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 32px;
    align-items: center;
}

.hero-tag {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.75rem;
    color: #fbbf24;
    font-weight: 600;
}

.hero-title {
    font-size: 2.3rem;
    margin: 10px 0;
}

.hero-subtitle {
    font-size: 1rem;
    color: #d1d5db;
    max-width: 480px;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.hero-badge {
    font-size: 0.8rem;
    border-radius: 999px;
    padding: 4px 10px;
    border: 1px solid #374151;
    color: #e5e7eb;
}

.hero-contact {
    margin-top: 22px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.hero-phone {
    font-size: 1.05rem;
    font-weight: 600;
    color: #fbbf24;
}

.hero-cta {
    background: #fbbf24;
    color: #111827;
    border-radius: 999px;
    padding: 8px 16px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
}

/* Booking form card */

.booking-card {
    background: #020617;
    border-radius: 16px;
    padding: 20px 18px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
    border: 1px solid #1f2937;
}

.booking-card-title {
    font-size: 1.1rem;
    margin: 0 0 4px;
}

.booking-card-subtitle {
    font-size: 0.8rem;
    color: #9ca3af;
    margin-bottom: 14px;
}

/* Form */

.nyc-booking-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.nyc-form-row {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.nyc-form-row-inline {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.nyc-form-label {
    font-size: 0.8rem;
    color: #e5e7eb;
}

.nyc-form-input,
.nyc-form-select {
    width: 100%;
    padding: 8px 10px;
    font-size: 0.9rem;
    border-radius: 999px;
    border: 1px solid #4b5563;
    background: #0b1120;
    color: #f9fafb;
    outline: none;
    transition: border 0.15s, box-shadow 0.15s;
}

.nyc-form-input::placeholder {
    color: #6b7280;
}

.nyc-form-input:focus,
.nyc-form-select:focus {
    border-color: #fbbf24;
    box-shadow: 0 0 0 1px #fbbf24;
}

.nyc-form-submit {
    margin-top: 8px;
    width: 100%;
    padding: 10px 14px;
    border-radius: 999px;
    border: none;
    background: #fbbf24;
    color: #111827;
    font-weight: 700;
    cursor: pointer;
    font-size: 0.95rem;
}

/* Main content layout */

.site-main {
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 20px 40px;
}

.section-title {
    font-size: 1.4rem;
    margin-bottom: 4px;
}

.section-subtitle {
    font-size: 0.9rem;
    color: var(--nyc-muted);
    margin-bottom: 18px;
}

/* Simple grid (e.g. services) */

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 18px;
}

.card {
    border-radius: 16px;
    padding: 16px;
    border: 1px solid #e5e7eb;
    background: #ffffff;
}

.card-title {
    font-size: 1rem;
    margin: 0 0 6px;
}

.card-text {
    font-size: 0.9rem;
    color: #4b5563;
}

/* Blog basics */

.post {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e7eb;
}

.post-title {
    font-size: 1.3rem;
    margin-bottom: 4px;
}

.post-meta {
    font-size: 0.8rem;
    color: #6b7280;
    margin-bottom: 6px;
}

/* Footer */

.site-footer {
    background: #020617;
    color: #9ca3af;
    padding: 20px;
    margin-top: 30px;
}

.site-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
    font-size: 0.85rem;
}

.footer-left,
.footer-right {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.footer-right a {
    color: #fbbf24;
    text-decoration: none;
}

/* Responsive */

@media (max-width: 768px) {
    .hero-inner {
        grid-template-columns: 1fr;
    }

    .site-header-inner {
        flex-wrap: wrap;
        align-items: flex-start;
    }

    .main-navigation {
        display: none;
        width: 100%;
    }

    .main-navigation.is-open {
        display: block;
        margin-top: 10px;
    }

    .main-navigation ul {
        flex-direction: column;
        align-items: flex-start;
    }

    .menu-toggle {
        display: inline-flex;
        align-items: center;
    }
}
/* Booking / payment notice bar */

.nyc-booking-notice {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 14px;
    font-size: 0.9rem;
    border-radius: 999px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nyc-booking-notice-wrap-success {
    background: #ecfdf3;
    border-bottom: 1px solid #bbf7d0;
    padding: 10px 20px;
}

.nyc-booking-notice-wrap-warning {
    background: #fef3c7;
    border-bottom: 1px solid #fed7aa;
    padding: 10px 20px;
}

.nyc-booking-notice-success {
    color: #166534;
}

.nyc-booking-notice-warning {
    color: #92400e;
}

.nyc-booking-notice-icon {
    font-size: 1.1rem;
}

/* Booking status checker */

.nyc-status-form {
    max-width: 480px;
    margin: 20px 0;
    padding: 16px 18px;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    background: #f9fafb;
}

.nyc-status-form-row {
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.nyc-status-form-row label {
    font-size: 0.85rem;
    color: #4b5563;
}

.nyc-status-form-row input {
    padding: 8px 10px;
    border-radius: 999px;
    border: 1px solid #d1d5db;
    font-size: 0.9rem;
    outline: none;
}

.nyc-status-form-row input:focus {
    border-color: var(--nyc-accent);
    box-shadow: 0 0 0 1px var(--nyc-accent);
}

.nyc-status-form-submit {
    margin-top: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    border: none;
    background: var(--nyc-accent);
    color: #111827;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.9rem;
}

.nyc-status-result {
    max-width: 600px;
    margin: 10px 0 15px;
    padding: 14px 16px;
    border-radius: 16px;
    font-size: 0.9rem;
}

.nyc-status-result-found {
    background: #ecfdf3;
    border: 1px solid #bbf7d0;
    color: #166534;
}

.nyc-status-result-missing {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #b91c1c;
}

.nyc-status-note {
    margin-top: 8px;
    font-size: 0.8rem;
    opacity: 0.85;
}

/* Booking form: human verification + notices */
.nyc-captcha-wrap{
    margin: 14px 0 8px;
}
.nyc-form-notice{
    padding: 10px 12px;
    border-radius: 10px;
    margin: 0 0 12px;
    font-size: 14px;
    line-height: 1.4;
}
.nyc-form-notice-error{
    background: #fff1f1;
    border: 1px solid #f3b6b6;
    color: #7a1f1f;
}
