/* ═══════════════════════════════════════════════════════
   FATMIR NIMANI – GARTEN & LANDSCHAFTSBAU
   Edle, moderne Website mit Geist Font
   ═══════════════════════════════════════════════════════ */

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Edle Farbpalette - Helle, natürliche Töne */
  --green-primary: #5a8a4f;
  --green-dark: #3d6238;
  --green-light: #7aaa6f;
  --green-accent: #8bc34a;
  --dark: #1a1a1a;
  --white: #ffffff;
  --gray-lightest: #fafafa;
  --gray-light: #f5f5f5;
  --gray-mid: #e8e8e8;
  --gray-text: #666666;
  --beige: #f8f6f2;

  /* Schriftarten - Geist von Google Fonts */
  --font-primary: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Geist', sans-serif;

  /* Abstände */
  --spacing-xs: 8px;
  --spacing-sm: 16px;
  --spacing-md: 24px;
  --spacing-lg: 40px;
  --spacing-xl: 60px;
  --spacing-2xl: 80px;

  /* Schatten */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.08);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.12);

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  color: var(--dark);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

/* ═══════════════════════════════════════════════════════
   HEADER - Sticky Navigation
   ═══════════════════════════════════════════════════════ */

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px var(--spacing-xl);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

header.scrolled {
  padding: 14px var(--spacing-xl);
  box-shadow: var(--shadow-md);
}

.logo {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: var(--dark);
  transition: transform 0.3s ease;
}

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

.header-logo {
  height: 45px;
  width: auto;
  display: block;
}

.logo-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
}

.logo-text h1 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 1.2;
  margin-bottom: 2px;
}

.logo-text span {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green-primary);
  opacity: 0.9;
}

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

nav a {
  text-decoration: none;
  color: var(--dark);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  position: relative;
  transition: color 0.3s ease;
  padding: 8px 0;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green-primary);
  transition: width 0.3s ease;
}

nav a:hover {
  color: var(--green-primary);
}

nav a:hover::after,
nav a.active::after {
  width: 100%;
}

.nav-cta {
  margin-left: 12px;
  padding: 10px 24px !important;
  background: var(--green-primary);
  color: var(--white) !important;
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
}

.nav-cta::after {
  display: none;
}

.nav-cta:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  transition: all 0.3s ease;
}

/* ═══════════════════════════════════════════════════════
   HERO SECTION - Edel und luftig
   ═══════════════════════════════════════════════════════ */

.hero {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  padding: 12px var(--spacing-xl);
  height: 600px;
  margin-bottom: var(--spacing-2xl);
}

.hero-main {
  grid-row: 1 / 3;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--spacing-xl);
}

.hero-overlay h2 {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.hero-overlay p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 32px;
  max-width: 520px;
  line-height: 1.6;
}

.btn-primary {
  display: inline-block;
  background: var(--white);
  color: var(--dark);
  padding: 16px 36px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  width: fit-content;
  box-shadow: var(--shadow-md);
}

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

.hero-side {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-side:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.hero-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hero-side:hover img {
  transform: scale(1.08);
}

/* ═══════════════════════════════════════════════════════
   ÜBER UNS SECTION
   ═══════════════════════════════════════════════════════ */

.about {
  padding: var(--spacing-2xl) var(--spacing-xl);
  background: var(--beige);
}

.about-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  align-items: center;
}

.about-text h3 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: var(--spacing-md);
  position: relative;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.about-text h3::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--green-primary);
  margin-top: 16px;
  border-radius: 2px;
}

.about-text p {
  color: var(--gray-text);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: var(--spacing-md);
}

.about-text .signature {
  margin-top: var(--spacing-lg);
  font-style: italic;
  color: var(--green-dark);
  font-weight: 500;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-md);
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--spacing-lg);
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.service-icon {
  width: 56px;
  height: 56px;
  margin-bottom: var(--spacing-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--beige);
  border-radius: var(--radius-sm);
}

.service-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--green-primary);
  fill: none;
  stroke-width: 1.5;
}

.service-card h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}

.service-card p {
  font-size: 0.875rem;
  color: var(--gray-text);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════
   GALERIE - Mit Lightbox-Unterstützung
   ═══════════════════════════════════════════════════════ */

.gallery {
  padding: var(--spacing-2xl) var(--spacing-xl);
  max-width: 1600px;
  margin: 0 auto;
}

.gallery-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: var(--spacing-lg);
}

.gallery-header h3 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  position: relative;
  letter-spacing: -0.5px;
}

.gallery-header h3::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--green-primary);
  margin-top: 16px;
  border-radius: 2px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-sm);
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 280px;
  position: relative;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background 0.3s ease;
  pointer-events: none;
}

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

.gallery-item:hover::after {
  background: rgba(0, 0, 0, 0.2);
}

/* Zoom Icon on Hover */
.gallery-item::before {
  content: '🔍';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  font-size: 2.5rem;
  color: var(--white);
  z-index: 10;
  transition: transform 0.3s ease;
  pointer-events: none;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.gallery-item:hover::before {
  transform: translate(-50%, -50%) scale(1);
}

/* ═══════════════════════════════════════════════════════
   LIGHTBOX
   ═══════════════════════════════════════════════════════ */

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  transition: opacity 0.3s ease;
  cursor: zoom-out;
}

.lightbox.active {
  display: flex;
  opacity: 1;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  cursor: default;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
}

.lightbox-close {
  position: absolute;
  top: -50px;
  right: 0;
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 2.5rem;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  font-weight: 300;
  line-height: 1;
}

.lightbox-close:hover {
  transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
  font-weight: 300;
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-50%) scale(1.1);
}

/* ═══════════════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════════════ */

.testimonials {
  padding: var(--spacing-2xl) var(--spacing-xl);
  background: var(--gray-lightest);
}

.testimonials-container {
  max-width: 1400px;
  margin: 0 auto;
}

.testimonials h3 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: var(--spacing-lg);
  position: relative;
  letter-spacing: -0.5px;
}

.testimonials h3::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--green-primary);
  margin-top: 16px;
  border-radius: 2px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: var(--spacing-xl);
  align-items: start;
}

.testimonial-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 400px;
  box-shadow: var(--shadow-lg);
}

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

.testimonial-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-md);
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--spacing-lg);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: var(--spacing-sm);
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--green-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.testimonial-name {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--gray-text);
}

.stars {
  color: #f5a623;
  font-size: 0.9rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.testimonial-card > p {
  font-size: 0.9rem;
  color: var(--gray-text);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════════════════════ */

.cta-section {
  padding: var(--spacing-2xl) var(--spacing-xl);
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-primary) 100%);
  text-align: center;
  color: var(--white);
}

.cta-section h3 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: var(--spacing-sm);
  letter-spacing: -0.5px;
}

.cta-section p {
  font-size: 1.1rem;
  margin-bottom: var(--spacing-lg);
  opacity: 0.95;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.btn-secondary {
  display: inline-block;
  background: var(--white);
  color: var(--green-dark);
  padding: 16px 40px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-lg);
}

.btn-secondary:hover {
  background: var(--beige);
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

/* ═══════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════ */

footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.7);
  padding: var(--spacing-2xl) var(--spacing-xl) var(--spacing-lg);
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-lg);
}

.footer-logo-section {
  max-width: 320px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: var(--spacing-sm);
}

.footer-logo-img {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
  display: block;
}

.footer-logo-text h4 {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.footer-logo-text span {
  font-size: 0.7rem;
  color: var(--green-accent);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.footer-description {
  margin-top: var(--spacing-sm);
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: var(--spacing-md);
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--green-primary);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-column h5 {
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: var(--spacing-md);
}

.footer-column a {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.875rem;
  margin-bottom: 10px;
  transition: all 0.3s ease;
  padding-left: 0;
}

.footer-column a:hover {
  color: var(--green-accent);
  padding-left: 8px;
}

.footer-contact p {
  font-size: 0.875rem;
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.6;
}

.footer-contact p svg {
  width: 18px;
  height: 18px;
  stroke: var(--green-accent);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: var(--spacing-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: var(--green-accent);
}

/* ═══════════════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════════════ */

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.fade-in-up {
  animation: fadeInUp 0.8s ease-out both;
}

.fade-in {
  animation: fadeIn 0.6s ease-out both;
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE DESIGN
   ═══════════════════════════════════════════════════════ */

@media (max-width: 1200px) {
  :root {
    --spacing-xl: 40px;
    --spacing-2xl: 60px;
  }

  .hero {
    height: 520px;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 1024px) {
  :root {
    --spacing-xl: 30px;
    --spacing-2xl: 50px;
  }

  header {
    padding: 16px var(--spacing-xl);
  }

  .hero {
    height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: 450px 200px;
  }

  .hero-main {
    grid-column: 1;
    grid-row: 1;
  }

  .hero-side:last-child {
    display: none;
  }

  .hero-overlay h2 {
    font-size: 2.5rem;
  }

  .about-container {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-image {
    height: 300px;
  }

  .testimonial-cards {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --spacing-xl: 24px;
    --spacing-2xl: 40px;
    --spacing-lg: 32px;
  }

  .header-logo {
    height: 32px;
  }

  .footer-logo-img {
    height: 32px;
  }

  nav {
    position: fixed;
    top: 72px;
    right: -100%;
    width: 280px;
    height: calc(100vh - 72px);
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-xl);
    transition: right 0.3s ease;
    gap: 20px;
  }

  nav.active {
    right: 0;
  }

  .menu-toggle {
    display: flex;
  }

  .hero {
    grid-template-rows: 380px;
    height: auto;
  }

  .hero-side {
    display: none;
  }

  .hero-overlay {
    padding: var(--spacing-lg);
  }

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

  .hero-overlay p {
    font-size: 0.9rem;
  }

  .about-text h3,
  .gallery-header h3,
  .testimonials h3,
  .cta-section h3 {
    font-size: 2rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item {
    height: 220px;
  }

  .testimonial-cards {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }
}

@media (max-width: 480px) {
  .hero {
    grid-template-rows: 320px;
  }

  .hero-overlay h2 {
    font-size: 1.75rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item {
    height: 280px;
  }
}

/* ═══════════════════════════════════════════════════════
   COPYRIGHT CREDIT STYLE
   ═══════════════════════════════════════════════════════ */

.copyright {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 8px;
}

.copyright a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.copyright a:hover {
  color: var(--green-accent);
}

.heart-icon svg {
  display: inline-block;
  vertical-align: middle;
  margin: 0 3px;
}
