/*general font and weight rules */
body {
    margin: 0px;
    font-family: "Lato", sans-serif;
    font-family: "Lato", sans-serif;
    font-weight: 390;
    font-style: normal;
}

html {
    scroll-behavior: smooth;
}


h2 { 
    font-family: "Playfair Display", serif;
    font-optical-sizing: auto;
    font-weight: 520;
     font-style: normal;
}

h3{
    font-family: "Playfair Display", serif;
    font-optical-sizing: auto;
  font-weight: 520;
  font-style: normal;
}



h4{
    font-family: "Playfair Display", serif;
    font-optical-sizing: auto;
  font-weight: 450;
  font-style: normal;
}
/*end general rules */

/*nav bar css */
.nav-bar {
    border: 5px solid black;
    padding-left: 5vw;
    padding-right: 10vw;
    background-color: black;
    display: flex;
    flex-direction: row;
    column-gap: 20px;
    align-items: center;
}

.nav-bar a{
    font-family: "Playfair Display", serif;
    font-size: 1.2rem;
    font-weight: 520;
    font-style: normal;
    color: white;
    transition: color 0.3s ease;
    text-decoration: none;
    
    
}

.nav-bar a:hover {
    color: #C9B483;
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    line-height: 1.2;
}

.contact-info .phone,
.contact-info .email {
    margin: 0;
    font-size: 0.85rem; /* smaller than nav links */
    color: #C9B483;
}

.contact-info .email {
    font-size: 0.8rem; /* slightly smaller than phone */
}

.nav-bar img {
    width: 12vw;
    height: auto;
    margin-right: auto;
}
/*end nav bar css */

/*intro video css */
.intro video{
    width: 100%;
    height: auto;
    display: block;
}

.intro img{
    padding-top: 45px;
}
/*end intro video css */

/* set background pattern */
.after-intro {
    background-image: url("../Images/background.png");
    background-repeat: repeat;
    padding-top: 40px;
}
/*end background pattern css */

/*service sizing css */
.services {
    border: 5px solid black;
    height: 75vh;
    padding-left: 5vw;
    padding-right: 10vw;
    padding-bottom: 5vh;
}

.service-pic {
    height: 20vh;
    width: 20vw;
    overflow: hidden;
}

.service-pic img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}
/*end service sizing css */


.fleet {
    padding: 50px 10%;
    background-color: white; 
    color: #222;
    border-top: 5px solid #C9B483; /* gold top border for section */
}

.fleet h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: #C9B483;
    border-bottom: 2px solid #C9B483;
    display: inline-block;
    padding-bottom: 10px;
}

.fleet h4 {
    font-size: 1.5rem;
    margin: 40px 0 15px;
    color: #222;
    border-left: 5px solid #C9B483;
    padding-left: 15px;
}

.car {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 50px;
    padding: 20px;
    border: 2px solid #C9B483; /* gold outline */
    border-radius: 10px;
    background-color: white; /* black card background */
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.car p {
    flex: 1;
    font-size: 1rem;
    line-height: 1.6;
    color: black; /* readable on black background */
}

.fleet-pic {
    flex: 1;
    max-width: 400px;
    width: 100%;
    border-radius: 10px;
    border: 3px dotted #C9B483;
    object-fit: cover;
}
/*end fleet css */

/*Footer css */
.footer {
    background-color: black;
    color: #C9B483; /* gold */
    border: solid 10px;
    border-color: black;
    border-top: #b39d6f;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px;
    flex-wrap: wrap; /* lets it stack on smaller screens */
}

.footer img {
    height: 60px;
}

.footer-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    gap: 5px;
}

.footer h3 {
    font-weight:400;
}

.footer-info h3 {
    font-size: 0.9rem;
    font-weight: normal;
    margin: 0;
}

/*End footer css */



/*Swiper css */
/* === Swiper Section === */
.swiper {
    padding: 50px 10%;
    background-color: white;
    border-top: 5px solid #C9B483; /* gold line at top */
    position: relative;
}

/* Section Header */
.swiper h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: #C9B483;
    border-bottom: 2px solid #C9B483;
    display: inline-block;
    padding-bottom: 10px;
}

/* Swiper Wrapper */
.swiper-wrapper {
    padding-bottom: 40px; /* space for arrows if needed */
}

/* Swiper slides */
.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Card style */
.swiper-content {
    background-color: #111; /* black */
    border: 3px solid #C9B483; /* gold */
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    color: white;
    max-width: 500px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.swiper-content:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(201, 180, 131, 0.5);
}

/* Card title */
.swiper-content p {
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #C9B483;
}

/* Image wrapper */
.service-pic {
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid #C9B483;
}

.service-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

/* Navigation arrows */
.swiper-button-next,
.swiper-button-prev {
    color: #C9B483;
    transform: scale(1.4);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    color: #b39d6f;
}

/*End Swiper css */

/*About Us css */
.about-us {
    max-width: 900px;
    margin: 0 auto 40px;
    padding: 30px;
    background-color: white;
    border: 3px solid black;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.about-us h3 {
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
    color: black;
    border-bottom: 3px solid rgb(201, 180, 131); /* gold */
    padding-bottom: 10px;
}

.about-us p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: black;
    text-align: center;
}

/*end About Us css */

/*quote request css */
.quote-request form {
    max-width: 900px; 
    margin: 0 auto;
    background: white;
    color: black;
    padding: 20px;
    border: 2px solid black; 
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    margin-bottom: 30px;
}

/* Side-by-side input groups */
.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 12px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pickup, .dropoff {
    margin-bottom: 10px;
}

.form-message {
    margin-top: 15px;
    padding: 12px 15px;
    border-radius: 8px;
    font-weight: bold;
    display: none; /* hidden until message appears */
}

.form-message.success {
    background-color: black;
    color: gold;
    border: 2px solid gold;
}

.form-message.error {
    background-color: gold;
    color: black;
    border: 2px solid black;
}


/* Radio buttons in a row */
.radio-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}
.radio-group label {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Make text inputs fill available space */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="time"] {
    width: 100%;
    padding: 6px;
    border: 1px solid black;
    border-radius: 4px;
}

/* Submit button styled smaller */
.submit {
    background: black;
    color: #d4af37;
    border: none;
    padding: 8px 14px;
    cursor: pointer;
    border-radius: 4px;
    font-size: 0.95rem;
    transition: 0.2s ease-in-out;
    margin-top: 15px;
}
.submit:hover {
    background: #d4af37;
    color: black;
    border: 1px solid black;
}

.booking-section {
    max-width: clamp(900px, 80vw, 1200px);
    margin: 60px auto;
    padding: 30px;
    background-color: white;
    border: 2px solid black;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.booking-title {
    font-family: "Playfair Display", serif;
    font-size: 2rem;
    font-weight: 520;
    text-align: center;
    margin-bottom: 30px;
    color: black;
    border-bottom: 3px solid #C9B483;
    padding-bottom: 10px;
}

.booking-frame {
    padding: 10px;
    border: 2px solid #C9B483;
    border-radius: 10px;
    background-color: #111;
}

.booking-frame iframe {
    width: 100% !important;
    min-height: 620px;
    border: none !important;
    border-radius: 8px;
    background-color: white;
}

/*End Quote Request Css */

/* ===========================
   MOBILE FIXES – ALL PHONES
   =========================== */
@media (max-width: 768px) {

    /* GLOBAL */
    body {
        overflow-x: hidden;
    }

    h3 {
        font-size: 1.6rem;
    }

    p {
        font-size: 1rem;
    }

    /* NAV BAR */
    .nav-bar {
        flex-wrap: wrap;
        padding: 12px 16px;
        gap: 12px;
        border-width: 2px;
    }

    .nav-bar img {
        width: 120px;
        margin-right: 0;
    }

    .nav-bar a {
        font-size: 1rem;
    }

    .contact-info {
        align-items: flex-start;
        width: 100%;
        margin-top: 8px;
    }

    .contact-info .phone,
    .contact-info .email {
        font-size: 0.85rem;
    }

    /* INTRO VIDEO */
    .intro video {
        height: auto;
        max-height: 70vh;
        object-fit: cover;
    }

    /* ABOUT US */
    .about-us {
        margin: 0 15px 30px;
        padding: 20px;
        border-width: 2px;
    }

    .about-us p {
        font-size: 1rem;
    }

    /* SWIPER / SERVICES */
    .swiper {
        padding: 30px 15px;
    }

    .swiper-content {
        padding: 20px;
        max-width: 100%;
    }

    .swiper-content p {
        font-size: 1.2rem;
    }

    .service-img {
        height: 200px;
    }

    .swiper-button-next,
    .swiper-button-prev {
        display: none; /* swipe instead */
    }

    /* FLEET SECTION */
    .fleet {
        padding: 30px 15px;
    }

    .fleet h3 {
        font-size: 1.7rem;
    }

    .fleet h4 {
        font-size: 1.3rem;
    }

    .car {
        flex-direction: column;
        gap: 20px;
        padding: 16px;
    }

    .car p {
        font-size: 1rem;
        text-align: center;
    }

    .fleet-pic {
        max-width: 100%;
    }

    /* BOOKING / LIMO WIDGET */
    .booking-section {
        margin: 40px 15px;
        padding: 20px;
    }

    .booking-title {
        font-size: 1.6rem;
    }

    .booking-frame iframe {
        min-height: 520px;
    }

    /* FOOTER */
    .footer {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        gap: 15px;
    }

    .footer img {
        height: 50px;
    }

    .footer-info {
        align-items: center;
        text-align: center;
    }

    .footer-info h3 {
        font-size: 0.85rem;
    }
}

/* EXTRA SMALL PHONES */
@media (max-width: 480px) {

    .nav-bar a {
        font-size: 0.95rem;
    }

    .swiper-content p {
        font-size: 1.1rem;
    }

    .service-img {
        height: 180px;
    }

    .booking-frame iframe {
        min-height: 480px;
    }
}

/* ===========================
   MOBILE SWIPER FIX (DO NOT REMOVE)
   =========================== */
@media (max-width: 768px) {

    .service-pic {
        width: 100% !important;
        height: auto !important;
    }

    .swiper-slide {
        width: 100% !important;
    }

    .swiper-content {
        width: 100%;
    }
}
