@import url(./base.css);
@import url(./footer.css);

/* =========================================================
   NAVBAR
========================================================= */

#navbar {
  width: calc(100% - 3rem);
  height: 5rem;
  background-color: #0f0f0f;
  color: #fff;
  padding: 0 1.5rem;

  display: flex;
  justify-content: space-between;
  align-items: center;

  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}

.nav-icon {
  height: 2.5rem;
}

.homebtn {
  text-decoration: none;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  transition: color 0.2s ease;
}

.homebtn:hover {
  color: #d3ae36;
}

/* INSTAGRAM BUTTON */
.insta-btn {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
}

.insta-btn img {
  height: 24px;
  filter: invert(100%);
  transition: filter 0.2s ease;
}

.insta-btn:hover img {
  filter: invert(75%) sepia(75%) saturate(300%) hue-rotate(10deg);
}

/* =========================================================
   HERO SECTION
========================================================= */

#partner-hero {
  position: relative;
  width: 100%;
  height: 50svh;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;
}

.partner-hero-bg {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;

  filter: blur(0.5rem);
  transform: scale(1.05);
  z-index: 1;
}

.partner-hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

#partner-hero h1 {
  font-size: 3rem;
  color: #d3ae36;
}

#partner-hero p {
  font-size: 1.2rem;
  color: #ccc;
}

/* =========================================================
   BENEFITS SECTION
========================================================= */

#partner-benefits {
  width: calc(100% - 4rem);
  padding: 6rem 2rem;
  background: #0f0f0f;
  color: #fff;
}

.benefits-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.benefits-text {
  flex: 1;
  min-width: 300px;
}

.benefits-text h2 {
  color: #d3ae36;
  margin-bottom: 15px;
}

.benefits-text p {
  color: #ccc;
  margin-bottom: 20px;
}

.benefits-list li {
  margin: 8px 0;
  font-size: 1rem;
}

.benefits-highlight {
  flex: 0.8;
  min-width: 300px;
  background: #1a1a1a;
  border: 2px solid #333;
  padding: 25px;
  border-radius: 10px;
}

.benefits-highlight h3 {
  color: #d3ae36;
  margin-bottom: 10px;
}

.package-points .point {
  background: #111;
  padding: 12px;
  margin: 10px 0;
  border-radius: 6px;
  border-left: 4px solid #d3ae36;
}

/* =========================================================
   PDF SECTION
========================================================= */

#partner-pdf {
  width: calc(100% - 4rem);
  padding: 6rem 2rem;
  background: #111;
}

.pdf-container {
  max-width: 1200px;
  margin: auto;

  display: flex;
  flex-wrap: wrap;
  gap: 50px;

  align-items: center;
  justify-content: center;
}

.pdf-preview img {
  width: 350px;
  border-radius: 12px;
  box-shadow: 0 0 25px rgba(211, 174, 54, 0.25);
}

.pdf-info {
  max-width: 550px;
}

.pdf-info h2 {
  color: #d3ae36;
  margin-bottom: 15px;
}

.pdf-info p {
  color: #ccc;
  line-height: 1.6;
}

.pdf-buttons {
  margin-top: 30px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.pdf-btn {
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.pdf-btn.download {
  background: #d3ae36;
  color: #0f0f0f;
}

.pdf-btn.contact {
  background: transparent;
  border: 2px solid #d3ae36;
  color: #d3ae36;
}

.pdf-btn:hover {
  transform: translateY(-3px);
}

/* =========================================================
   PARTNER LIST SECTION (ohne Überschriften)
========================================================= */

#partner-list {
  width: calc(100% - 4rem);
  padding: 6rem 2rem;
  background: #0e0e0e;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.partner-list-inner {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

#partner-list h2 {
  color: #d3ae36;
  font-size: 2.1rem;
  margin-bottom: 10px;
}

#partner-list p {
  color: #b5b5b5;
  margin-bottom: 40px;
}


/* =========================================================
   GOLD / SILBER / BRONZE ROWS
========================================================= */

.partner-row {
  width: 100%;
  display: grid;
  gap: 30px;
  margin-bottom: 50px;
}

/* GOLD → MAX 2 SPALTEN */
.gold-row {
  grid-template-columns: repeat(2, minmax(220px, 1fr));
}

/* SILBER → MAX 3 SPALTEN */
.silver-row {
  grid-template-columns: repeat(3, minmax(180px, 1fr));
}

/* BRONZE → MAX 5 SPALTEN */
.bronze-row {
  grid-template-columns: repeat(5, minmax(140px, 1fr));
}


/* =========================================================
   PARTNER ITEM – Base
========================================================= */

.partner-item {
  background: #151515;
  border-radius: 12px;
  padding: 25px 20px;
  border: 1px solid #333;

  display: flex;
  justify-content: center;
  align-items: center;

  transition: transform 0.2s ease,
              border-color 0.2s ease,
              box-shadow 0.2s ease;
}

.partner-item img {
  max-width: 100%;
  object-fit: contain;
  filter: brightness(0.95);
}

/* Hover */
.partner-item:hover {
  transform: translateY(-4px);
  border-color: #d3ae36;
  box-shadow: 0 0 22px rgba(211, 174, 54, 0.35);
}

.partner-item:hover img {
  filter: brightness(1.05);
}


/* =========================================================
   GOLD–Style (größer)
========================================================= */

.gold-row .partner-item {
  padding: 45px 30px;
  border-color: #d3ae36;
  box-shadow: 0 0 18px rgba(211, 174, 54, 0.25);
}

.gold-row .partner-item img {
  max-height: 140px;
}

.gold-row .partner-item:hover {
  box-shadow: 0 0 30px rgba(211, 174, 54, 0.45);
}


/* =========================================================
   SILBER
========================================================= */

.silver-row .partner-item img {
  max-height: 100px;
}


/* =========================================================
   BRONZE
========================================================= */

.bronze-row .partner-item img {
  max-height: 80px;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 900px) {
  .gold-row {
    grid-template-columns: 1fr; /* 1 pro Reihe */
  }
  .silver-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .bronze-row {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .silver-row, .bronze-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .partner-item {
    padding: 18px 12px;
  }
}
