:root {
  --primary-red: #E74C3C;
  --dark-bg: #2C3E50;
  --light-gray: #F8F9FA;
  --text-dark: #2C3E50;
  --text-gray: #6C757D;
}

/* Normale Inter Variable Font */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/Inter/Inter-VariableFont_opsz,wght.ttf') format('truetype');
}

/* Italic Inter Variable Font */
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/Inter/Inter-Italic-VariableFont_opsz,wght.ttf') format('truetype');
}

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

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
}

/* Header Styles */
.navbar {
  background: white;
  padding: 1rem 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-nav .nav-link {
  position: relative;
  padding-bottom: 0.3rem;
  transition: color 0.3s ease;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
  color: var(--primary-red);
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-red);
  transition: width 0.3s ease;
}

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

.navbar-brand {
  font-weight: 700;
  color: var(--text-dark) !important;
  font-size: 1.2rem;
}

.brand-icon {
  color: var(--primary-red);
  margin-right: 0.5rem;
  font-size: 1.5rem;
  height: 60px;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('../images/hero-image.jpg');
  background-size: cover;
  background-position: center;
  height: 60vh;
  display: flex;
  align-items: center;
  color: white;
  position: relative;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero-content p {
  font-size: 1.3rem;
  font-weight: 400;
  opacity: 0.9;
}

/* Services Section */
.services-section {
  padding: 5rem 0;
  background: white;
}

.service-item {
  padding: 2rem;
  height: 100%;
  transition: transform 0.3s ease;
}

.service-item:hover {
  transform: translateY(-5px);
}

.service-icon i {
  font-size: 3.5rem;
  color: var(--primary-red);
  margin-bottom: 1rem;
}

.service-item h3 {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

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

.badge.rounded-pill.bg-dark {
  padding: 8px 12px;
  background: #000000;
}

/* Quote Section */
.quote-section {
  position: relative;
  overflow: hidden;
  color: white;
  padding: 6rem 0;
  display: flex;
  align-items: center;
  background-image: url('../images/image-cart.jpg');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.01) 30%, rgb(255 255 255 / 70%) 100%);
  z-index: 0;
}

.quote-part {
  display: inline-block;
  padding: 0 .4rem;
  color: #fff;
}

.quote-part--red   { background: var(--primary-red); }
.quote-part--black { background: #000; }

/* About Section */
.about-section {
  padding: 5rem 0;
  background: var(--light-gray);
}

.about-section h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: var(--text-dark);
}

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

/* Client Logos Section */
.clients-section {
  padding: 3rem 0;
  background: white;
  overflow: hidden;
}

.avatar {
  width: 140px;
  height: 140px;
}


.splide__slide img {
  height:70px;
  width:auto;
  object-fit:contain;
  filter:grayscale(30%);
  transition:filter .3s ease;
}

.splide__slide:hover  {
  filter: grayscale(0%);
}

.footer-section{
  border-top: 1px solid #ced4da;
  font-size: .9375rem;
  color: #fff;
  background-color: var(--primary-red);
}

.footer-section a{
  color: #fff;
  text-decoration: none;
}
.footer-section a:hover{
  text-decoration: underline;
}


.footer-logo-box {
  width: 240px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: .5rem;
}
.footer-logo-box img {
  filter: brightness(0) invert(1);
}

@media (max-width: 768px) {
  .navbar {
    padding: 0.5rem 0;
  }

  .navbar-brand {
    font-size: 1rem;
  }

  .brand-icon {
    height: 40px;
    margin-right: 0.3rem;
  }

  .hero-section {
    background-position: right;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-content p {
    font-size: 1.1rem;
  }

  .service-item {
    margin-bottom: 2rem;
  }

  .quote-section {
    background-position: left;
    background-size: cover;
  }

  .avatar {
    width: 80px;
    height: 80px;
  }
}

@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .services-section {
    padding: 3rem 0;
  }

  .about-section {
    padding: 3rem 0;
  }
}

@media (min-width: 992px) {
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 0.75rem;
    padding-left: 0.75rem;
  }
}