/* css/style.css */
:root {
    --gold: #c9a66b;
    --dark: #0f0f0f;
    --text: #f4f4f4;
}

* { margin:0; padding:0; box-sizing:border-box; }
body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--dark);
    color: var(--text);
    line-height: 1.6;
}

.container { max-width: 1280px; margin: 0 auto; padding: 0 20px; }

.navbar {
    background: rgba(15,15,15,0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}
.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo h2 { color: var(--gold); font-size: 1.8rem; }
.logo span { color: #fff; }
.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}
.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}
.nav-links a:hover { color: var(--gold); }

.btn-primary {
    background: var(--gold);
    color: #111;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(201,166,107,0.3);
}
.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    padding: 10px 24px;
    border-radius: 50px;
    text-decoration: none;
}

.hero {
    height: 100vh;
    background: linear-gradient(rgba(15,15,15,0.65), rgba(15,15,15,0.75)), url('https://picsum.photos/id/1015/2000/1200') center/cover no-repeat;
    display: flex;
    align-items: center;
}
.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
}
.tagline { font-size: 1.5rem; margin-bottom: 30px; opacity: 0.95; }

.booking-teaser {
    background: #1a1a1a;
    padding: 40px 0;
    text-align: center;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: var(--gold);
}

.grid, .testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.card, .car-card, .testimonial {
    background: #1f1f1f;
    padding: 30px;
    border-radius: 16px;
    transition: transform 0.3s;
}
.card:hover, .car-card:hover { transform: translateY(-8px); }

.car-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 15px;
}

.modal {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.85);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}
.modal-content {
    background: #1f1f1f;
    max-width: 520px;
    width: 90%;
    padding: 30px;
    border-radius: 20px;
    position: relative;
}
.close {
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 2rem;
    cursor: pointer;
    color: var(--gold);
}

.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 500; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 8px;
    background: #2a2a2a;
    color: #fff;
    font-size: 1rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.full-width { width: 100%; margin-top: 15px; }

@media (max-width: 768px) {
    .nav-links { display: none; } /* JS will handle mobile menu */
    .hero-content h1 { font-size: 2.6rem; }
}