/* Lovaco Garage - Instagram-inspired Stylesheet */

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  color: #262626;
  background-color: #fafafa;
}

/* Typography - Instagram-like */
h1, h2, h3 {
  font-weight: 600;
  margin-bottom: 16px;
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #262626;
  text-align: center;
}

h2 {
  font-size: 1.5rem;
  color: #262626;
  text-align: center;
  margin-bottom: 24px;
}

p {
  font-size: 14px;
  line-height: 1.5;
  color: #8e8e8e;
  text-align: center;
  margin-bottom: 16px;
}

/* Header & Hero Section */
/* Navigation */
nav {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #dbdbdb;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #262626;
  text-decoration: none;
  transition: color 0.3s ease;
}

.logo:hover {
  color: #f09433;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-menu a {
  color: #262626;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: color 0.3s ease;
  position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: #f09433;
}

.nav-menu a.active::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  border-radius: 1px;
}

header {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: white;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23333" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.1;
}

.hero {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

.hero h1 {
  color: white;
  font-size: 3rem;
  margin-bottom: 16px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero p {
  color: #e1e1e1;
  font-size: 18px;
  margin-bottom: 32px;
  font-weight: 300;
}

/* CTA Buttons - Instagram style */
.cta {
  display: inline-block;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(240, 148, 51, 0.3);
}

/* Section Styling */
section {
  max-width: 935px;
  margin: 0 auto;
  padding: 60px 20px;
}

.gallery-intro {
  text-align: center;
  padding: 40px 20px 20px;
}

/* Gallery Section - Instagram feed style */
.gallery {
  padding: 20px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  margin: 40px auto;
  border: 1px solid #dbdbdb;
}

.instagram-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}

/* Instagram Widget Styles */
.instagram-embed-widget,
.instagram-snapwidget {
  text-align: center;
  margin-bottom: 30px;
}

.instagram-embed-widget h3,
.instagram-snapwidget h3 {
  color: #262626;
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.instagram-embed-widget p {
  color: #8e8e8e;
  margin-bottom: 20px;
}

.snapwidget-iframe {
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Manual Instagram CTA */
.instagram-cta-box {
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: white;
  padding: 40px;
  border-radius: 12px;
  text-align: center;
  margin: 20px 0;
}

.instagram-cta-box h3 {
  color: white;
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.instagram-cta-box p {
  color: #e1e1e1;
  margin-bottom: 25px;
  font-size: 16px;
}

.instagram-cta {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 12px 30px;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  display: inline-block;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.instagram-cta:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.widget-fallback {
  text-align: center;
  padding: 20px;
  background: #fafafa;
  border-radius: 8px;
  border: 1px dashed #dbdbdb;
  margin-top: 20px;
}

.widget-fallback p {
  color: #8e8e8e;
  margin: 0;
}

.widget-fallback a {
  color: #f09433;
  text-decoration: none;
  font-weight: 600;
}

.widget-fallback a:hover {
  color: #dc2743;
}

.insta-feed {
  width: 100%;
  height: 600px;
  border: none;
  border-radius: 8px;
}

.embed-fallback {
  text-align: center;
  padding: 20px;
  background: #fafafa;
  border-radius: 8px;
  border: 1px dashed #dbdbdb;
}

.embed-fallback p {
  color: #8e8e8e;
  margin: 0;
}

.embed-fallback a {
  color: #f09433;
  text-decoration: none;
  font-weight: 600;
}

.embed-fallback a:hover {
  color: #dc2743;
}

/* About Section */
.about {
  background: white;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  border: 1px solid #dbdbdb;
  margin: 40px auto;
}

.about h2 {
  color: #262626;
  margin-bottom: 20px;
}

.about p {
  color: #262626;
  font-size: 16px;
  line-height: 1.6;
  text-align: left;
}

/* Contact Section */
.contact {
  background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
  color: white;
  border-radius: 12px;
  padding: 40px;
  text-align: center;
  margin: 40px auto;
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="%23444" opacity="0.3"/><circle cx="80" cy="80" r="1" fill="%23444" opacity="0.3"/><circle cx="50" cy="50" r="1" fill="%23444" opacity="0.3"/></svg>');
  opacity: 0.5;
}

.contact * {
  position: relative;
  z-index: 1;
}

.contact h2 {
  color: white;
  margin-bottom: 16px;
}

.contact p {
  color: #e1e1e1;
  margin-bottom: 24px;
}

/* Footer */
footer {
  background: #262626;
  color: #8e8e8e;
  margin-top: 60px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.footer-section h3 {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 16px;
  font-weight: 600;
}

.footer-section p {
  font-size: 14px;
  color: #8e8e8e;
  margin-bottom: 12px;
  text-align: left;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 8px;
}

.footer-section ul li a {
  color: #8e8e8e;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: white;
}

.social-link {
  color: #e1e1e1;
  text-decoration: none;
  font-weight: 500;
  display: inline-block;
  padding: 8px 16px;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  border-radius: 6px;
  transition: transform 0.3s ease;
}

.social-link:hover {
  transform: translateY(-2px);
  color: white;
}

.footer-bottom {
  border-top: 1px solid #404040;
  padding: 20px;
  text-align: center;
}

.footer-bottom p {
  font-size: 12px;
  margin: 0;
}

.footer-bottom a {
  color: #e1e1e1;
  text-decoration: none;
}

.footer-bottom a:hover {
  color: white;
}

/* Instagram-like responsive grid (for future content) */
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin: 40px 0;
}

.instagram-post {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  border: 1px solid #dbdbdb;
  transition: transform 0.3s ease;
}

.instagram-post:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.post-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.post-content {
  padding: 16px;
}

.post-content p {
  text-align: left;
  color: #262626;
  font-size: 14px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 16px;
  }
  
  section {
    padding: 40px 15px;
  }
  
  .about, .contact {
    padding: 30px 20px;
  }
  
  .insta-feed {
    height: 400px;
  }
  
  .instagram-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.8rem;
  }
  
  h2 {
    font-size: 1.3rem;
  }
  
  .cta {
    padding: 10px 20px;
    font-size: 12px;
  }
  
  section {
    padding: 30px 10px;
  }
}

/* Loading animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero, section {
  animation: fadeInUp 0.8s ease-out;
}

/* Instagram-like heart animation for interactions */
@keyframes heartPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

.heart-pulse {
  animation: heartPulse 0.6s ease-in-out;
}

/* Custom scrollbar - Instagram style */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}

/* Portfolio Page Styles */
.portfolio-filter {
  text-align: center;
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.filter-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.filter-btn {
  background: white;
  border: 2px solid #dbdbdb;
  color: #262626;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  border-color: transparent;
  color: white;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.portfolio-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.portfolio-item:hover {
  transform: translateY(-8px);
}

.portfolio-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.portfolio-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: white;
  padding: 30px 20px 20px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
  transform: translateY(0);
}

.portfolio-overlay h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.portfolio-overlay p {
  font-size: 14px;
  color: #e1e1e1;
  margin-bottom: 15px;
  text-align: left;
}

.view-details {
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  padding: 8px 16px;
  background: rgba(255,255,255,0.2);
  border-radius: 6px;
  transition: background 0.3s ease;
}

.view-details:hover {
  background: rgba(255,255,255,0.3);
}

.custom-order-cta {
  text-align: center;
  padding: 60px 20px;
  background: white;
  border-radius: 12px;
  margin: 40px auto;
  max-width: 800px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* About Page Styles */
.founder-story {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

.story-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.story-text p {
  color: #262626;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  text-align: left;
}

.founder-image {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.philosophy {
  background: #fafafa;
  padding: 60px 20px;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 40px auto 0;
}

.philosophy-item {
  background: white;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.philosophy-item h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #262626;
}

.philosophy-item p {
  color: #262626;
  text-align: left;
}

.process {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.process-step {
  position: relative;
  padding: 30px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.step-number {
  position: absolute;
  top: -15px;
  left: 30px;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
}

.process-step h3 {
  margin-top: 10px;
  margin-bottom: 15px;
  color: #262626;
}

.process-step p {
  color: #262626;
  text-align: left;
}

.workshop {
  background: #fafafa;
  padding: 60px 20px;
  text-align: center;
}

.workshop-features ul {
  list-style: none;
  max-width: 600px;
  margin: 30px auto;
  text-align: left;
}

.workshop-features li {
  padding: 10px 0;
  border-bottom: 1px solid #e1e1e1;
  color: #262626;
}

.workshop-features li:before {
  content: '🔧';
  margin-right: 10px;
}

.testimonials {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.testimonial {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  border-left: 4px solid #f09433;
}

.testimonial p {
  color: #262626;
  font-style: italic;
  margin-bottom: 20px;
  text-align: left;
}

.testimonial cite {
  color: #8e8e8e;
  font-size: 14px;
  font-weight: 600;
}

.cta-section {
  background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
  color: white;
  text-align: center;
  padding: 60px 20px;
  border-radius: 12px;
  margin: 40px auto;
  max-width: 1200px;
}

.cta-section h2 {
  color: white;
  margin-bottom: 16px;
}

.cta-section p {
  color: #e1e1e1;
  margin-bottom: 30px;
}

/* Services Page Styles */
.services-overview {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
  text-align: center;
}

.services-overview p {
  color: #262626;
  font-size: 16px;
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.service-item {
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  border: 1px solid #dbdbdb;
  transition: transform 0.3s ease;
}

.service-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  text-align: center;
}

.service-item h3 {
  color: #262626;
  margin-bottom: 15px;
  text-align: center;
}

.service-item > p {
  color: #262626;
  margin-bottom: 20px;
  text-align: left;
}

.service-features {
  list-style: none;
  margin: 20px 0;
}

.service-features li {
  color: #262626;
  padding: 8px 0;
  border-bottom: 1px solid #f1f1f1;
  font-size: 14px;
}

.service-features li:before {
  content: '✓';
  color: #f09433;
  font-weight: bold;
  margin-right: 10px;
}

.service-pricing {
  margin-top: 25px;
  padding-top: 20px;
  border-top: 2px solid #f1f1f1;
  text-align: center;
}

.price {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: #262626;
  margin-bottom: 15px;
}

.service-cta {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  transition: transform 0.3s ease;
}

.service-cta:hover {
  transform: translateY(-2px);
}

.process-timeline {
  background: #fafafa;
  padding: 60px 20px;
}

.timeline {
  max-width: 800px;
  margin: 40px auto;
  position: relative;
}

.timeline:before {
  content: '';
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
  padding-left: 80px;
}

.timeline-marker {
  position: absolute;
  left: 15px;
  top: 0;
  width: 30px;
  height: 30px;
  background: white;
  border: 3px solid #f09433;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #f09433;
  font-size: 14px;
}

.timeline-content h3 {
  color: #262626;
  margin-bottom: 10px;
}

.timeline-content p {
  color: #262626;
  margin-bottom: 10px;
  text-align: left;
}

.timeline-duration {
  background: #f09433;
  color: white;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 600;
}

.warranty-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

.warranty-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.warranty-item {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  text-align: center;
  border: 2px solid #f09433;
}

.warranty-item h3 {
  color: #262626;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.warranty-item p {
  color: #262626;
  text-align: left;
}

.faq-section {
  background: #fafafa;
  padding: 60px 20px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 40px auto 0;
}

.faq-item {
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.faq-item h3 {
  color: #262626;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.faq-item p {
  color: #262626;
  text-align: left;
}

/* Contact Page Styles */
.contact-info {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.contact-method {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  text-align: center;
  border: 1px solid #dbdbdb;
}

.contact-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.contact-method h3 {
  color: #262626;
  margin-bottom: 15px;
}

.contact-method p {
  color: #8e8e8e;
  margin-bottom: 15px;
}

.contact-link {
  color: #f09433;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: #dc2743;
}

.contact-address {
  color: #262626;
  font-size: 14px;
  line-height: 1.5;
}

.contact-form-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.contact-form {
  margin-top: 30px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  color: #262626;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #dbdbdb;
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  transition: border-color 0.3s ease;
  background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #f09433;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 14px;
  color: #262626;
}

.checkbox-label input[type="checkbox"] {
  width: auto;
  margin: 0;
}

.workshop-visit {
  background: #fafafa;
  padding: 60px 20px;
}

.workshop-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 40px auto 0;
  align-items: start;
}

.workshop-text p {
  color: #262626;
  margin-bottom: 20px;
  text-align: left;
}

.workshop-hours {
  list-style: none;
  margin: 20px 0;
}

.workshop-hours li {
  color: #262626;
  padding: 8px 0;
  border-bottom: 1px solid #e1e1e1;
}

.map-placeholder {
  background: white;
  padding: 60px 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  border: 2px dashed #dbdbdb;
}

.map-placeholder p {
  color: #8e8e8e;
  margin-bottom: 10px;
}

.response-info {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

.response-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.response-step {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  text-align: center;
  position: relative;
}

.social-cta {
  background: linear-gradient(135deg, #f09433 0%, #dc2743 100%);
  color: white;
  text-align: center;
  padding: 60px 20px;
  border-radius: 12px;
  margin: 40px auto;
  max-width: 800px;
}

.social-cta h2 {
  color: white;
  margin-bottom: 16px;
}

.social-cta p {
  color: #e1e1e1;
  margin-bottom: 30px;
}

/* Privacy Page Styles */
.privacy-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}

.privacy-container h2 {
  color: #262626;
  margin: 40px 0 20px;
  font-size: 1.5rem;
  text-align: left;
}

.privacy-container h3 {
  color: #262626;
  margin: 30px 0 15px;
  font-size: 1.2rem;
  text-align: left;
}

.privacy-container p,
.privacy-container li {
  color: #262626;
  line-height: 1.6;
  margin-bottom: 15px;
  text-align: left;
}

.privacy-container ul {
  margin: 15px 0 15px 20px;
}

.contact-details {
  background: #fafafa;
  padding: 25px;
  border-radius: 8px;
  border-left: 4px solid #f09433;
  margin: 20px 0;
}

.privacy-summary {
  background: linear-gradient(135deg, #f09433 0%, #dc2743 100%);
  color: white;
  padding: 30px;
  border-radius: 12px;
  margin: 40px 0;
}

.privacy-summary h2 {
  color: white;
  margin-bottom: 20px;
  text-align: center;
}

.privacy-summary p {
  color: #e1e1e1;
  margin-bottom: 10px;
  text-align: left;
}

/* 404 Error Page Styles */
.error-404 {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.error-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.error-visual {
  position: relative;
  margin-bottom: 40px;
}

.error-code {
  font-size: 8rem;
  font-weight: 900;
  color: #f1f1f1;
  margin: 0;
  line-height: 1;
}

.error-wrench {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 4rem;
  animation: wrenchSpin 3s ease-in-out infinite;
}

@keyframes wrenchSpin {
  0%, 100% { transform: translate(-50%, -50%) rotate(0deg); }
  50% { transform: translate(-50%, -50%) rotate(15deg); }
}

.error-message h2 {
  color: #262626;
  margin-bottom: 20px;
  font-size: 2rem;
}

.error-message p {
  color: #8e8e8e;
  font-size: 18px;
  margin-bottom: 40px;
}

.error-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.cta.primary {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.cta.secondary {
  background: transparent;
  color: #262626;
  border: 2px solid #dbdbdb;
}

.cta.secondary:hover {
  background: #f1f1f1;
  transform: translateY(-2px);
}

.error-suggestions h3 {
  color: #262626;
  margin-bottom: 20px;
}

.suggestion-links {
  list-style: none;
  margin-bottom: 40px;
}

.suggestion-links li {
  margin-bottom: 10px;
}

.suggestion-links a {
  color: #f09433;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.suggestion-links a:hover {
  color: #dc2743;
}

.error-search p {
  color: #8e8e8e;
  margin-bottom: 20px;
}

/* Mobile Navigation */
@media (max-width: 768px) {
  .nav-menu {
    display: none; /* Simplified for now - you can add hamburger menu later */
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .story-content,
  .workshop-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .error-code {
    font-size: 5rem;
  }
  
  .error-wrench {
    font-size: 2.5rem;
  }
  
  .error-actions {
    flex-direction: column;
    align-items: center;
  }
}
