/* 
   NextMove Solutions - Core Design System 
   Premium Black & White with Gray Accents
*/

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('inter-400.ttf') format('truetype');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('inter-500.ttf') format('truetype');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('inter-600.ttf') format('truetype');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('inter-700.ttf') format('truetype');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url('inter-900.ttf') format('truetype');
}

:root {
  /* Colors */
  --color-black: #0a0a0a;
  --color-white: #ffffff;
  
  --color-gray-100: #f5f5f5;
  --color-gray-200: #e5e5e5;
  --color-gray-300: #d4d4d4;
  --color-gray-400: #a3a3a3;
  --color-gray-500: #737373;
  --color-gray-600: #525252;
  --color-gray-700: #404040;
  --color-gray-800: #262626;
  --color-gray-900: #171717;

  /* Theme Defaults (Dark Mode UI) */
  --bg-primary: var(--color-black);
  --bg-secondary: var(--color-gray-900);
  --bg-glass: rgba(23, 23, 23, 0.4);
  --bg-glass-lighter: rgba(255, 255, 255, 0.05);

  --text-primary: var(--color-white);
  --text-secondary: var(--color-gray-400);
  --text-inverse: var(--color-black);

  --border-color: rgba(255, 255, 255, 0.1);
  --border-focus: rgba(255, 255, 255, 0.3);

  /* Layout */
  --container-width: 1200px;
  --header-height: 80px;

  /* Typography */
  --font-main: 'Inter', system-ui, -apple-system, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.5rem); }

p {
  color: var(--text-secondary);
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

/* Utilities */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.text-center { text-align: center; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-8 { margin-bottom: 2rem; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.75rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid transparent;
}

.btn-primary {
  background-color: var(--color-white);
  color: var(--color-black);
  box-shadow: 0 4px 14px rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
  background-color: var(--color-gray-200);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-primary);
  border-color: var(--border-color);
}

.btn-secondary:hover {
  background-color: var(--bg-glass-lighter);
  border-color: var(--border-focus);
}

/* Header & Glassmorphism Navigation */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  background: var(--bg-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

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

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.05em;
  display: flex;
  align-items: center;
}

.logo span {
  color: var(--color-gray-400);
  font-weight: 400;
  margin-left: 0.25rem;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
  margin-left: auto;
}

.nav-links a.nav-item {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-gray-300);
  position: relative;
}

.nav-links a.nav-item:hover {
  color: var(--color-white);
}

.nav-links a.nav-item::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -4px;
  left: 0;
  background-color: var(--color-white);
  transition: width 0.3s ease;
}

.nav-links a.nav-item:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--color-white);
  font-size: 1.5rem;
  cursor: pointer;
}

.menu-toggle svg {
  width: 2rem;
  height: 2rem;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Hero Section */
.hero {
  padding-top: calc(var(--header-height) + 4rem);
  padding-bottom: 6rem;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% -20%, var(--color-gray-800) 0%, transparent 60%);
  z-index: -1;
}

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

.hero-badge {
  display: inline-block;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  background: var(--bg-glass-lighter);
  border: 1px solid var(--border-color);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  color: var(--color-gray-300);
  animation: fadeUp 1s ease forwards;
  opacity: 0;
  transform: translateY(20px);
}

.hero h1 {
  animation: fadeUp 1s ease 0.2s forwards;
  opacity: 0;
  transform: translateY(20px);
}

.hero h1 span.highlight {
  color: var(--color-gray-500);
}

.hero p {
  animation: fadeUp 1s ease 0.4s forwards;
  opacity: 0;
  transform: translateY(20px);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.5rem;
  animation: fadeUp 1s ease 0.6s forwards;
  opacity: 0;
  transform: translateY(20px);
}

/* Animations */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-section {
  opacity: 0;
  transform: translateY(20px);
  visibility: hidden;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  will-change: opacity, visibility;
}

.fade-in-section.is-visible {
  opacity: 1;
  transform: none;
  visibility: visible;
}

/* Stats Section */
.stats-section {
  padding: 4rem 0;
  position: relative;
  background-color: var(--bg-primary);
  background-image: 
    radial-gradient(at 0% 0%, rgba(255, 255, 255, 0.05) 0px, transparent 50%),
    radial-gradient(at 50% 0%, rgba(255, 255, 255, 0.02) 0px, transparent 50%),
    radial-gradient(at 100% 0%, rgba(255, 255, 255, 0.05) 0px, transparent 50%);
  background-size: 100% 100%;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.5) 50%, transparent 100%);
  box-shadow: 0 0 20px 2px rgba(255, 255, 255, 0.3);
}

.stats-section::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.5) 50%, transparent 100%);
  box-shadow: 0 0 20px 2px rgba(255, 255, 255, 0.3);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-item h3 {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
  color: var(--color-white);
  line-height: 1;
}

.stat-item p {
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-gray-400);
  margin: 0;
}

/* Services Sections */
.section {
  padding: 8rem 0;
  position: relative;
  background-color: var(--bg-primary);
  background-image: 
    radial-gradient(circle at 15% 50%, rgba(255,255,255,0.05) 0%, transparent 40%),
    radial-gradient(circle at 85% 30%, rgba(255,255,255,0.05) 0%, transparent 40%),
    radial-gradient(circle at 50% 100%, rgba(255,255,255,0.03) 0%, transparent 60%);
  background-size: 100% 100%;
}

.section-bg-alt {
  background-color: var(--color-gray-900);
  background-image: radial-gradient(ellipse at center top, rgba(255,255,255,0.06) 0%, transparent 70%);
}

.section-bg-alt::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.5) 50%, transparent 100%);
  box-shadow: 0 0 20px 2px rgba(255, 255, 255, 0.3);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem auto;
}

/* Service Cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 3rem 2rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at top right, rgba(255,255,255,0.05), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.service-card:hover {
  border-color: var(--border-focus);
  transform: translateY(-5px);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  font-size: 2.5rem;
  color: var(--color-white);
  margin-bottom: 1.5rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon svg {
  width: 2.5rem;
  height: 2.5rem;
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-img {
  height: 40px;
  width: auto;
}

.logo span {
  color: var(--color-gray-400);
  font-weight: 400;
}

/* Service List (Vorteile) */
.service-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.service-list li {
  position: relative;
  padding-left: 2.5rem;
  font-size: 1.05rem;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}

.service-list li:hover {
  transform: translateX(5px);
  color: var(--color-white);
}

.service-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: var(--bg-glass-lighter);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  color: var(--color-white);
  font-size: 0.8rem;
  font-weight: bold;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.05);
  transition: background 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
}

.service-list li:hover::before {
  background: var(--color-white);
  color: var(--color-black);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

/* Timeline */
.timeline {
  position: relative;
  max-width: 1000px;
  margin: 4rem auto 0 auto;
  padding: 2rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, var(--border-color) 10%, var(--border-color) 90%, transparent);
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  justify-content: flex-end;
  padding-right: 50%;
  position: relative;
  margin-bottom: 4rem;
  width: 100%;
}

.timeline-item:nth-child(even) {
  justify-content: flex-start;
  padding-right: 0;
  padding-left: 50%;
}

.timeline-dot {
  position: absolute;
  top: 2rem;
  left: 50%;
  width: 16px;
  height: 16px;
  background: var(--color-white);
  border-radius: 50%;
  transform: translateX(-50%);
  z-index: 2;
  box-shadow: 0 0 15px var(--color-white);
}

.timeline-content {
  width: 90%;
  background: var(--bg-glass-lighter);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border-color);
  padding: 2.5rem;
  border-radius: 24px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.timeline-item:nth-child(odd) .timeline-content {
  margin-right: 3rem;
}

.timeline-item:nth-child(even) .timeline-content {
  margin-left: 3rem;
}

.timeline-content:hover {
  border-color: var(--border-focus);
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.05);
}

.timeline-number {
  font-size: 4rem;
  font-weight: 900;
  color: var(--color-white);
  opacity: 0.05;
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  line-height: 1;
}

.timeline-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--color-white);
}

.timeline-content p {
  font-size: 1rem;
  color: var(--color-gray-400);
  margin-bottom: 0;
  line-height: 1.6;
}

/* Portrait Enhancements */
.portrait-container {
  position: relative;
  width: 18rem;
  height: 18rem;
  margin: 0 auto 2rem auto;
}

.portrait-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  z-index: 0;
  border-radius: 50%;
}

.portrait-img-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--color-gray-900);
  overflow: hidden;
  border: 1px solid var(--border-color);
  z-index: 1;
}

.portrait-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.5s ease;
}

.portrait-container:hover img {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .timeline::before {
    left: 20px;
  }
  
  .timeline-item {
    justify-content: flex-start;
    padding-left: 45px;
    padding-right: 0;
  }
  
  .timeline-item:nth-child(even) {
    padding-left: 45px;
  }
  
  .timeline-dot {
    left: 20px;
  }
  
  .timeline-item:nth-child(odd) .timeline-content,
  .timeline-item:nth-child(even) .timeline-content {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
  }
}

/* Detailed Page specific (Web Dev / SMM) */
.page-header {
  padding: calc(var(--header-height) + 6rem) 0 4rem;
  border-bottom: 1px solid var(--border-color);
  text-align: center;
}

.content-block {
  padding: 4rem 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.content-block.v-stretch {
  align-items: stretch;
}

/* Proof Section */
.proof-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.proof-img {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  aspect-ratio: 16/9;
  object-fit: cover;
  background-color: var(--color-gray-900);
}

.proof-img.vertical {
  aspect-ratio: 9/16;
}

@keyframes rgbGlow {
  0% { box-shadow: 0 0 20px #e1306c; }
  33% { box-shadow: 0 0 20px #f77737; }
  66% { box-shadow: 0 0 20px #833ab4; }
  100% { box-shadow: 0 0 20px #405de6; }
}

.glow-border-smm {
  animation: rgbGlow 3s infinite alternate;
}

@keyframes techGlow {
  0% { box-shadow: 0 0 20px #00f2fe; }
  50% { box-shadow: 0 0 20px #4facfe; }
  100% { box-shadow: 0 0 20px #00f2fe; }
}

.glow-border-web {
  animation: techGlow 3s infinite alternate;
}

/* Reviews Section */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.review-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.review-card:hover {
  border-color: var(--border-focus);
  transform: translateY(-5px);
}

.review-quote {
  font-size: 1.125rem;
  color: var(--color-white);
  font-style: italic;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.review-avatar {
  width: 50px;
  height: 50px;
  background: var(--color-gray-800);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--color-white);
  border: 1px solid var(--border-color);
}

.review-author-info h4 {
  margin: 0;
  font-size: 1.125rem;
  color: var(--color-white);
}

.review-author-info p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--color-gray-400);
}

/* Footer */
.site-footer {
  background-color: var(--color-black);
  background-image: radial-gradient(ellipse at bottom, rgba(255, 255, 255, 0.05) 0%, transparent 60%);
  border-top: 1px solid var(--border-color);
  padding: 4rem 0 2rem;
  position: relative;
  overflow: hidden;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  max-width: 300px;
  margin-top: 1rem;
  font-size: 0.875rem;
}

.footer-links h4 {
  color: var(--color-white);
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

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

.footer-links ul li {
  margin-bottom: 0.75rem;
}

.footer-links ul a {
  color: var(--color-gray-400);
  font-size: 0.875rem;
}

.footer-links ul a:hover {
  color: var(--color-white);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  color: var(--color-gray-500);
}

/* Cookie Banner */
#cookie-banner {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(150%);
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-color);
  padding: 1.5rem 2rem;
  border-radius: 16px;
  z-index: 9999;
  width: 90%;
  max-width: 600px;
  text-align: center;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

#cookie-banner.show {
  transform: translateX(-50%) translateY(0);
}

#cookie-banner p {
  font-size: 0.875rem;
  margin-bottom: 1rem;
  color: var(--color-gray-300);
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

/* Responsive Variables & Adjustments */
@media (max-width: 992px) {
  .content-block {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 1024px) {
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--color-black);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem 0;
    gap: 2.5rem;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1000;
    margin-left: 0;
  }
  
  .nav-links.open {
    transform: translateX(0);
  }

  .nav-links .nav-item {
    font-size: 1.75rem;
    font-weight: 700;
  }
  
  .menu-toggle {
    display: block;
    z-index: 1001;
    position: relative;
  }
  
  .hero-actions {
    flex-direction: column;
  }
  
  .hero-actions .btn {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* Header Social Media */
.header-social {
  display: flex;
  align-items: center;
  margin-left: 2rem;
}

.social-icon {
  color: var(--color-gray-400);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

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

.social-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

body.no-scroll {
  overflow: hidden;
}

@media (max-width: 1024px) {
  .header-social {
    margin-left: auto;
    margin-right: 1.5rem;
  }
}

/* Hero Background Images (Abgeblendet & Grayscale) */
.hero-bg-index {
  background-image: linear-gradient(rgba(10, 10, 10, 0.75), rgba(10, 10, 10, 0.85)), url('hero-bg-custom.png');
  background-size: cover;
  background-position: center;
}

.hero-bg-webdev {
  background-image: linear-gradient(rgba(10, 10, 10, 0.75), rgba(10, 10, 10, 0.85)), url('https://images.unsplash.com/photo-1498050108023-c5249f4df085?w=1920&q=80');
  background-size: cover;
  background-position: center;
}

.hero-bg-smm {
  background-image: linear-gradient(rgba(10, 10, 10, 0.75), rgba(10, 10, 10, 0.85)), url('https://images.unsplash.com/photo-1611162617213-7d7a39e9b1d7?w=1920&q=80');
  background-size: cover;
  background-position: center;
}

.hero-bg-about {
  background-image: linear-gradient(rgba(10, 10, 10, 0.75), rgba(10, 10, 10, 0.85)), url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?w=1920&q=80');
  background-size: cover;
  background-position: center;
}
