/* ==========================================================================
   Art Voyage Pro — Main Stylesheet
   Luxury VIP transportation theme (dark + gold)
   ========================================================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--vt-white, #fff);
  background: var(--vt-black, #0b0c10);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.5em;
  color: var(--vt-white, #fff);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.1rem; }

p { margin-bottom: 1rem; }

a {
  color: var(--vt-gold, #c9a227);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover { color: var(--vt-gold-light, #e3c65b); }

img { max-width: 100%; height: auto; display: block; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.screen-reader-text {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 0.7rem 1.6rem;
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.2s;
  border: 1px solid transparent;
}
.btn--gold {
  background: linear-gradient(135deg, var(--vt-gold, #c9a227), var(--vt-gold-light, #e3c65b));
  color: #1a1404;
}
.btn--gold:hover { filter: brightness(1.08); color: #1a1404; }
.btn--outline {
  border-color: var(--vt-gold, #c9a227);
  color: var(--vt-gold, #c9a227);
  background: transparent;
}
.btn--outline:hover { background: var(--vt-gold, #c9a227); color: #1a1404; }
.btn--wa { background: #25d366; color: #fff; }
.btn--wa:hover { color: #fff; filter: brightness(1.05); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30000;
  background: rgba(11,12,16,0.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(201,162,39,0.25);
}

.header-top {
  background: #000;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 0.4rem 0;
  font-size: 0.82rem;
}
.header-top__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.header-top__contact { display: flex; gap: 20px; flex-wrap: wrap; color: var(--vt-gray, #9aa0a6); }
.header-top__item { display: inline-flex; align-items: center; gap: 6px; }
.header-top__item a { color: var(--vt-gray, #9aa0a6); }
.header-top__item a:hover { color: var(--vt-gold, #c9a227); }
.header-top__item .icon { color: var(--vt-gold, #c9a227); }
.header-top__hours { color: #2ecc71; }

.header-main__inner { display: flex; align-items: center; justify-content: flex-start; gap: 22px; padding: 0.8rem 20px; }
.header-main__actions { margin-left: auto; }

/* Site logo: render at half size (twice smaller) */
.site-branding .custom-logo {
  width: auto;
  max-height: 54px; /* half of the 107px source height */
  height: auto;
}
.site-branding .custom-logo-link { display: inline-flex; line-height: 0; }

.site-logo__mark {
  font-family: "Playfair Display", serif;
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: 0.02em;
  color: #fff;
}
.site-logo__mark strong { color: var(--vt-gold, #c9a227); }

/* Keep the fixed mobile drawer from ever creating a horizontal scrollbar / edge bleed */
html, body { overflow-x: hidden; }

/* Nav */
.site-nav { display: flex; align-items: center; }
.nav-menu { display: flex; list-style: none; gap: 4px; }
.nav-menu > li { position: relative; }
.nav-menu > li > a {
  display: block;
  padding: 0.6rem 1rem;
  color: #e8e8e8;
  font-weight: 500;
  font-size: 0.95rem;
  border-bottom: 2px solid transparent;
}
.nav-menu > li > a:hover,
.nav-menu > li.current-menu-item > a,
.nav-menu > li.current-menu-ancestor > a {
  color: var(--vt-gold, #c9a227);
  border-bottom-color: var(--vt-gold, #c9a227);
}

/* ---------- Dropdown / sub-menu ---------- */
.nav-menu .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 230px;
  list-style: none;
  background: #0f1116;
  border: 1px solid rgba(201,162,39,0.25);
  border-top: 2px solid var(--vt-gold, #c9a227);
  box-shadow: 0 18px 40px rgba(0,0,0,0.55);
  border-radius: 0 0 6px 6px;
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 200;
}
.nav-menu li:hover > .sub-menu,
.nav-menu li:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-menu .sub-menu li { position: relative; }
.nav-menu .sub-menu a {
  display: block;
  padding: 0.6rem 1.2rem;
  color: #d5d5d5;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: background 0.15s, color 0.15s, padding-left 0.15s;
}
.nav-menu .sub-menu a:hover {
  background: rgba(201,162,39,0.12);
  color: var(--vt-gold-light, #e3c65b);
  padding-left: 1.5rem;
}
.nav-menu .sub-menu li:last-child a { border-bottom: 0; }
.menu-item-has-children > a::after {
  content: "\25BE";
  margin-left: 6px;
  font-size: 0.75em;
  color: var(--vt-gold, #c9a227);
}
.sub-menu-toggle { display: none; }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; }
.nav-toggle span { display: block; width: 26px; height: 2px; background: #fff; margin: 5px 0; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #14161c;
  padding: 5rem 0;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(11,12,16,0) 20%, rgba(11,12,16,0.45) 55%, rgba(11,12,16,0.94) 100%),
    url("/wp-content/uploads/2026/09/WhatsApp-Image-2026-09-04-at-12.10.33.jpeg") center/cover no-repeat;
  transform: scaleX(-1);
}
.hero > .container { position: relative; z-index: 1; }
.hero__title { color: var(--vt-gold, #c9a227); }
.hero__content { max-width: 640px; }
.hero__badge {
  display: inline-block;
  background: rgba(201,162,39,0.15);
  color: var(--vt-gold-light, #e3c65b);
  border: 1px solid rgba(201,162,39,0.4);
  padding: 0.35rem 1rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border-radius: 30px;
  margin-bottom: 1.4rem;
}
.hero__subtitle { font-size: 1.15rem; color: #d5d5d5; margin-bottom: 2rem; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Sections ---------- */
.section { padding: 4.5rem 0; }
.section--alt { background: var(--vt-black-2, #14161c); }
.section__header { text-align: center; max-width: 720px; margin: 0 auto 3rem; }
.section__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--vt-gold, #c9a227);
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
}
.section__lead { color: var(--vt-gray, #9aa0a6); }

/* ---------- Feature cards ---------- */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.card {
  background: #1b1e26;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 2rem 1.5rem;
  transition: transform 0.2s, border-color 0.2s;
}
.card:hover { transform: translateY(-4px); border-color: rgba(201,162,39,0.5); }
.card__icon { font-size: 2rem; color: var(--vt-gold, #c9a227); margin-bottom: 1rem; }
.card h3 { font-size: 1.15rem; margin-bottom: 0.7rem; }
.card p { color: var(--vt-gray, #9aa0a6); font-size: 0.95rem; }
.card__link { margin-top: 1rem; font-weight: 600; font-size: 0.9rem; }

/* ---------- Fleet ---------- */
.fleet-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.fleet-item {
  background: #15171d;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  overflow: hidden;
  text-align: center;
}
.fleet-item__img { height: 220px; background: #20242f; display: flex; align-items: center; justify-content: center; font-size: 4rem; position: relative; overflow: hidden; }
.fleet-item__img img { width: 100%; height: 100%; object-fit: cover; }
.fleet-item__body { padding: 1.5rem; }
.fleet-item__name { font-family: "Playfair Display", serif; font-size: 1.2rem; color: #fff; margin-bottom: 0.4rem; }
.fleet-item__meta { color: var(--vt-gray, #9aa0a6); font-size: 0.85rem; margin-bottom: 0.8rem; }
.fleet-item__price { color: var(--vt-gold, #c9a227); font-weight: 700; font-size: 1rem; margin-bottom: 1rem; }

/* ---------- Why us / stats ---------- */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 24px; text-align: center; }
.stat__num { font-family: "Playfair Display", serif; font-size: 2.6rem; color: var(--vt-gold, #c9a227); font-weight: 700; }
.stat__label { color: var(--vt-gray, #9aa0a6); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.08em; }

/* ---------- FAQ ---------- */
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.08); }
.faq-item__q { padding: 1.2rem 0; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-weight: 600; color: #fff; }
.faq-item__a { max-height: 0; overflow: hidden; transition: max-height 0.3s; color: var(--vt-gray, #9aa0a6); }
.faq-item.open .faq-item__a { max-height: 400px; padding-bottom: 1.2rem; }

/* ---------- Booking form ---------- */
.booking { background: linear-gradient(135deg, #14161c, #0b0c10); }
.booking-form { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.booking-form label { font-size: 0.85rem; color: var(--vt-gray, #9aa0a6); display: block; margin-bottom: 6px; }
.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  background: #1b1e26;
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  border-radius: 4px;
  font-size: 0.95rem;
  font-family: inherit;
}
.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus { outline: none; border-color: var(--vt-gold, #c9a227); }

/* ---------- Testimonials ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.testi {
  background: #1b1e26;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 2rem;
}
.testi__stars { color: var(--vt-gold, #c9a227); margin-bottom: 1rem; }
.testi__text { color: #d5d5d5; font-style: italic; margin-bottom: 1.2rem; }
.testi__author { color: var(--vt-gray, #9aa0a6); font-weight: 600; font-size: 0.9rem; }

/* ---------- Page content ---------- */
.page-body { padding: 4rem 0; }
.page-body--plain { padding-top: 3rem; }
.page-title { margin-bottom: 1.4rem; }
.content-area { max-width: 1000px; margin: 0 auto; }
.content-area h2 { margin-top: 2rem; }
.content-area ul, .content-area ol { padding-left: 1.4rem; margin-bottom: 1rem; }
.content-area li { margin-bottom: 0.4rem; }
.content-area table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; }
.content-area th, .content-area td { border: 1px solid rgba(255,255,255,0.12); padding: 0.8rem 1rem; text-align: left; }
.content-area th { background: #1b1e26; color: var(--vt-gold, #c9a227); }

/* Breadcrumbs */
.breadcrumbs { font-size: 0.85rem; color: var(--vt-gray, #9aa0a6); margin-bottom: 1.5rem; }
.breadcrumbs a { color: var(--vt-gray, #9aa0a6); }
.breadcrumbs a:hover { color: var(--vt-gold, #c9a227); }

/* ---------- Footer ---------- */
.site-footer { background: #050507; border-top: 1px solid rgba(201,162,39,0.2); padding: 4rem 0 0; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 32px; padding-bottom: 3rem; }
.footer-widget-title { color: var(--vt-gold, #c9a227); font-size: 1rem; margin-bottom: 1.2rem; font-family: "Inter", sans-serif; text-transform: uppercase; letter-spacing: 0.06em; }
.footer-col--about p { color: var(--vt-gray, #9aa0a6); font-size: 0.9rem; }
.footer-menu, .footer-services, .footer-contact { list-style: none; }
.footer-menu li, .footer-services li, .footer-contact li { margin-bottom: 0.6rem; }
.footer-menu a, .footer-services a, .footer-contact a { color: var(--vt-gray, #9aa0a6); font-size: 0.9rem; }
.footer-menu a:hover, .footer-services a:hover, .footer-contact a:hover { color: var(--vt-gold, #c9a227); }
.footer-contact .icon { color: var(--vt-gold, #c9a227); margin-right: 6px; }
.footer-contact li { color: var(--vt-gray, #9aa0a6); font-size: 0.9rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding: 1.4rem 0; text-align: center; }
.footer-bottom p { color: var(--vt-gray, #9aa0a6); font-size: 0.82rem; margin: 0; }

/* ---------- Entry / blog ---------- */
.entry { margin-bottom: 3rem; }
.entry__thumb { border-radius: 8px; overflow: hidden; margin-bottom: 1.2rem; }
.entry__title a { color: #fff; }
.entry__title a:hover { color: var(--vt-gold, #c9a227); }
.entry__meta { color: var(--vt-gray, #9aa0a6); font-size: 0.85rem; margin-bottom: 0.8rem; }
.entry__excerpt { color: #d5d5d5; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .header-main__actions { display: none; }
}
@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr !important; }
  /* keep the wrapper out of the header flow so nothing leaks rightward */
  .site-nav {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    margin-left: auto;
    min-width: 0;
  }
  .site-nav .nav-menu {
    position: fixed;
    top: 0; right: -280px;
    width: 260px; height: 100vh;
    max-width: 82vw;
    margin: 0;
    background: #000000;
    flex-direction: column;
    padding: 5rem 1.5rem 2rem;
    transition: right 0.3s ease;
    gap: 8px;
    z-index: 20000;
    will-change: right;
    box-shadow: none;
    overflow-y: auto;
  }
  .site-nav.nav-open .nav-menu { right: 0; box-shadow: -10px 0 40px rgba(0,0,0,0.55); }
  .nav-toggle { display: block; z-index: 20001; }
  .nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 19999;
  }
  body.nav-open .nav-backdrop { opacity: 1; visibility: visible; }
  .hero { min-height: 60vh; padding: 4rem 0; }
  .header-top__hours { display: none; }
  .section { padding: 3rem 0; }

  /* Mobile: only first-level items visible; sub-menu opens on click */
  .nav-menu .sub-menu {
    display: none;
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 0;
    border-left: 2px solid rgba(201,162,39,0.4);
    margin: 4px 0 8px 12px;
    padding: 0;
    min-width: 0;
  }
  .nav-menu li.menu-open > .sub-menu { display: block; }
  .menu-item-has-children > a::after { content: none; }
  .site-nav .nav-menu li { display: flex; flex-wrap: wrap; align-items: center; }
  .site-nav .nav-menu > li > a { display: inline-flex; align-items: center; }
  .site-nav .nav-menu .sub-menu-toggle { margin-left: 4px; }
  .sub-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.4rem;
    height: auto;
    padding: 0 2px;
    background: none;
    border: 0;
    color: var(--vt-gold, #c9a227);
    font-size: 0.8rem;
    line-height: 1;
    cursor: pointer;
  }
  .nav-menu li.menu-open > .sub-menu-toggle { transform: rotate(180deg); }
  .nav-menu .sub-menu { flex-basis: 100%; }
  .nav-menu .sub-menu a { padding: 0.55rem 0.8rem; }
  .nav-menu .sub-menu a:hover { padding-left: 1.1rem; }
}
