/* Base */
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  background-color: #050505;
  color: #f4f4f4;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 40px;
  background: #101010;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid #262626;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  height: 75px;    
  width: auto;        
  display: block;     
}


.logo-text {
  font-family: 'Oswald', sans-serif;
  font-size: 1.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #d4a23b;
  margin: 0;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 22px;
  margin: 0;
  padding: 0;
}

.navbar a {
  font-family: 'Poppins', sans-serif;
  color: #e0e0e0;
  text-decoration: none;
  font-weight: 400;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.25s ease;
}

.navbar a:hover,
.navbar .active {
  color: #d4a23b;
}

/* HERO SECTION */
.hero {
  position: relative;
  background: url('car-banner.JPEG') center/cover no-repeat;
  height: 85vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-overlay {
  background: rgba(0, 0, 0, 0.6);
  padding: 60px;
  border-radius: 10px;
}

.hero h2 {
  font-size: 3rem;
  color: #fff;
  margin-bottom: 10px;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.05em;
}

.hero p {
  font-size: 1.2rem;
  color: #ccc;
  margin-bottom: 25px;
}

.btn {
  background-color: #d4a23b;
  color: #000;
  padding: 12px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn:hover {
  background-color: #f1c24b;
}

/* ABOUT SECTION */
.about {
  max-width: 900px;
  margin: 80px auto;
  text-align: center;
  padding: 0 20px;
}

.about h2 {
  color: #d4a23b;
  font-size: 2rem;
  margin-bottom: 20px;
}

/* FOOTER */
footer {
  background-color: #101010;
  color: #aaa;
  text-align: center;
  padding: 20px 0;
  margin-top: 50px;
  font-size: 0.9rem;
}

.topbar {
  background:#0c0c0c;
  border-bottom:1px solid #1e1e1e;
  font-size:.9rem;
}
.topbar-inner{
  max-width:1200px; margin:0 auto; padding:8px 16px;
  display:flex; align-items:center; justify-content:space-between;
  color:#cfcfcf;
}
.topbar a{ color:#cfcfcf; text-decoration:none; margin-left:16px; }
.topbar a:hover{ color:#d4a23b; }
.topbar-book{
  padding:6px 10px; border:1px solid #d4a23b; border-radius:6px;
}

.ig-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.ig-icon {
  width: 18px;
  height: 18px;
  fill: currentColor; /* inherits text color */
}

.topbar a:hover .ig-icon {
  fill: #d4a23b; /* gold on hover */
}

/* Services section */ 

/* SERVICES PAGE */
.container{
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-hero{
  padding: 28px 20px;
  text-align: center;
}

.page-hero h2{
  margin: 0 0 8px;
  font-family: 'Oswald', sans-serif;
  letter-spacing: .05em;
  color: #d4a23b;
  font-size: 2.2rem;
}
.page-hero p{ margin: 0; color: #cfcfcf; }

.pricing-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 18px 0 40px;
}
@media (max-width: 980px){ .pricing-grid{ grid-template-columns: repeat(2, 1fr);} }
@media (max-width: 560px){ .pricing-grid{ grid-template-columns: 1fr;} }

.price-card{
  background: #0f0f0f;
  border: 1px solid #1f1f1f;
  border-radius: 14px;
  padding: 18px;
}
.price-card h3{
  margin: 0 0 12px;
  font-family: 'Oswald', sans-serif;
  letter-spacing: .04em;
}
.price-row{
  display:flex;
  justify-content: space-between;
  padding: 10px 0;
  border-top: 1px solid #1f1f1f;
  color:#d9d9d9;
}
.price-row:first-of-type{ border-top: none; padding-top: 0; }

.gold{ color:#d4a23b; font-weight:700; }

.two-col{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 10px 0 40px;
}
@media (max-width: 800px){ .two-col{ grid-template-columns: 1fr; } }

.info-card{
  background:#0f0f0f;
  border:1px solid #1f1f1f;
  border-radius:14px;
  padding:18px;
}
.info-card h3{
  margin:0 0 10px;
  font-family:'Oswald', sans-serif;
  letter-spacing:.04em;
  color:#d4a23b;
}

.bullets{
  margin:0;
  padding-left:18px;
  color:#d0d0d0;
  line-height:1.7;
}
.bullets.compact{ line-height:1.6; }

.addons-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0 40px;
}
@media (max-width: 760px){ .addons-grid{ grid-template-columns: 1fr; } }

.addon{
  background:#0f0f0f;
  border:1px solid #1f1f1f;
  border-radius:12px;
  padding:14px 16px;
  display:flex;
  justify-content: space-between;
  gap: 12px;
  color:#d9d9d9;
}

.notice{
  background: #0f0f0f;
  border: 1px solid #2a2a2a;
  border-radius: 14px;
  padding: 22px;
  margin: 0 0 55px;
}
.notice h3{
  margin: 0 0 10px;
  font-family:'Oswald', sans-serif;
  letter-spacing:.04em;
  color:#ffffff;
}
.notice .btn{ display:inline-block; margin-top: 12px; }

.price-note{
  max-width: 900px;
  margin: 14px auto 26px;
  padding: 12px 16px;
  font-size: 0.95rem;
  text-align: center;
}

.section-gold {
  color: #d4a23b;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ---------- GALLERY PAGE ---------- */

.gallery-page{
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 16px 60px;
}

.gallery-head{
  text-align: center;
  margin-bottom: 22px;
}

.gallery-head h2{
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #d4a23b;
  margin: 0 0 8px;
  font-size: 2.2rem;
}

.gallery-head p{
  color: #cfcfcf;
  margin: 0 auto;
  max-width: 700px;
}

/* FILTER BUTTONS */
.gallery-controls{
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin: 26px 0 22px;
}

.filter-btn{
  background: #111;
  color: #e7e7e7;
  border: 1px solid #2a2a2a;
  padding: 10px 18px;
  border-radius: 999px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: 0.2s ease;
}

.filter-btn:hover{
  border-color: #d4a23b;
  color: #d4a23b;
}

.filter-btn.active{
  background: transparent;
  border: 1px solid #d4a23b;
  color: #d4a23b;
}

/* GRID */
.gallery-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

@media (max-width: 950px){
  .gallery-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px){
  .gallery-grid{
    grid-template-columns: 1fr;
  }
}

/* ITEMS */
.gallery-item{
  margin: 0;
  background: #0f0f0f;
  border: 1px solid #1f1f1f;
  border-radius: 14px;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 1 / 1;   /* 👈 forces perfect square */
  object-fit: cover;     /* crops nicely */
  display: block;
  transform: scale(1);
  transition: transform 0.25s ease;
}

.gallery-item:hover img{
  transform: scale(1.03);
}

/* (Contact Page styles) */

.contact-page{
  max-width: 1100px;
  margin: 0 auto;
  padding: 26px 20px 60px;
}

.contact-grid{
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 16px;
}

@media (max-width: 900px){
  .contact-grid{ grid-template-columns: 1fr; }
}

.contact-card{
  background: #0f0f0f;
  border: 1px solid #1f1f1f;
  border-radius: 14px;
  padding: 18px;
}

.contact-card h3{
  margin: 0 0 10px;
  font-family: 'Oswald', sans-serif;
  letter-spacing: .05em;
  color: #d4a23b;
}

.muted{ color: #cfcfcf; }

.contact-list{
  margin-top: 14px;
  display: grid;
  gap: 10px;
}

.contact-row{
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid #222;
  background: #101010;
  text-decoration: none;
  color: #e8e8e8;
  transition: 0.2s ease;
}

.contact-row:hover{
  border-color: rgba(212,162,59,0.6);
  transform: translateY(-1px);
}

.contact-row.no-link:hover{
  transform: none;
  border-color: #222;
}

.contact-label{
  font-weight: 500;
  color: #e8e8e8;
}

.contact-value{
  color: #cfcfcf;
}

.hours{
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid #222;
}

.hours h4{
  margin: 0 0 6px;
  color: #e8e8e8;
  font-weight: 500;
}

.mini-cta{
  margin-top: 16px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Form */
.contact-form{
  margin-top: 10px;
  display: grid;
  gap: 12px;
}

.form-row label{
  display: block;
  margin-bottom: 6px;
  color: #e8e8e8;
  font-size: 0.95rem;
}

.form-row input,
.form-row select,
.form-row textarea{
  width: 100%;
  background: #0b0b0b;
  border: 1px solid #262626;
  border-radius: 12px;
  color: #f4f4f4;
  padding: 12px 12px;
  outline: none;
  font-family: 'Poppins', sans-serif;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus{
  border-color: rgba(212,162,59,0.8);
  box-shadow: 0 0 0 2px rgba(212,162,59,0.15);
}

.btn-full{ width: 100%; }

.btn-outline{
  background: transparent;
  border: 1px solid rgba(212,162,59,0.7);
  color: #d4a23b;
}

.btn-outline:hover{
  background: rgba(212,162,59,0.12);
}

/* Map section */
.map-card{
  margin-top: 16px;
  background: #0f0f0f;
  border: 1px solid #1f1f1f;
  border-radius: 14px;
  padding: 18px;
}

.map-card h3{
  margin: 0 0 6px;
  font-family: 'Oswald', sans-serif;
  letter-spacing: .05em;
  color: #d4a23b;
}

.map-placeholder{
  margin-top: 12px;
  height: 220px;
  border-radius: 14px;
  border: 1px dashed #333;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a9a9a9;
  background: #0b0b0b;
}

/* PORTRAIT / MOBILE OVERRIDES */

* { box-sizing: border-box; }
html, body { overflow-x: hidden; }

/* ---------- Phones / Portrait ---------- */
@media (max-width: 768px) {

  /* Global spacing */
  body { font-size: 15px; }
  .container,
  .gallery-page,
  .contact-page {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  /* ---------- TOPBAR (fix wrapping/overlap) ---------- */
  .topbar-inner{
    display: flex;
    flex-direction: column;     /* stack Surrey BC above links */
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
    padding: 10px 16px;
  }

  .topbar a{ margin-left: 0; }  /* remove desktop left spacing */

  .topbar-right{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 14px;
    align-items: center;
  }

  .topbar-book{
    padding: 10px 14px;
    border-radius: 10px;
  }

  /* ---------- NAVBAR (keep it from feeling “landscape”) ---------- */
  .navbar{
    padding: 10px 16px;
    flex-wrap: wrap;
    gap: 10px;
  }

  .logo-img{ height: 54px; }    /* slightly smaller for mobile */
  .logo-text{ font-size: 1.25rem; }

  .navbar nav{ width: 100%; }
  .navbar ul{
    width: 100%;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
  }
  .navbar a{ font-size: 0.85rem; }

  /* ---------- HERO (remove “landscape” feel) ---------- */
  .hero{
    height: auto;               /* don’t lock to 85vh on phones */
    min-height: 70vh;
    padding: 44px 16px;
  }

  .hero-overlay{
    padding: 24px 18px;
    border-radius: 14px;
    max-width: 560px;
    width: 100%;
    margin: 0 auto;
  }

  .hero h2{ font-size: 2rem; }
  .hero p{ font-size: 1rem; }

  /* Buttons: always fit container on mobile */
  .btn{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    max-width: 100%;
  }

  /* If you have any full-width CTAs inside cards */
  .btn-full,
  .notice .btn{
    width: 100%;
    display: block;
    text-align: center;
  }

  /* ---------- SERVICES: force clean stacking ---------- */
  .pricing-grid{
    grid-template-columns: 1fr !important;
    gap: 14px;
  }

  .two-col{
    grid-template-columns: 1fr !important;
    gap: 14px;
  }

  .addons-grid{
    grid-template-columns: 1fr !important;
    gap: 10px;
  }

  .addon{
    padding: 14px;
  }

  /* Prevent “button too wide for card” issues */
  .notice,
  .info-card,
  .price-card,
  .contact-card{
    width: 100%;
    max-width: 100%;
  }

  /* ---------- GALLERY: portrait-friendly ---------- */
  .gallery-head h2{ font-size: 1.9rem; }

  /* Make filter buttons scroll instead of wrapping weird */
  .gallery-controls{
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
    gap: 10px;
  }

  .filter-btn{
    white-space: nowrap;
    flex: 0 0 auto;
    padding: 10px 16px;
  }

  .gallery-grid{
    grid-template-columns: 1fr !important; /* single column on phones */
    gap: 14px;
  }

  /* Square tiles already set with aspect-ratio in your CSS,
     but this keeps it consistent and prevents overflow */
  .gallery-item,
  .gallery-item img{
    max-width: 100%;
  }

  /* ---------- CONTACT: stack + fix overflowing rows/buttons ---------- */
  .contact-grid{
    grid-template-columns: 1fr !important;
    gap: 14px;
  }

  .contact-row{
    flex-direction: column;     /* stops “label/value” crunch */
    align-items: flex-start;
    gap: 6px;
  }

  .mini-cta{
    flex-direction: column;     /* buttons stack */
    gap: 10px;
  }

  .mini-cta .btn,
  .mini-cta .btn-outline{
    width: 100%;
    display: block;
    text-align: center;
  }

  /* Inputs already width:100%, just make padding feel nicer */
  .form-row input,
  .form-row select,
  .form-row textarea{
    padding: 12px 12px;
  }

  /* ---------- FOOTER ---------- */
  footer{
    padding: 16px 0;
    font-size: 0.85rem;
  }
}

/* ---------- Extra small phones ---------- */
@media (max-width: 420px) {
  .logo-text{ font-size: 1.15rem; }
  .navbar a{ font-size: 0.82rem; }
  .hero h2{ font-size: 1.75rem; }
}
