/* CSS Design System für Voth Montage */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  /* Farbpalette (HSL) */
  --bg-primary: 210 40% 98%;      /* Off-white */
  --bg-secondary: 210 40% 96%;    /* Hellerer Slate-Ton */
  --bg-dark: 215 28% 17%;         /* Dunkles Slate (Primary Brand Color) */
  --bg-dark-hover: 215 28% 12%;
  
  --text-primary: 215 16% 22%;    /* Fast Schwarz */
  --text-secondary: 215 16% 40%;  /* Mittleres Grau */
  --text-light: 210 40% 98%;      /* Weiß */
  
  --accent: 35 92% 47%;           /* Warmer Holz-/Amber-Akzent */
  --accent-hover: 35 92% 38%;
  --accent-light: 35 92% 95%;     /* Sehr helles Amber */
  
  --border: 214 32% 91%;
  
  /* Schriftarten */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  
  /* Übergänge & Schatten */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  
  /* Layout-Breiten */
  --max-width: 1280px;
}

/* Reset & Basis-Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  background-color: hsl(var(--bg-primary));
  color: hsl(var(--text-primary));
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* Sektions-Abstände */
.section {
  padding: 100px 0;
}

.section-secondary {
  background-color: hsl(var(--bg-secondary));
}

.section-title-wrapper {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: hsl(var(--bg-dark));
  margin-bottom: 15px;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.125rem;
  color: hsl(var(--text-secondary));
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Header & Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background-color: rgba(248, 250, 252, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid hsl(var(--border));
  z-index: 1000;
  transition: var(--transition-fast);
}

.header.scrolled {
  height: 70px;
  box-shadow: var(--shadow-md);
  background-color: rgba(248, 250, 252, 0.95);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

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

.logo img {
  height: 44px;
  width: auto;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: hsl(var(--bg-dark));
  letter-spacing: -0.01em;
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-text span {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: hsl(var(--accent));
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: hsl(var(--text-primary));
  transition: var(--transition-fast);
  position: relative;
  padding: 8px 0;
}

.nav-link:hover {
  color: hsl(var(--accent));
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: hsl(var(--accent));
  transition: var(--transition-fast);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-cta {
  background-color: hsl(var(--bg-dark));
  color: hsl(var(--text-light));
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.nav-cta:hover {
  background-color: hsl(var(--accent));
  box-shadow: var(--shadow-md);
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
  display: none;
  font-size: 1.5rem;
  color: hsl(var(--bg-dark));
}

/* Hero Section */
.hero {
  padding-top: 160px;
  padding-bottom: 100px;
  overflow: hidden;
  background: radial-gradient(circle at 90% 10%, hsl(var(--accent-light)) 0%, transparent 40%),
              radial-gradient(circle at 10% 90%, hsl(var(--bg-secondary)) 0%, transparent 50%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  line-height: 1.15;
  font-weight: 800;
  color: hsl(var(--bg-dark));
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero-title span {
  color: hsl(var(--accent));
  position: relative;
  display: inline-block;
}

.hero-text {
  font-size: 1.125rem;
  color: hsl(var(--text-secondary));
  margin-bottom: 40px;
  max-width: 580px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 600;
  transition: var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.btn-primary {
  background-color: hsl(var(--bg-dark));
  color: hsl(var(--text-light));
}

.btn-primary:hover {
  background-color: hsl(var(--bg-dark-hover));
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-accent {
  background-color: hsl(var(--accent));
  color: hsl(var(--text-light));
}

.btn-accent:hover {
  background-color: hsl(var(--accent-hover));
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-whatsapp {
  background-color: #25D366;
  color: white;
}

.btn-whatsapp:hover {
  background-color: #128C7E;
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(37, 211, 102, 0.3);
}

.btn-telegram {
  background-color: #0088cc;
  color: white;
}

.btn-telegram:hover {
  background-color: #006699;
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 136, 204, 0.3);
}

.hero-features {
  display: flex;
  gap: 30px;
  border-top: 1px solid hsl(var(--border));
  padding-top: 30px;
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 500;
  color: hsl(var(--text-primary));
}

.hero-feature-item svg {
  color: hsl(var(--accent));
  flex-shrink: 0;
}

.hero-image-wrapper {
  position: relative;
  z-index: 1;
}

.hero-image-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 4px solid white;
  aspect-ratio: 1 / 1;
}

.hero-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-normal);
}

.hero-image-card:hover img {
  transform: scale(1.03);
}

.hero-badge {
  position: absolute;
  bottom: 30px;
  left: -30px;
  background-color: white;
  padding: 16px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 10;
  border-left: 4px solid hsl(var(--accent));
}

.hero-badge-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: hsl(var(--bg-dark));
  line-height: 1.1;
}

.hero-badge-desc {
  font-size: 0.8rem;
  color: hsl(var(--text-secondary));
}

/* Leistungen Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background-color: white;
  border-radius: var(--radius-md);
  padding: 40px 30px;
  border: 1px solid hsl(var(--border));
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: hsl(var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition-normal);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-icon {
  width: 60px;
  height: 60px;
  background-color: hsl(var(--accent-light));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--accent));
  margin-bottom: 25px;
  transition: var(--transition-normal);
}

.service-card:hover .service-icon {
  background-color: hsl(var(--accent));
  color: white;
}

.service-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: hsl(var(--bg-dark));
  margin-bottom: 15px;
}

.service-desc {
  font-size: 0.95rem;
  color: hsl(var(--text-secondary));
}

/* Über uns Section */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
}

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 4px solid white;
}

.about-image img {
  width: 100%;
  object-fit: cover;
}

.about-experience-badge {
  position: absolute;
  top: -20px;
  right: -20px;
  background-color: hsl(var(--accent));
  color: white;
  width: 100px;
  height: 100px;
  border-radius: var(--radius-full);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  font-family: var(--font-heading);
  text-align: center;
  line-height: 1.1;
  border: 4px solid white;
}

.about-experience-badge .years {
  font-size: 1.8rem;
  font-weight: 800;
}

.about-experience-badge .text {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
}

.about-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: hsl(var(--bg-dark));
  margin-bottom: 20px;
  line-height: 1.2;
}

.about-title span {
  color: hsl(var(--accent));
}

.about-text {
  font-size: 1.05rem;
  color: hsl(var(--text-secondary));
  margin-bottom: 30px;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.value-item {
  display: flex;
  gap: 12px;
}

.value-icon {
  width: 24px;
  height: 24px;
  background-color: hsl(var(--accent-light));
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--accent));
  flex-shrink: 0;
}

.value-title {
  font-weight: 600;
  color: hsl(var(--bg-dark));
  margin-bottom: 4px;
}

.value-desc {
  font-size: 0.85rem;
  color: hsl(var(--text-secondary));
}

/* Galerie Section */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  aspect-ratio: 4 / 3;
  cursor: pointer;
  border: 1px solid hsl(var(--border));
  background-color: white;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-normal);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30, 41, 59, 0.9), transparent 80%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: var(--transition-normal);
  z-index: 2;
}

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

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item-title {
  color: white;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  transform: translateY(10px);
  transition: var(--transition-normal);
}

.gallery-item:hover .gallery-item-title {
  transform: translateY(0);
}

.gallery-item-desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  margin-top: 4px;
  transform: translateY(15px);
  transition: var(--transition-normal) 0.05s;
}

.gallery-item:hover .gallery-item-desc {
  transform: translateY(0);
}

/* Kontakt Sektion */
.contact-container {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-bottom: 50px;
}

.contact-card {
  background-color: white;
  border-radius: var(--radius-md);
  padding: 30px;
  text-align: center;
  border: 1px solid hsl(var(--border));
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: hsl(var(--accent));
}

.contact-card-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.25rem;
}

.contact-card-icon.mail { background-color: hsl(var(--bg-secondary)); color: hsl(var(--bg-dark)); }
.contact-card-icon.whatsapp { background-color: #e8f9ef; color: #25D366; }
.contact-card-icon.telegram { background-color: #e6f3fa; color: #0088cc; }

.contact-card-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: hsl(var(--bg-dark));
  margin-bottom: 8px;
}

.contact-card-value {
  font-size: 0.95rem;
  color: hsl(var(--text-secondary));
  margin-bottom: 20px;
  word-break: break-all;
}

.contact-card-btn {
  width: 100%;
  padding: 10px 15px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 600;
  text-align: center;
  margin-top: auto;
  transition: var(--transition-fast);
}

.contact-card-btn.mail { background-color: hsl(var(--bg-dark)); color: white; }
.contact-card-btn.mail:hover { background-color: hsl(var(--accent)); }
.contact-card-btn.whatsapp { background-color: #25D366; color: white; }
.contact-card-btn.whatsapp:hover { background-color: #128C7E; }
.contact-card-btn.telegram { background-color: #0088cc; color: white; }
.contact-card-btn.telegram:hover { background-color: #006699; }

.contact-info-box {
  background-color: white;
  border-radius: var(--radius-md);
  padding: 40px;
  border: 1px solid hsl(var(--border));
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.info-column-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: hsl(var(--bg-dark));
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.info-column-title svg {
  color: hsl(var(--accent));
}

.info-address {
  font-style: normal;
  color: hsl(var(--text-secondary));
  line-height: 1.8;
  font-size: 1rem;
}

.info-address strong {
  color: hsl(var(--bg-dark));
}

.info-map-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 15px;
  font-size: 0.9rem;
  font-weight: 600;
  color: hsl(var(--accent));
  transition: var(--transition-fast);
}

.info-map-link:hover {
  color: hsl(var(--accent-hover));
}

.area-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  color: hsl(var(--text-secondary));
  font-size: 0.95rem;
}

.area-list li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.area-list li::before {
  content: '✓';
  color: #10B981;
  font-weight: 700;
}

/* Footer & Modale */
.footer {
  background-color: hsl(var(--bg-dark));
  color: hsl(var(--text-light));
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
}

.footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

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

.footer-logo img {
  height: 36px;
  filter: brightness(0) invert(1);
}

.footer-logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
}

.footer-logo-text span {
  display: block;
  font-size: 0.65rem;
  color: hsl(var(--accent));
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-link {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition-fast);
}

.footer-link:hover {
  color: white;
}

.footer-copy {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
  width: 100%;
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 20px;
}

/* Modale für Impressum & Datenschutz (DSGVO-konform) */
.modal {
  position: fixed;
  inset: 0;
  background-color: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 20px;
}

.modal.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  background-color: white;
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 700px;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
  border: 1px solid hsl(var(--border));
  position: relative;
  animation: modalSlide 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes modalSlide {
  from {
    transform: translateY(20px) scale(0.96);
  }
  to {
    transform: translateY(0) scale(1);
  }
}

.modal-header {
  padding: 24px 30px;
  border-bottom: 1px solid hsl(var(--border));
  position: sticky;
  top: 0;
  background-color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
}

.modal-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: hsl(var(--bg-dark));
}

.modal-close {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background-color: hsl(var(--bg-secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--text-secondary));
  transition: var(--transition-fast);
}

.modal-close:hover {
  background-color: hsl(var(--bg-dark));
  color: white;
}

.modal-body {
  padding: 30px;
  font-size: 0.95rem;
  color: hsl(var(--text-secondary));
}

.modal-body h3 {
  font-family: var(--font-heading);
  color: hsl(var(--bg-dark));
  margin-top: 24px;
  margin-bottom: 12px;
}

.modal-body p {
  margin-bottom: 16px;
}

.modal-body ul {
  margin-bottom: 16px;
  padding-left: 20px;
}

/* Lightbox Modal */
.lightbox-modal .modal-content {
  background-color: transparent;
  border: none;
  box-shadow: none;
  max-width: 90vw;
  max-height: 95vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.lightbox-modal .modal-header {
  background-color: transparent;
  border: none;
  width: 100%;
  justify-content: flex-end;
  padding: 10px 0;
}

.lightbox-modal .modal-close {
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
}

.lightbox-modal .modal-close:hover {
  background-color: white;
  color: black;
}

.lightbox-img {
  max-width: 100%;
  max-height: 65vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  border: 4px solid white;
  box-shadow: var(--shadow-xl);
}

/* Responsivität */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-title {
    font-size: 2.8rem;
  }
  
  .hero-text {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-ctas {
    justify-content: center;
  }
  
  .hero-features {
    justify-content: center;
  }
  
  .hero-image-wrapper {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-badge {
    left: -15px;
  }
  
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about-image-wrapper {
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .contact-cards {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .contact-info-box {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }
  
  .header {
    height: 70px;
  }
  
  .logo img {
    height: 36px;
  }
  
  .logo-text {
    font-size: 1.15rem;
  }
  
  .nav {
    display: none; /* Mobile Navigation Toggle Logik */
  }
  
  .mobile-nav-toggle {
    display: block;
  }
  
  .hero {
    padding-top: 120px;
    padding-bottom: 60px;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .footer .container {
    flex-direction: column;
    text-align: center;
  }
}
