/* ============================================================
   BigCarz – Main Stylesheet (clean consolidated version)
   ============================================================ */

/* =================== BASE =================== */
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
/* Add near the top of style.css */
:root {
  --nav-h: 100px; /* default, will be updated by JS */
}

/* Replace your existing body rule's padding-top with this */
body {
  font-family: 'Poppins', sans-serif;
  background: #ffffff;
  padding-top: var(--nav-h);
  overflow-x: hidden;
}

/* When navigating to #ids, keep content below the fixed header */
section[id] {
  scroll-margin-top: calc(var(--nav-h) + 12px);
}


/* =================== NAVBAR =================== */
.premium-nav {
  background-color: #ffffff;
  padding: 10px 0;
  transition: all 0.3s ease;
}

.premium-nav.scrolled {
  background-color: #ffffff;
  box-shadow: 0 2px 20px rgba(0,0,0,0.10);
}

.navbar-logo {
  height: 55px;
  width: auto;
  transition: 0.3s ease;
}

.navbar-brand:hover .navbar-logo {
  transform: scale(1.05);
}

.brand-block {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 600;
  color: #111;
  letter-spacing: 0.5px;
}

.contact-line {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: nowrap;
}

.contact-line a {
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

.contact-sep {
  color: #999;
  font-weight: 600;
  padding: 0 4px;
}

@media (max-width: 480px) {
  .contact-line {
    gap: 6px;
  }
  .contact-line a {
    font-size: 13px;
  }
}



/* 
/* Make individual anchors good tap targets on mobile 
.contact-line a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 6px;     
  border-radius: 6px;
} */

/* Slight background on hover/focus for feedback/accessibility */
.contact-line a:hover,
.contact-line a:focus {
  background: rgba(0,0,0,0.04);
  outline: none;
}

/* Tighten a bit on very small screens */
@media (max-width: 420px) {
  .contact-line { gap: 4px 10px; }
  .contact-line a span { font-size: 12px; }
}

.contact-line a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  text-decoration: none;
  transition: 0.3s ease;
}

.lux-call { color: #c9a227; }
.lux-call:hover { transform: translateX(3px); }
.lux-whatsapp { color: #25D366; }
.lux-whatsapp:hover { color: #1ebe5d; transform: translateX(3px); }

.navbar-nav .nav-link {
  color: #222 !important;
  font-weight: 600;
  margin-left: 15px;
  transition: 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: #c9a227 !important;
}

@media (max-width: 992px) {
  .brand-title { font-size: 14px; }
  .contact-line { flex-direction: column; gap: 2px; }
}

/* =================== HERO =================== */
.hero {
  width: 100%;
}


.hero-img {
  width: 100%;
  height: auto;
  display: block;
  max-height: none;       /* ensure no accidental cap */
}

/* Slightly tighten the navbar content on very small viewports to reduce header height */
@media (max-width: 576px) {
  .navbar-logo { height: 48px; }
  .brand-title { font-size: 13px; }
  .contact-line a { font-size: 12px; }
}

.hero-content {
  background: #ffffff;
  padding: 50px 20px;
  text-align: center;
  border-top: 4px solid #d4af37;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 4.5vw, 50px);
  font-weight: 700;
  letter-spacing: 1px;
  color: #111;
}

.hero-subtitle {
  font-size: clamp(15px, 2vw, 18px);
  color: #555;
  margin-top: 12px;
  line-height: 1.7;
}

.premium-btn {
  background: #d4af37;
  color: #000;
  padding: 12px 32px;
  border-radius: 50px;
  font-weight: 500;
  transition: 0.3s;
}

.premium-btn:hover {
  background: #b9972f;
  color: #000;
}

@media (max-width: 768px) {
  .hero-content { padding: 35px 15px; }
}

/* =================== SECTIONS =================== */
.section-padding {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  padding: 25px 0;
}

.section-padding.show {
  opacity: 1;
  transform: translateY(0);
}

.premium-subtitle {
  color: #c9a227;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 13px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: 30px;
  color: #111;
}

.text-gold { color: #c9a227; }

/* =================== ABOUT =================== */
.hero-main-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(20px, 3.5vw, 34px);
  line-height: 1.4;
  margin-bottom: 18px;
  color: #111;
}

.hero-description {
  font-size: clamp(14px, 1.6vw, 16px);
  line-height: 1.9;
  color: #555;
}

.about-images {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.about-images img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transition: 0.4s ease;
}

.about-images img:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.premium-heading {
  font-family: 'Playfair Display', serif;
  margin-top: 18px;
  margin-bottom: 8px;
  font-weight: 600;
  color: #111;
}

.premium-text { line-height: 1.8; color: #444; }
.premium-list { padding-left: 20px; }
.premium-list li { margin-bottom: 8px; color: #444; }
.premium-feature { font-size: 15px; color: #444; }

@media (max-width: 992px) {
  .about-images { margin-bottom: 30px; }
}

/* =================== SERVICES =================== */
.service-intro {
  max-width: 850px;
  font-size: 16px;
  line-height: 1.8;
  color: #555;
}

.service-card-premium {
  background: #ffffff;
  padding: 35px 25px;
  border-radius: 15px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.06);
  transition: 0.4s ease;
}

.service-card-premium:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 42px rgba(0,0,0,0.10);
}

.service-card-premium h5 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  margin-bottom: 12px;
  color: #111;
}

.service-card-premium p {
  font-size: 14.5px;
  line-height: 1.8;
  color: #555;
}

.service-icon {
  font-size: 28px;
  color: #c9a227;
  margin-bottom: 18px;
}

@media (max-width: 992px) {
  .service-card-premium { text-align: center; }
}

/* =================== DESTINATIONS =================== */
.destination-hero {
  padding: 60px 20px;
  background: #f8f6f0;
}

.destination-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 4vw, 42px);
  margin-bottom: 25px;
  color: #111;
}

.destination-list {
  list-style: none;
  padding: 0;
  max-width: 700px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 2.2;
  color: #333;
}

.destination-card {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.destination-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px rgba(0,0,0,0.14);
}

.destination-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.destination-card:hover img {
  transform: scale(1.07);
}

.destination-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 12px 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.82), transparent);
  color: #fff;
  font-weight: 600;
  font-family: 'Playfair Display', serif;
  font-size: 15px;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  .destination-hero { padding: 45px 15px; }
  .destination-list { text-align: left; }
  .destination-card img { height: 200px; }
}

/* =================== CONTACT =================== */
.contact-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.06);
  border: 1px solid #f0f0f0;
  transition: 0.4s ease;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 38px rgba(0,0,0,0.09);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 22px;
}

.contact-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  background: #d4af37;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 14px;
  font-size: 15px;
}

.contact-item h6 { font-weight: 600; margin-bottom: 4px; color: #111; }
.contact-item p  { margin: 0; font-size: 14px; color: #555; line-height: 1.6; }

.map-container {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.07);
  height: 100%;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  min-height: 350px;
  border: 0;
  display: block;
}

.premium-input {
  border-radius: 10px;
  padding: 11px 14px;
  border: 1px solid #ddd;
  transition: 0.3s;
  width: 100%;
}

.premium-input:focus {
  border-color: #c9a227;
  box-shadow: 0 0 0 0.15rem rgba(212,175,55,0.25);
  outline: none;
}

@media (max-width: 992px) {
  .map-container iframe { min-height: 280px; }
}

/* =================== FOOTER =================== */
.footer-premium {
  background: #111;
  color: #ddd;
  padding: 70px 0 30px;
}

.footer-title {
  font-family: 'Playfair Display', serif;
  color: #c9a227;
  margin-bottom: 18px;
  font-weight: 600;
}

.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: #ccc; text-decoration: none; transition: 0.3s; }
.footer-links a:hover { color: #c9a227; padding-left: 4px; }

.footer-premium p { font-size: 14px; line-height: 1.7; color: #bbb; }

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: #222;
  color: #c9a227;
  border-radius: 50%;
  margin-right: 8px;
  transition: 0.3s;
}

.footer-social a:hover { background: #d4af37; color: #000; }

.footer-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
}

.footer-gallery img {
  width: 100%;
  height: 65px;
  object-fit: cover;
  border-radius: 6px;
  transition: 0.3s;
}

.footer-gallery img:hover { transform: scale(1.06); }

.footer-bottom {
  border-top: 1px solid #2a2a2a;
  padding-top: 20px;
  margin-top: 40px;
  text-align: center;
  color: #888;
}

@media (max-width: 768px) {
  .footer-premium { text-align: center; padding: 50px 0 25px; }
  .footer-social  { margin-top: 10px; }
}

/* =================== WHATSAPP FLOAT =================== */
.whatsapp-premium {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #25D366;
  color: #fff;
  padding: 14px;
  border-radius: 50%;
  font-size: 22px;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  transition: 0.3s;
  z-index: 999;
  line-height: 1;
}

.whatsapp-premium:hover {
  transform: scale(1.12);
  background: #1ebe5d;
}
