* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: white;
  background-color: #000;
  background-image: url("../img/classik1.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: fixed;
  background-size: cover;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  pointer-events: none;
  z-index: 0;
}

.cp-hero,
.cp-grid {
  position: relative;
  z-index: 1;
}

.cp-hero {
  height: 700px;
  text-align: center;
}

.cp-center-logo {
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 750px;
  width: 85%;
  height: auto;
}

.cp-tagline {
  position: absolute;
  top: 470px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 28px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 3px;
  white-space: nowrap;
}

.cp-btn {
  background: #d81e2a;
  color: white;
  padding: 14px 30px;
  border: 2px solid white;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none;
}

.cp-btn-below-tagline {
  position: absolute;
  top: 540px;
  left: 50%;
  transform: translateX(-50%);
}

.cp-grid {
  max-width: 1400px;
  margin: -40px auto 0 auto;
  padding: 40px 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.cp-card {
  background: rgba(30, 30, 30, 0.9);
  padding: 20px;
  text-align: center;
}

.cp-card h1 {
  margin-top: 0;
}

.cp-card h3 {
  color: #ddd;
  font-weight: normal;
  line-height: 1.6;
}

.cp-hero-logo {
  width: 100%;
  max-width: 400px;
  height: auto;
}

@media (max-width: 1200px) {
  .cp-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .cp-grid {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }

  .cp-tagline {
    top: 420px;
    font-size: 20px;
    white-space: normal;
    width: 90%;
  }

  .cp-btn-below-tagline {
    top: 500px;
  }
}
