/*
 Theme Name:   MRW
 Theme URI:    https://mikerueffert.de
 Description:  Mike Rüffert Websesign
 Author:       Mike Rüffert
 Author URI:   https://mikerueffert.de
 Template:     mikerueffert
 Version:      1.0
*/

/* --------------------------
   Eigene CSS-Anpassungen
--------------------------- */

/* --------------------------
   Footer Städte Wrapper
--------------------------- */
.footer-cities-wrapper {
    text-align: center;       /* Alles horizontal zentrieren */
    font-family: inherit;     /* Theme-Standard-Schriftart */
	margin-top: -25px;
}

/* --------------------------
   RS-Heading Überschrift
--------------------------- */
.footer-cities-wrapper .title-inner,
.footer-cities-wrapper .footer-cities-title {
    text-align: center;
    color: #ffffff !important; /* weiß */
	font-size: 20px;
	padding-bottom: 15px;
}

.footer-cities-wrapper .title-inner .title,
.footer-cities-wrapper .footer-cities-title h3 {
    font-weight: inherit;      /* Theme Standardgewicht */
    font-size: inherit;        /* Theme Standardgröße */
    color: #ffffff !important; /* weiß */
    margin-bottom: 10px;
}

/* --------------------------
   Footer Städte Menü
--------------------------- */
.footer-cities-container {
    margin: 12px 0;
    text-align: center;        /* horizontal zentrieren */
    font-size: 0.95rem;
}

.footer-cities-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: inline-flex;      /* horizontal */
    flex-wrap: wrap;
    justify-content: center;   /* zentrieren */
}

/* Punkte zwischen den <li> */
.footer-cities-menu li {
    display: inline;           /* horizontal */
    position: relative;
}

.footer-cities-menu li + li::before {
    content: "•";              /* Punkt als Trenner */
    margin: 0 8px;
    color: #CE1446;                /* Punkt in rot */
    font-weight: bold;
}
@media screen and (max-width: 768px) {
  .footer-cities-menu li + li::before {
    margin: 0 !important;
  }
}

/* Links */
.footer-cities-menu a {
    text-decoration: none;
    color: inherit;            /* Theme-Standardfarbe */
    padding: 4px 6px;
    transition: opacity .15s, color .15s;
}

.footer-cities-menu a:hover,
.footer-cities-menu a:focus {
    opacity: 0.9;
}

/* --------------------------
   Responsive
--------------------------- */
@media (max-width: 600px) {
    .footer-cities-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 4px;
        font-size: 0.9rem;
    }
}
/* --------------------------
   Horizontale Trennlinie über Überschrift
--------------------------- */
.footer-cities-separator {
    width: 100%;
    height: 1px; /* Höhe der Linie */
    margin-bottom: 15px; /* Abstand zur Überschrift */
    background: linear-gradient(to right, rgba(0,0,0,0), #ce1446, rgba(0,0,0,0));
}
/* ---- Separator: in Customizer (Additional CSS) einfügen) ---- */
:root{
  --mr-sep-color: #ce1446;   /* Akzentfarbe */
  --mr-sep-height: 1px;      /* Linienhöhe */
  --mr-sep-gap: 15px;        /* Abstand unterhalb */
}

/* Hauptklasse für den Separator */
.mr-separator{
  width: 100%;
  height: var(--mr-sep-height);
  margin: 0 0 var(--mr-sep-gap) 0;   /* oben 0, unten gap */
  background: linear-gradient(
    to right,
    rgba(0,0,0,0),
    var(--mr-sep-color),
    rgba(0,0,0,0)
  );
  border: 0;            /* falls <hr> standard border hat */
  padding: 0;
  display: block;
}

/* optional: etwas Abstand oben, wenn du ihn brauchst */
.mr-separator--spaced {
  margin-top: 15px;
}

/* responsive: falls du auf sehr schmalen Bildschirmen die Linie dicker willst */
@media (max-width: 420px){
  .mr-separator{ height: calc(var(--mr-sep-height) * 1.5); }
}
