/*
    CSS written by PSLWeb.co.uk for DJN EXEC (www.djnexec.com)
    Copyright 2025 PSLWeb.co.uk - All Rights Reserved.
*/
/* Global Reset
   ------------ */
* {
    margin: 0;
    padding: 0;
}

/* Globals
   ------- */
:root {
    --text-light: #FFFFFF;
    --text-dark: #000000;
    --back-light: #FAFAFA;
    --back-dark: #1A1A1A;
    --button-back: #DD7700;
}

/* Elements
   -------- */
body {
    font-family: "Noto Serif", serif;
    font-weight: normal;
}
h1, h2 {
    font-family: "Noto Serif", serif;
    font-weight: normal;
}
h1, .header-text h2 {
    color: var(--text-light);
    text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}
h1 {
    font-size: 2.4rem;
    margin: 0 25px 0.4rem 25px;
    padding-top: 15px;
    line-height: 1.1;
}
p, li {
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 1.6rem;
}
ul {
    padding-left: 1rem;
    margin-bottom: 1.6rem;
}
li {
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 0.3rem;
}

a {
    font-family: "Noto Serif", serif;
    font-weight: normal;
    color: var(--button-back);
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}

button {
    font-variant: small-caps;
    font-size: 1.1rem;
    background-color: var(--button-back);
    border: 0;
    border-radius: 5px;
    margin-right: 1.2rem;
}
button a {
    display: block;
    padding: 12px;
    color: var(--text-light);
    text-decoration: none;
}
button a:hover {
    text-decoration: none;
}
button:hover {
    background-color: var(--back-dark);
    transition: background-color 0.4s ease;
}

/* Header Section
   -------------- */
.header-text h2 {
    display: inline-block;
    font-size: 1.4rem;
    margin: 0.2rem 25px 1.4rem 25px;
    padding-top: 0.4rem;
    border-top: 3px solid white;
}
.header-text {
    background-color: var(--back-dark);
}
.header-image img {
    display: block;
    width: 100%;
    height: auto;
}
@media (min-width: 800px) and (orientation: landscape) {
    .header-section {
	display: flex;
	height: 100vh;
	justify-content: center;
	background-image: url("../images/chauffeur-david-with-car-1080px.jpg");
	background-size: cover;
	background-position: center center;
    }
    h1 {
	font-size: 2.8rem;
	margin-top: 0.2rem;
    }
    .header-text h2 {
	font-size: 1.6rem;
	margin-bottom: 0;
    }
    .header-text {
	background-color: transparent;
    }
    .header-image {
	display: none;
    }
}
@media (min-width: 1080px) {
     .header-section {
	background-image: url("../images/chauffeur-david-with-car-1920px.jpg");
    }
    h1 {
	font-size: 3.2rem;
    }
}

/* Terms page
   ---------- */
.terms .header-section {
    background-image: none;
    height: auto;
}
.terms .header-text {
    display: none;
}
.terms .header-image {
    display: block;
}

/* Main Content
   ------------ */
.main-content-container > * {
    max-width: 1320px;
    margin: 0 auto;
    padding: 15px 3%;
}
@media (min-width: 980px) and (orientation: landscape) {
     .main-content-container > * {
	padding: 30px 3%;
     }
}
.reverse-dir {
    flex-direction: row-reverse;
}
@media (min-width: 980px) and (orientation: landscape) {
     .two-col-flex {
	display: flex;
	gap: 4rem;
    }
}
@media (min-width: 1024px) {
     .two-col-flex {
	display: flex;
	gap: 6rem;
    }
}
@media (min-width: 1280px) {
     .two-col-flex {
	display: flex;
	gap: 8rem;
    }
}
.dark-back {
    background-color: var(--back-dark);
    color: var(--text-light);
}
.two-col-flex > * {
    flex-basis: 100%;
}
.two-col-flex img {
    display: block;
    width: 100%;
    height: auto;
}
main .dark-back h1, main .dark-back h2 {
    color: var(--text-light);
}
main .light-back h1, main .light-back h2 {
    color: var(--text-dark);
}
main h2 {
    display: inline-block;
    font-size: 1.7rem;
    margin-bottom: 1.6rem;
    padding-bottom: 0.4rem;
}
main .dark-back h2 {
    border-bottom: 3px solid #FFF;
}
main .light-back h2 {
    border-bottom: 3px solid #000;
}
/* Terms page
   ---------- */
.terms main h2 {
    font-size: 2.2rem;
}
@media (min-width: 1024px) {
    .terms main h2 {
	font-size: 2.8rem;
    }
}

/* Footer
   ------ */
.footer-container {
    display: flex;
    flex-grow: 0;
    padding: 2.4rem 3%;
    justify-content: space-between;
    gap: 2rem;
}
footer p {
    margin-bottom: 0;
}