/* ==========================================================
   Bellemann - Global Styles
   Base theme styles (Typography, Links, Buttons, Layout, Footer)
   Notes for developers:
   - Optimized for readability (older user audience).
   - Keep base font >=16px for accessibility.
========================================================== */

.entry-content {
    padding-bottom: 0 !important;
}

/* ----------------------------
   Base Typography
----------------------------- */
body {
  font-family: "Gotham Pro", Arial, sans-serif !important;
  font-size: clamp(16px, 1.1vw, 17px); /* min 16px, scales slightly */
  font-weight: 400;
  line-height: 1.7;
  color: #000;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
}

/* Headings (responsive, consistent spacing) */
h1, h2, h3, h4, h5, h6 {
  font-family: "Gotham Pro", Arial, sans-serif !important;
  font-weight: 700;
  color: #000;
  line-height: 1.3;
  margin: 0;
}

h1 { font-size: clamp(26px, 3.8vw, 34px); }
h2 { font-size: clamp(22px, 3.3vw, 28px); }
h3 { font-size: clamp(19px, 2.8vw, 24px); }
h4 { font-size: clamp(17px, 2.3vw, 21px); }
h5 { font-size: clamp(16px, 2vw, 19px); }
h6 { font-size: clamp(15px, 1.8vw, 17px); }

/* ----------------------------
   Links
----------------------------- */
a {
  color: #C7A600; /* gold (default) */
  text-decoration: underline;
  transition: color 0.3s ease;
}
a:hover {
  color: #FFD800; /* bright yellow highlight */
  text-decoration: underline;
}


/* ----------------------------
   Buttons
----------------------------- */
.bellemann-btn {
  display: inline-block;
  padding: 16px 38px;
  font-size: clamp(15px, 1.1vw, 17px);
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  box-sizing: border-box;
  transition: all 0.3s ease;
  text-align: center;
  text-decoration: none
}

.bellemann-btn:hover {
  text-decoration: none;
}

/* Primary Button */
.bellemann-btn--primary {
  background: #FFD800;
  color: #000;
}
.bellemann-btn--primary:hover {
  background: #FFCC00;
  color: #000;
}

/* Secondary Button */
.bellemann-btn--secondary {
  background: transparent;
  border: 2px solid #FFD800;
  color: #000;
}
.bellemann-btn--secondary:hover {
  background: #FFD800;
  color: #000;
}

/* Button Group (flex on desktop, stack on mobile) */
.bellemann-btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 20px;
}
@media (max-width: 768px) {
  .bellemann-btn-group {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }
  .bellemann-btn {
    width: 100%;
  }
}

/* ==========================================================
   Bellemann - Section Headings
   Unified style for all block titles with underline
========================================================== */

.bellemann-section__header {
  text-align: center;
  margin-bottom: 40px;
}

.bellemann-section__header h2 {
  text-transform: uppercase;
  line-height: 1.3;
}

.bellemann-section__underline {
  display: inline-block;
  width: 60px;
  height: 4px;
  background: #FFD800;
}

/* ----------------------------
   Favorites (Heart Button)
----------------------------- */
.bellemann-car-like-btn {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
}
.bellemann-car-like-btn i {
  color: #FFD800;
}
.bellemann-car-like-btn.active i {
  font-weight: bold;
  color: #FFD800;
}

/* Grid positioning (list view) */
.bellemann-autos__image .bellemann-car-like-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 3;
  padding: 6px;
  background: rgba(0,0,0,0.6);
  border-radius: 50%;
  line-height: 1;
}

/* Overlay heart (single car view) */
.bellemann-single__mainimg .bellemann-car-like-btn {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 3;
  padding: 8px;
  font-size: 22px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  line-height: 1;
}
.bellemann-single__mainimg .bellemann-car-like-btn i {
  color: #FFD800;
}


/* ==========================================================
   Bellemann - Global Form Styles
   All forms share same look.
========================================================== */

.bellemann-form {
  display: grid;
  gap: 16px;

  /* unified wrapper */
  background: #f7f7f7;
  padding: 2rem;
  border: 1px solid #ddd;
  border-radius: 0; /* sharp corners for consistency */
}

.bellemann-form h2 {
  text-align: center;
}

.bellemann-form label {
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
  font-size: 15px;
}

/* Inputs */
.bellemann-form input,
.bellemann-form select,
.bellemann-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ccc;
  border-radius: 0; /* no rounded corners */
  font-size: 16px;
  font-family: "Gotham Pro", Arial, sans-serif;
  background: #fff;
  color: #000;
  box-sizing: border-box;
  transition: border-color 0.2s ease;
}

.bellemann-form input:focus,
.bellemann-form select:focus,
.bellemann-form textarea:focus {
  border-color: #FFD800;
  outline: none;
}

.bellemann-form ::placeholder {
  color: #666;
  font-size: 16px;
  font-weight: 400;
}

/* Submit button — unified with primary button */
.bellemann-form input[type="submit"],
.bellemann-form button[type="submit"],
.bellemann-form .wpcf7-submit,
.bellemann-form .bellemann-btn {
  display: inline-block;
  width: fit-content;
  padding: 16px 38px;
  font-size: clamp(15px, 1.1vw, 17px);
  font-weight: 700;
  text-transform: uppercase;
  border: none;
  border-radius: 0; /* sharp corners */
  cursor: pointer;
  background: #FFD800;
  color: #000;
  transition: all 0.3s ease;
  text-align: center;
  text-decoration: none;
}

.bellemann-form input[type="submit"]:hover,
.bellemann-form button[type="submit"]:hover,
.bellemann-form .wpcf7-submit:hover,
.bellemann-form .bellemann-btn:hover {
  background: #FFCC00;
  color: #000;
}

.hinweiss {
  font-size: clamp(16px, 1.1vw, 17px); /* same as body */
  line-height: 1.7; /* same rhythm */
  color: #666; /* softer than main text */
  margin-top: 0.5rem; /* tight spacing under fields */
  display: block;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .bellemann-form input[type="submit"],
  .bellemann-form button[type="submit"],
  .bellemann-form .wpcf7-submit,
  .bellemann-form .bellemann-btn {
    width: 100%;
    text-align: center;
  }
}

/* ----------------------------
   Layout Container
----------------------------- */
.bellemann-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}


/* ==========================================================
   Bellemann - Favoriten Page
========================================================== */
.bellemann-favoriten-wrapper {
  max-width: 1200px;
  margin: 3rem auto;
  padding: 2rem 1rem;
}

@media (max-width: 600px) {
  .bellemann-favoriten-wrapper {
    margin: 2rem auto;
    padding: 1.5rem 1rem;
  }
}


/* ==========================================================
   Bellemann - Footer
   3-row structure: Info (top), Reviews (middle), Copy/Nav (bottom)
========================================================== */
.bellemann-footer {
  background: #1a1a1a;
  color: #fff;
  padding: 60px 20px 30px;
  font-size: 15px;
  line-height: 1.6;
}

/* Section Titles */
.bellemann-footer h3 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Paragraphs in footer */
.bellemann-footer p {
  color: rgba(255,255,255,0.75);
}

/* Links in footer */
.bellemann-footer a {
  color: #C7A600;
  text-decoration: none;
  transition: color 0.3s ease;
}
.bellemann-footer a:hover {
  color: #FFD800;
  text-decoration: underline;
}

/* Top: 3-column grid */
.bellemann-footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  padding-bottom: 30px;
}

/* Middle: Review cards */
.bellemann-footer-reviews {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

/* Bottom: copyright + nav + socials */
.bellemann-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 20px;
  font-size: 14px;
  color: #aaa;
  flex-wrap: wrap;
  gap: 12px;
}

.bellemann-footer-copy {
  flex: 1;
  text-align: center;
}

/* Footer navigation */
.bellemann-footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.bellemann-footer-nav ul,
.bellemann-footer-nav li {
  margin: 0;
  padding: 0;
  list-style: none;
}
.bellemann-footer-nav a {
  font-weight: 500;
  font-size: 14px;
}

/* Footer socials */
.bellemann-footer-social {
  display: flex;
  gap: 15px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.bellemann-footer-social a {
  font-size: 16px;
  color: #C7A600;
  transition: color 0.3s ease;
}
.bellemann-footer-social a:hover {
  color: #FFD800;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .bellemann-footer {
    text-align: center;
  }
  .bellemann-footer-top {
    gap: 30px;
  }
  .bellemann-footer-bottom {
    flex-direction: column;
    gap: 12px;
  }
  .bellemann-footer-copy {
    order: 3;
    margin-top: 10px;
  }
  .bellemann-footer-nav {
    justify-content: center;
    text-align: center;
  }
}


.fav-link {
  display: inline-flex !important;
  align-items: center !important;
  gap: 4px !important;
  }

.fav-link i {
  font-size: 18px !important;
 }

.fav-link span {
  font-size: 14px !important;
  }


/* Default: desktop – heart on the right */
.main-navigation {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.main-navigation .fav-link {
  margin-left: 20px;
  order: 2; /* after menu */
}
.main-navigation .menu-toggle {
  order: 1;
}

/* Mobile – heart before hamburger */
@media (max-width: 991px) {
  .main-navigation .fav-link {
    order: 0; /* before hamburger */
    margin-left: 0;
  }
  .main-navigation .menu-toggle {
    order: 1;
  }
}

/* Mobile logo adjustments */
@media (max-width: 767px) {
  .site-branding {
    display: flex;
    align-items: center;   /* vertical centering */
    height: 60px;          /* match your header height */
  }

  .site-branding img {
    max-width: 200px;      /* shrink logo */
    height: auto;          /* keep proportions */
  }
}


.nav-menu {
  z-index: 9999 !important;
  position: relative;
}


body.no-scroll {
  overflow: hidden;
}
