@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Domine:wght@400;700&display=swap');

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Roboto", sans-serif;
  margin: 0;
  padding: 0;
  position: relative;

  /* Compressed/optimized Unsplash background */
  background-image: url("images/img-taxi-blue-backgr.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Domine", serif;
}

.text-center {
  text-align: center;
}

/* ------------------- NAVIGATION ------------------- */
.navigation {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-sizing: border-box;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 14px 26px;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(6px);

  border-bottom: 1px solid rgba(255,255,255,0.12);
}

/* BRAND NAME & LOGO*/
.nav-phone:hover{
  text-decoration: underline;
}

/* RECTANGLE STRIP UNDER NAV */
.brand-strip{
  position: relative;
  margin: 20px 16px;
  min-height: 160px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0,0,0,.35);
  background: url("images/img-taxi-orange-backgr.png") center / cover no-repeat;
}

.brand-strip__overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
  border-radius: inherit;
}

.brand-strip__inner{
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 18px 26px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand-strip__logo{
  width: 96px;
  height: 96px;
  flex-shrink: 0;
  padding: 12px;
  border-radius: 18px;
  object-fit: contain;
  background:
    linear-gradient(rgba(0,0,0,.45), rgba(0,0,0,.45)),
    url("images/img-taxi-orange-backgr.png") center / cover no-repeat;
  box-shadow: 0 10px 26px rgba(0,0,0,.45);
}



.brand-strip__name{
  color: white;
  font-family: "Domine", serif;
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.brand-strip__tagline{
  color: rgba(255,255,255,0.9);
  margin-top: 4px;
  font-size: 14px;
  letter-spacing: 0.03em;
}

/* LINKS */
.nav-links {
  list-style: none;
  display: flex;
  gap: 22px;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: #007BFF;
  transition: width 0.25s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

/* BOOK BUTTON */
.nav-cta {
  background-color: #007BFF;
  padding: 8px 18px;
  border-radius: 6px;
  font-weight: bold;
}

.nav-cta::after {
  display: none;
}

.nav-cta:hover {
  background-color: #0056b3;
}

/* ================================================================= */
/* ========================= HOMEPAGE STYLES ======================== */
/* ================================================================= */

/* ------------------- HERO SECTION ------------------- */

.hero {
  margin-top: 0;
  padding-top: 0;
}

.hero {
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding: 150px 20px 100px;
}

/* ------------------- CALL TO ACTION BUTTON ------------------- */

.cta-button {
  display: inline-block;
  background-color: #007BFF;
  color: white;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  text-transform: uppercase;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-button:hover {
  background-color: #0056b3;
  transform: scale(1.05);
}

/* ------------------- SERVICES BANNER ------------------- */

.services {
  padding: 60px 20px;
}

.services-banner {
  max-width: 1000px;
  margin: 0 auto 35px;
  padding: 28px 22px;

  border-radius: 16px;
  border: 2px solid rgba(0,0,0,0.35);

  background-image: url("images/img-taxi-orange-backgr.png");
  background-color: rgba(0, 0, 0, 0.45);
  background-blend-mode: multiply;
  background-size: cover;
  background-position: center;

  color: white;
  text-align: center;

  box-shadow: 0 12px 28px rgba(0,0,0,0.25);
  position: relative;
  overflow: hidden;
}


/* ------------------- SERVICE ROWS ------------------- */

.services-list {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-row {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 18px;
  align-items: stretch;
  border-radius: 16px;
  border: 2px solid rgba(0,0,0,0.35);
  background: rgba(0,0,0,0.20);
  box-shadow: 0 10px 24px rgba(0,0,0,0.18);
  overflow: hidden;
}

.service-row--reverse {
  grid-template-columns: 1.2fr 1fr;
}

.service-row--reverse .service-media {
  order: 2;
}

.service-row--reverse .service-text {
  order: 1;
}

.service-media {
  min-height: 240px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.service-text {
  padding: 22px 18px;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-text h3 {
  margin: 0 0 8px;
  font-size: 1.6rem;
}

.service-text p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.6;
  opacity: 0.95;
}

.service-media--airport {
  background-image: url("images/service-media--airport.png");
}

.service-media--city {
  background-image: url("images/service-media--city.png");
}

.service-media--247 {
  background-image: url("images/service-media--247.png");
  background-position: center;
}

/* ------------------- CONTACT FORM ------------------- */

.contact-form {
  width: 100%;
  max-width: 350px;
  min-height: 300px;
  margin: 15px auto;
  border: 2px solid black;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-blend-mode: multiply;
  background-color: rgba(0, 0, 0, 0.4);
  padding: 20px;
  color: white;
  text-align: center;
  text-shadow: 0px 0px 5px rgba(0,0,0,0.7);
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  border-radius: 10px;

  background-image: url("images/img-taxi-orange-backgr.png");
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 500px;
  margin: 0 auto;
}

.contact-form input,
.contact-form textarea {
  margin-bottom: 5px;
  padding: 8px;
  font-size: 15px;
}

.contact-form button {
  display: inline-block;
  background-color: #007BFF;
  color: white;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  text-transform: uppercase;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.contact-form button:hover {
  background-color: #0056b3;
}

/* ===================== END HOMEPAGE STYLES ====================== */

/* ================================================================= */
/* ========================= BOOKING PAGE STYLES ======================== */
/* ================================================================= */

.book-form h1{
  color: white;
}

.book {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 120px 20px 60px;
}

.book-card {
  background: rgba(0, 0, 0, 0.65);
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.45);
  max-width: 520px;
  width: 100%;
  padding: 30px 26px;
}
.book-intro{
  color: white;
  text-align: center;
}

.book-form label {
  color: #e5e7eb;
  font-size: 14px;
}

.book-form input,
.book-form textarea {
  width: 100%;
  padding: 10px;
  margin: 6px 0 14px;
  border-radius: 6px;
  border: none;
  font-size: 15px;
}

.book-form button {
  display: block;
  margin: 20px auto 0;
  background-color: #007BFF;
  color: white;
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: bold;
  font-size: 16px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  text-decoration-color: white;
}

.book-form button:hover {
  background-color: #0056b3;
}

/* ===================== END BOOKING PAGE ====================== */

/* ================================================================= */
/* ========================= ABOUT PAGE STYLES ======================== */
/* ================================================================= */

.about {
  padding-top: 90px;
}

/* Header */
.about-header {
  text-align: center;
  padding: 30px 20px 10px;
  color: white;
}

.about-header h1 {
  margin: 0;
  font-size: 2.4rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-map-wrapper {
  display: flex;
  justify-content: center;
  padding: 20px;
}

.about-map-square {
  width: 100%;
  max-width: 500px;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.35);
  border: 2px solid rgba(255,255,255,0.15);
}

.about-map-square iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Story Section */
.about-story {
  max-width: 800px;
  margin: 0 auto;
  padding: 30px 20px 60px;
  color: white;
  text-align: center;
}

.about-story h2 {
  margin-bottom: 16px;
  font-size: 1.8rem;
}

.about-story p {
  line-height: 1.7;
  font-size: 1.05rem;
  margin-bottom: 14px;
  opacity: 0.95;
}

.about-callout {
  margin-top: 20px;
  font-weight: bold;
}

.about-callout a {
  color: #cbd5f5;
  text-decoration: none;
}

.about-callout a:hover {
  text-decoration: underline;
}

/* ===================== END ABOUT PAGE STYLES ====================== */

/* ===================== FOOTER ====================== */

.site-footer {
  background: #111;
  color: #e5e7eb;
  font-size: 13px;
  padding: 18px 20px 10px;
}

.footer-inner {
  max-width: 1100px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: flex-start;
}
.footer-block:last-child {
  padding-top: 14px;
}

.site-footer h4 {
  margin-bottom: 6px;
  font-size: 14px;
  color: #fff;
}

.site-footer p {
  margin: 4px 0;
}

.site-footer a {
  color: #cbd5f5;
  text-decoration: none;
}

.footer-links {
  display: flex;
  gap: 14px;
  margin: 6px 0;
  flex-wrap: wrap;
}

.footer-bottom {
  text-align: center;
  margin-top: 10px;
  font-size: 12px;
  opacity: 0.8;
}

/* ===================== END FOOTER ====================== */

/* ================================================================= */
/* ========================= MOBILE STYLES ========================= */
/* ================================================================= */

/* NAV MOBILE */
@media (max-width: 768px) {
  .navigation {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .nav-links {
    gap: 16px;
  }

 .brand-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-logo {
  height: 28px;      
  width: auto;
  max-height: 28px;
  object-fit: contain;
  display: block;
}


.brand-name {
  color: white;
  font-family: "Domine", serif;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
}

}

/* HOMEPAGE MOBILE */
@media (max-width: 850px) {
  .service-row,
  .service-row--reverse {
    grid-template-columns: 1fr;
  }

  .service-row--reverse .service-media,
  .service-row--reverse .service-text {
    order: initial;
  }

  .service-media {
    min-height: 210px;
  }

  .service-text {
    padding: 18px 16px;
  }
}

/* -------- FOOTER MOBILE -------- */
@media (max-width: 700px) {
  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }
}

/* -------- SECOND NAV BAR MOBILE -------- */
.nav-phone{
  color: white;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .brand-strip {
    min-height: 150px;
    margin-top: 66px;
  }

  .brand-strip__logo {
    width: 90px;
    height: 90px;
    padding: 10px;
    border-radius: 16px;
  }

  .brand-strip__name {
    font-size: 18px;
  }
}

body{
  padding-top: 32px;
}


