/* grandvista-shared.css */

/* Color Variables */
:root {
  --orange: #FFA500;
  --orange-dark: #FF7F11;
  --gray-dark: #1E1E1E;
  --gray-darker: #121212;
  --gray-medium: #2A2A2A;
  --gray-border: #333;
  --headline: #F9F9F9;
  --body: #CFCFCF;
}

/* Typography */
body {
  font-family: 'Poppins', Arial, Helvetica, sans-serif;
  background: var(--gray-darker);
  color: var(--body);
  line-height: 1.7;
  letter-spacing: 0.01em;
  font-size: 1rem;
  margin: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', Arial, Helvetica, sans-serif;
  font-weight: 600;
  color: var(--headline);
  margin-top: 0;
  margin-bottom: 0.7em;
  line-height: 1.2;
  letter-spacing: 0.01em;
}

a {
  color: var(--orange);
  text-decoration: none;
  transition: color 0.3s, opacity 0.3s;
}
a:hover {
  color: var(--orange-dark);
  opacity: 0.85;
}

/* Buttons */
.btn,
.btn-book,
.btn-services,
.book-btn,
.scroll-btn {
  display: inline-block;
  margin: 0.7rem;
  padding: 1rem 2.2rem;
  font-weight: bold;
  border-radius: 10px;
  font-size: 1.08rem;
  cursor: pointer;
  letter-spacing: 0.02em;
  background: var(--orange);
  color: #fff;
  border: none;
  box-shadow: 0 0 0 0 rgba(255,165,0,0.0), 0 2px 16px rgba(255,127,17,0.10);
  transition: all 0.3s ease-in-out;
  outline: none;
  position: relative;
  text-decoration: none;
}
.btn-services,
.btn-book,
.book-btn,
.scroll-btn {
  background: var(--orange);
  color: #fff;
  border: none;
  box-shadow: 0 0 8px 0 rgba(255,127,17,0.18), 0 2px 16px rgba(255,127,17,0.10);
}
.btn:hover,
.btn-book:hover,
.btn-services:hover,
.book-btn:hover,
.scroll-btn:hover {
  background: var(--orange-dark);
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 0 16px 2px rgba(255,127,17,0.25), 0 4px 24px rgba(255,127,17,0.13);
  filter: brightness(0.95);
}

/* Special Free Stuff Button Styling */
.free-stuff-btn {
  background: linear-gradient(135deg, #10B981 0%, #059669 100%) !important;
  color: white !important;
  padding: 0.6rem 1.2rem !important;
  border-radius: 25px !important;
  font-weight: 600 !important;
  position: relative !important;
  overflow: hidden !important;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4) !important;
  animation: pulse-glow 2s infinite !important;
  text-decoration: none !important;
  display: inline-block !important;
  transition: all 0.3s ease !important;
}

.free-stuff-btn:hover {
  background: linear-gradient(135deg, #059669 0%, #047857 100%) !important;
  color: white !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.6) !important;
}

.free-stuff-btn::before {
  content: '🎁' !important;
  margin-right: 0.5rem !important;
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
  }
  50% {
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.7);
  }
}

/* Responsive Images */
img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 8px;
  transition: box-shadow 0.3s, opacity 0.3s, transform 0.3s;
}
img:hover {
  box-shadow: 0 6px 24px rgba(255,127,17,0.13);
  opacity: 0.92;
  transform: scale(1.03);
}

/* Section Container */
section, header, footer {
  padding: 3.5rem 1.5rem;
  max-width: 1100px;
  margin: 0 auto 3.5rem auto;
  background: linear-gradient(180deg, var(--gray-dark) 0%, var(--gray-medium) 100%);
  border-radius: 18px;
  box-shadow: 0 2px 24px rgba(0,0,0,0.18);
}

/* Responsive Adjustments */
@media (max-width: 900px) {
  html { font-size: 16px; }
  section, header, footer {
    padding: 1.5rem 0.7rem;
    max-width: 100vw;
    margin: 0 0 2rem 0;
    border-radius: 0;
  }
  .btn,
  .btn-book,
  .btn-services,
  .book-btn,
  .scroll-btn {
    width: 100%;
    font-size: 1.1rem;
    padding: 1.1rem 0;
    margin: 0.5rem 0;
    border-radius: 12px;
  }
}

@media (max-width: 600px) {
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.1rem; }
  .btn,
  .btn-book,
  .btn-services,
  .book-btn,
  .scroll-btn {
    font-size: 1.15rem;
    padding: 1.2rem 0;
  }
  
  /* Mobile Free Stuff Button */
  .free-stuff-btn {
    display: block !important;
    text-align: center !important;
    margin: 0.8rem auto !important;
    padding: 0.8rem 1.5rem !important;
    border-radius: 30px !important;
    font-size: 1.1rem !important;
    width: fit-content !important;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%) !important;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.5) !important;
  }
}@media (max-width: 700px) {
  /* Center all text and content on mobile */
  body, h1, h2, h3, h4, h5, h6, p,
  .hero-content, .hero-content h1, .hero-content p,
  section, .trust-label, .trust-caption,
  .view-packages-section, .testimonial-grid, .testimonial-grid blockquote,
  #gallery, #what-is-detailing {
    text-align: center !important;
  }
  .hero-content,
  .trust-item,
  .testimonial-grid,
  .view-packages-section,
  #gallery,
  #what-is-detailing,
  .hero-cta {
    align-items: center !important;
    justify-content: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .hero-cta {
    width: 100%;
    flex-direction: column;
    gap: 1rem;
  }
  .hero-cta-btn {
    width: 100%;
    min-width: 0;
    font-size: 1.1rem;
    padding: 1.1rem 0;
    border-radius: 12px;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .navbar-links li {
    text-align: center !important;
  }
}