
/***********************************************
  GLOBAL RESET & VARIABLES
***********************************************/
* {
  margin: 0; padding: 0; box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
html, body {
  font-family: Arial, sans-serif;
  background: #fff;
  color: #000;
  /* Falls du GAR KEIN Scrollen willst (auch nicht mit Rad):
     overflow: hidden; 
     Ansonsten lassen wir das Scrollen an, aber scrollbar unsichtbar */
}
:root {
  --bgcolor: #fff;
  --textcolor: #000;
  --primary-color: #000;       /* BRUG-Schrift */
  --highlight-color: #ffae00;  /* Orange als Akzent */
  --header-height: 70px;
  --scroll-bullet-size: 10px;
}

body {
  margin: 0;
  position: relative;
}

/***********************************************
  HEADER (Fixed)
***********************************************/
.main-header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: var(--header-height);
  background: #000; /* Schwarz */
  border-bottom: 1px solid #333;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  z-index: 1000;
}
.header-left,
.header-center,
.header-right {
  display: flex;
  align-items: center;
}
.header-left {
  gap: 20px;
  color: #fff;
}
.brug-logo {
  font-size: 1.6rem;
  font-weight: bold;
  color: #fff;
}
/* Navigation in der Mitte */
.header-center {
  flex: 1; 
  justify-content: center; /* Zentriert die 3 Buttons */
  gap: 20px;
}
/* Menü-Buttons */
.nav-btn {
  color: #fff;
  background: none;
  border: none;
  margin: 0 5px;
  cursor: pointer;
  font-size: 0.9rem;
}
.nav-btn:hover {
  text-decoration: underline;
}

/* Account Button rechts */
.account-btn {
  width: 40px; height: 40px;
  background: none;
  cursor: pointer;
  display: flex; 
  justify-content: center;
  align-items: center;
  border: none;
}
.account-icon {
  width: 22px; height: 22px;
  filter: invert(100%);
}

/***********************************************
  SCROLL-SNAP CONTAINER (3 große Sektionen)
  -> Ausblenden der Scrollbar
***********************************************/
.snap-container {

    scroll-snap-type: y mandatory;
  
  /* scroll-snap-type: y mandatory;  (bei Bedarf) */
  /* Höhe des Containers = Gesamthöhe minus Header */
  margin-top: var(--header-height);
  height: calc(100vh - var(--header-height));
  /* Wenn du Scrollen noch willst, kann hier stand früher: overflow-y: scroll; */
  overflow-y: scroll;
  position: relative;
  scroll-behavior: smooth;

  /* Scrollbar ausblenden */
  -ms-overflow-style: none;    /* IE und Edge */
  scrollbar-width: none;       /* Firefox */
}
.snap-container::-webkit-scrollbar {
  display: none;              /* Chrome, Safari, Opera */
}

/* Jedes .snap-section (optional scroll-snap-align) */
.snap-section {
    scroll-snap-align: start; /* oder center */
    min-height: calc(100vh - 150px); /* Vollbild-Sektionen */
    padding: 20px 20px 40px 20px; 
    border-bottom: 1px solid #ccc;
  
}

/***********************************************
  SECTION A: ALLGEMEINE SPONSORINGS
  -> Filter Bar NICHT mehr sticky
***********************************************/
.sticky-filter-bar {
  /* Früher: position: sticky; top: calc(var(--header-height)); */
  background: #fff;

  border-bottom: 1px solid #ddd;
  z-index: 999;
}
.filter-container {
  display: flex;
  align-items: center;
  gap: 20px;
  white-space: nowrap;
  overflow-x: auto;
  padding-bottom: 4px;
}
.filter-item {
  display: flex;
  flex-direction: column;
  font-size: 0.8rem;
  color: #000;
  min-width: 100px;
}
.filter-item label {
  font-weight: 600;
  margin-bottom: 4px;
}
.filter-item input,
.filter-item select {
  border: 1px solid #ccc;
  background: #f9f9f9;
  color: #000;
  padding: 5px 6px;
  font-size: 0.85rem;
  outline: none;
  font-family: inherit;
}
.filter-item input:focus,
.filter-item select:focus {
  border-color: #666;
}

/* Angebote */
.offers-main {
  margin-top: 10px;
}
.offers-grid-section {
  margin-bottom: 40px;
}
.offers-grid-section h2 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.section-desc {
  font-size: 0.9rem;
  margin-bottom: 15px;
}
.offers-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}
.offer-card {
  background: #fff;
  color: #000;
  display: flex;
  flex-direction: column;
  padding: 10px;
  cursor: pointer;
  transition: transform 0.2s;
}
.offer-card:hover {
  transform: scale(1.01);
}
.offer-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.offer-card h3 {
  font-size: 1rem;
  margin-top: 8px;
  font-weight: 600;
}
.offer-card .price {
  font-size: 0.95rem;
  color: #333;
  margin: 4px 0;
}
.offer-card .views {
  font-size: 0.8rem;
  color: #555;
}
.offer-card .desc {
  font-size: 0.8rem;
  color: #666;
}
.offer-card .rating {
  font-size: 0.8rem;
  color: #999;
}
.load-more-btn {
  display: block;
  margin: 20px auto 0 auto;
  background: #000;
  color: #fff;
  border: 1px solid #000;
  padding: 8px 12px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.3s, color 0.3s, border 0.3s;
  font-family: inherit;
}
.load-more-btn:hover {
  background: #fff;
  color: #000;
  border-color: #555;
}

/***********************************************
  SECTION B: INSTAGRAM SPONSORINGS
***********************************************/
.instagram-section h2 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}
.instagram-section p {
  font-size: 0.9rem;
  margin-bottom: 20px;
}
.instagram-form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.instagram-form label {
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 2px;
}
.instagram-form input {
  border: 1px solid #ccc;
  padding: 8px;
  font-size: 0.85rem;
  background: #f9f9f9;
  outline: none;
}
.instagram-form input:focus {
  border-color: #666;
}
.instagram-form button {
  background: #000;
  color: #fff;
  border: 1px solid #000;
  padding: 10px;
  cursor: pointer;
}
.instagram-form button:hover {
  background: #fff;
  color: #000;
}
.instagram-result {
  margin-top: 15px;
  font-weight: 600;
  font-size: 1rem;
}

/***********************************************
  SECTION C: PERSONALISIERTE SPONSORING PAKETE
***********************************************/
.personal-section h2 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}
.personal-section p {
  font-size: 0.9rem;
  margin-bottom: 20px;
  line-height: 1.4;
}
.personal-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.personal-form label {
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 2px;
}
.personal-form input, 
.personal-form textarea, 
.personal-form select {
  border: 1px solid #ccc;
  padding: 8px;
  font-size: 0.85rem;
  background: #f9f9f9;
  outline: none;
}
.personal-form input:focus,
.personal-form textarea:focus,
.personal-form select:focus {
  border-color: #666;
}
.personal-form textarea {
  resize: vertical;
  min-height: 80px;
}
.personal-form button {
  background: #000;
  color: #fff;
  border: 1px solid #000;
  padding: 10px;
  cursor: pointer;
}
.personal-form button:hover {
  background: #fff;
  color: #000;
}

/***********************************************
  RIGHT-SIDE BULLETS NAVIGATION
***********************************************/
.right-bullets {
  position: fixed;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 1100;
}
.bullet {
  width: var(--scroll-bullet-size);
  height: var(--scroll-bullet-size);
  border-radius: 50%;
  background: #aaa;
  cursor: pointer;
  border: 1px solid #999;
  transition: background 0.3s;
}
.bullet.active {
  background: #000; /* aktive Sektion schwarz */
  border-color: #000;
}

/***********************************************
  FOOTER
***********************************************/
.main-footer {
  scroll-snap-align: end;
  background: #f5f5f5;
  border-top: 1px solid #ccc;
  padding: 20px;
  text-align: center;
  color: #000;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 10px;
}
.footer-links a {
  text-decoration: none;
  color: #000;
  font-size: 0.8rem;
}
.footer-links a:hover {
  text-decoration: underline;
}
.footer-note {
  font-size: 0.75rem;
  color: #444;
}

/***********************************************
  POPUP OVERLAY (Login/Registrieren)
***********************************************/
.popup-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.4);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.popup-overlay.hidden {
  display: none !important;
}
.popup {
  background: #fff;
  color: #000;
  width: 300px;
  max-width: 90%;
  padding: 20px;
  position: relative;
}
.tabs {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}
.tab-button {
  flex: 1;
  border: none;
  background: #f0f0f0;
  padding: 10px;
  cursor: pointer;
  font-size: 0.9rem;
}
.tab-button.active {
  background: #000;
  color: #fff;
}
.tab-content {
  /* Contain both tab panels */
}
.tab-panel {
  display: none;
}
.tab-panel.active {
  display: block;
}
.submit-btn {
  background: #000;
  color: #fff;
  border: 1px solid #000;
  padding: 8px 12px;
  cursor: pointer;
  margin-top: 10px;
}
.submit-btn:hover {
  background: #fff;
  color: #000;
}
