/*
Theme Name: Kingdom Kar Wash
Theme URI: https://kingdomkarwash.com
Author: Your Name
Author URI: https://yourwebsite.com
Description: A luxury, custom car-wash theme with a built-in booking system. Branding: Kingdom Kar Wash - Your Chariot Awaits.
Version: 1.0.0
License: GPL v2 or later
Text Domain: kingdom-kar-wash
*/

/* ----------------------------------------------
   RESET & BASE
-------------------------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Roboto', 'Arial', sans-serif;
    background: #f8f7f5;
    color: #1a1a1a;
    line-height: 1.7;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
img { max-width: 100%; height: auto; }
a { text-decoration: none; color: #d4af37; }
a:hover { color: #b8941e; }

/* ----------------------------------------------
   TYPOGRAPHY
-------------------------------------------------- */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-weight: 700;
}
.gold-text {
    color: #d4af37;
}
.btn {
    display: inline-block;
    background: #d4af37;
    color: #0a0a0a;
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 2px solid #d4af37;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 0.9rem;
}
.btn:hover {
    background: transparent;
    color: #d4af37;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}
.btn-dark {
    background: #0a0a0a;
    border-color: #0a0a0a;
    color: #fff;
}
.btn-dark:hover {
    background: transparent;
    color: #0a0a0a;
}

/* ----------------------------------------------
   HEADER
-------------------------------------------------- */
.site-header {
    background: #0a0a0a;
    padding: 15px 0;
    border-bottom: 4px solid #d4af37;
    position: sticky;
    top: 0;
    z-index: 999;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.site-branding {
    display: flex;
    align-items: baseline;
    gap: 15px;
}
.site-title {
    font-size: 2rem;
}
.site-title a {
    color: #fff;
    font-family: 'Playfair Display', serif;
}
.site-description {
    color: #d4af37;
    font-size: 0.9rem;
    font-weight: 300;
}
.brand-slogan {
    display: flex;
    gap: 15px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.1rem;
    margin-top: 5px;
}
.brand-slogan .kings { color: #d4af37; }
.brand-slogan .ekarwashe { color: #fff; }
.brand-slogan .chariot { color: #aaa; font-style: italic; }

.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 30px;
    align-items: center;
}
.main-navigation a {
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: color 0.3s;
}
.main-navigation a:hover,
.main-navigation .current-menu-item a {
    color: #d4af37;
}
.nav-cta {
    background: #d4af37;
    color: #0a0a0a !important;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 700;
}
.nav-cta:hover {
    background: #fff !important;
    color: #0a0a0a !important;
}

/* Mobile Toggle (basic) */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
}

/* ----------------------------------------------
   HERO (front-page)
-------------------------------------------------- */
.hero {
    background: linear-gradient(135deg, rgba(10,10,10,0.85), rgba(10,10,10,0.6)), url('assets/images/hero-bg.jpg') center/cover no-repeat;
    min-height: 85vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: #fff;
    padding: 60px 20px;
}
.hero-content {
    max-width: 800px;
    margin: 0 auto;
}
.hero-content h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 10px;
}
.hero-content h1 span {
    color: #d4af37;
}
.hero-content .sub-title {
    font-size: 2.5rem;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: #d4af37;
    margin-bottom: 20px;
}
.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #ddd;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ----------------------------------------------
   SERVICES SECTION
-------------------------------------------------- */
.section-heading {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 15px;
}
.section-subheading {
    text-align: center;
    color: #666;
    margin-bottom: 50px;
    font-size: 1.1rem;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}
.service-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px 25px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.07);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 5px solid #d4af37;
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 45px rgba(0,0,0,0.12);
}
.service-card .icon {
    font-size: 3rem;
    color: #d4af37;
    margin-bottom: 15px;
}
.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}
.service-card .price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0a0a0a;
    margin: 10px 0;
}
.service-card .price small {
    font-size: 1rem;
    font-weight: 400;
    color: #666;
}
.service-card .duration {
    color: #555;
    font-size: 0.9rem;
}
.service-card .btn {
    margin-top: 15px;
    padding: 10px 30px;
    font-size: 0.8rem;
}

/* ----------------------------------------------
   TESTIMONIALS & GALLERY (simple placeholders)
-------------------------------------------------- */
.testimonials {
    background: #f0ede8;
    padding: 60px 0;
}
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
.testimonial-item {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    font-style: italic;
    border-left: 5px solid #d4af37;
}
.testimonial-item .author {
    font-weight: 700;
    font-style: normal;
    margin-top: 15px;
    color: #0a0a0a;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 30px 0;
}
.gallery-grid .gallery-item {
    background: #ddd;
    height: 200px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    border: 3px solid #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
/* Placeholder colors for demo */
.gallery-item:nth-child(1) { background: #b8941e; }
.gallery-item:nth-child(2) { background: #333; }
.gallery-item:nth-child(3) { background: #d4af37; }
.gallery-item:nth-child(4) { background: #555; }

/* ----------------------------------------------
   BOOKING FORM (page-book-now)
-------------------------------------------------- */
.booking-form-wrapper {
    max-width: 700px;
    margin: 40px auto;
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}
.booking-form-wrapper h2 {
    text-align: center;
    margin-bottom: 10px;
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 0.9rem;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border 0.3s;
    background: #fafafa;
}
.form-group input:focus,
.form-group select:focus {
    border-color: #d4af37;
    outline: none;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.booking-response {
    text-align: center;
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
    display: none;
}
.booking-response.success {
    display: block;
    background: #e6f7e6;
    color: #2d7a2d;
    border: 1px solid #2d7a2d;
}
.booking-response.error {
    display: block;
    background: #fde8e8;
    color: #a33;
    border: 1px solid #a33;
}

/* ----------------------------------------------
   FOOTER
-------------------------------------------------- */
.site-footer {
    background: #0a0a0a;
    color: #888;
    padding: 30px 0;
    border-top: 4px solid #d4af37;
    text-align: center;
    margin-top: 60px;
}
.site-footer .footer-slogan {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #d4af37;
    margin: 10px 0;
}
.site-footer a {
    color: #d4af37;
}

/* ----------------------------------------------
   RESPONSIVE
-------------------------------------------------- */
@media (max-width: 992px) {
    .hero-content h1 { font-size: 3.5rem; }
    .brand-slogan { font-size: 1rem; flex-wrap: wrap; justify-content: center; }
}
@media (max-width: 768px) {
    .header-inner { flex-direction: column; gap: 10px; }
    .site-branding { flex-direction: column; align-items: center; text-align: center; }
    .brand-slogan { justify-content: center; }
    .menu-toggle { display: block; }
    .main-navigation ul {
        display: none;
        flex-direction: column;
        gap: 10px;
        padding: 15px 0;
        width: 100%;
    }
    .main-navigation ul.open { display: flex; }
    .hero-content h1 { font-size: 2.8rem; }
    .hero-content .sub-title { font-size: 1.8rem; }
    .form-row { grid-template-columns: 1fr; }
    .booking-form-wrapper { padding: 20px; }
}