body
{
	padding-top: 0px;
	padding-bottom: 40px;
	color: #5a5a5a;
	background: #F5F5F5;
}

h1
{
	color: #0B7EBE;
}

h3
{
	color: #0B7EBE;
}

ul.ui-autocomplete {
    z-index: 1100;
}

/* Navigation */
.navbar.transparent.navbar-inverse
{
   background: rgba(0, 0, 0, 0.88);
}

.navbar.transparent.navbar-default
{
   background: rgba(255, 255, 255, 0.9);
}

.navbar-default .navbar-brand
{
	color: #0B7EBE;
}

.navbar-default .navbar-brand:hover,
.navbar-default .navbar-brand:focus
{
	color: #fff;
	background: none repeat scroll 0% 0% rgba(11, 126, 190, 0.9);
	text-decoration: none;
}

/* Calendar Homily */
.calendar-homily-marked
{
	background-color: #04B431;
}

/* Header */
parallax-window-header
{
	height: 500px;
	background: transparent;
}

.efgcolor
{
	color: rgba(11, 126, 190, 0.9);
}

/* Losungstexte */
.losung
{
	font-size: 16px;
	width: 100%;
	color: #FFF;
	font-style: italic;
	text-align: center;
	float: left;
	text-shadow: 2px 2px 8px #000;
}

.losung-quote
{
    line-height: 25px;
    font-weight: 600;
    margin-top: 70px;
	padding-left: 2%;
	padding-right: 2%;
    padding-bottom: 30px;
    /* Zierlinie entfernt am 01.09.2026: images/between-line-quote.png hat es nie gegeben
       (auch nicht im alten Backup). Jeder Seitenaufruf erzeugte dadurch einen 404. */
}

.losung-quote-vers
{
	line-height: 20px;
	margin-top: 20px;
	margin-bottom: 20px;
	
}

@media (min-width: 768px) {
  .losung-quote
  {
    font-size: 21px;
	padding-left: 10%;
	padding-right: 10%;
  }
  
  .losung-quote-vers
  {
	font-size: 21px;
  }
}


/* Chat */
.chat
{
	margin: 0;
	padding: 0;
	list-style: none;	
}

.chat li
{
	margin-bottom: 10px;
	padding-bottom: 5px;
	border-bottom: 1px dotted #999999;
}

/* Kalender Kachel */
.media a:active,
.media a:hover,
.media a:focus
{
	outline: none;
	text-decoration: none;
}

.calendar
{
	width: 64px;
	height: 64px;
	position: relative;
}

.calendar-hover
{
	position: absolute;
	z-index: 1;
	width: 64px;
	height: 64px;
	background-color: rgba(0, 0, 0, 0.5);
	opacity: 0;
	transition: all .25s;
	-moz-transition: all .25s; /* Firefox 4 */
	-webkit-transition: all .25s;
	transition-timing-function:ease;
	-moz-transition-timing-function:ease;
	-webkit-transition-timing-function:ease;
	cursor: pointer;
}

.calendar-hover:hover
{
	opacity: 1;
}

.calendar-hover-icon
{
	color: #FFFFFF;
	width: 64px;
	height: 64px;
	font-size: 48px;
	text-align: center;
	margin-top: 8px;
}

.header
{
	height: 14px;
	background: #0B7EBE;
	width: 100%;
	text-align: center;
	font-size: 11px;
	color: #FFF;
	line-height: 24px
}

.num-day
{
	height: 50px;
	background: #0B7EBE;
	font-size: 36px;
	font-weight: bold;
	color: #FFF;
	text-align: center;
}

/* Kalender-Tage (kleiner Monatskalender, ajax_getAppointmentsInMonth.php): einheitliches
   Farbschema (A3, 28.08.2026, 2. Nachbesserung). Drei unabhaengige Ebenen pro Tag:
   - Untergrund der ganzen Zelle: Rot = Termin (echte Veranstaltung aus t_appointment,
     NICHT Feiertag), Gruen = Gottesdienst, Rot/Gruen diagonal gestreift = beides am
     selben Tag.
   - Zwei kleine Punkte oben links, per CSS-Pseudoelement direkt auf der Zelle (KEIN
     zusaetzliches DOM-Element / kein <span> um die Zahl mehr - ein <span> dort wird
     von der Datepicker-eigenen Regel "table tr td span{display:block;height:54px}"
     erfasst, gedacht fuer die Monats-/Jahresauswahl, und macht die Zelle hochkant
     statt quadratisch. Pseudoelemente sind fuer diese Regel unsichtbar):
     blauer Punkt = Feiertag, gelber Punkt (etwas weiter rechts) = Geburtstag.
     Beide unabhaengig vom Untergrund und voneinander.
   PHP liefert je Tag die zutreffenden Klassen als Leerzeichen-Liste. */

.calendar-item-green
{
	background-color: #5CB85C !important;
	color: #FFFFFF;
}
.calendar-item-green:hover
{
	background-color: #47A447 !important;
	color: #FFFFFF;
}

.calendar-item-red
{
	background-color: #D9534F !important;
	color: #FFFFFF;
}
.calendar-item-red:hover
{
	background-color: #D2322D !important;
	color: #FFFFFF;
}

.calendar-item-stripes
{
	background-color: #D9534F !important; /* Old browsers */
    background: -moz-linear-gradient(-45deg, #D9534F, #D9534F 50%, #5CB85C 50%, #5CB85C) !important; /* FF3.6+ */
    background: -webkit-gradient(linear, left top, right bottom, color-stop(0%,#D9534F), color-stop(50%,#D9534F), color-stop(50%,#5CB85C), color-stop(100%,#5CB85C)) !important; /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(-45deg, #D9534F, #D9534F 50%, #5CB85C 50%, #5CB85C 100%) !important; /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(-45deg, #D9534F, #D9534F 50%, #5CB85C 50%, #5CB85C) !important; /* Opera 11.10+ */
    background: -ms-linear-gradient(-45deg, #D9534F, #D9534F 50%, #5CB85C 50%, #5CB85C) !important; /* IE10+ */
    background: linear-gradient(-45deg, #D9534F, #D9534F 50%, #5CB85C 50%, #5CB85C) !important; /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#D9534F', endColorstr='#5CB85C',GradientType=1 ) !important; /* IE6-9 */
	color: #FFFFFF !important;
}

/* Feiertag (blauer Punkt) und Geburtstag (gelber Punkt, daneben) - reine
   Pseudoelemente auf der Zelle, kein zusaetzliches DOM-Element noetig */
.datepicker table tr td.calendar-item-feiertag,
.datepicker table tr td.calendar-item-geburtstag
{
	position: relative;
}
.datepicker table tr td.calendar-item-feiertag::before
{
	content: "";
	position: absolute;
	top: 3px;
	left: 3px;
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background-color: #1E88E5;
	box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.85);
}
.datepicker table tr td.calendar-item-geburtstag::after
{
	content: "";
	position: absolute;
	top: 3px;
	left: 9px;
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background-color: #FFD500;
	box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.85);
}
/* Auf hellem/leerem Grund (kein Termin/Gottesdienst/Auswahl) ist der gelbe Punkt mit
   dem hellen Rand kaum zu sehen - dort stattdessen ein dunkelgelber Rand. "Heute"
   allein liefert keinen farbigen Untergrund mehr (siehe unten), zaehlt hier also
   nicht als Ausnahme. */
.datepicker table tr td.calendar-item-geburtstag:not(.calendar-item-red):not(.calendar-item-green):not(.calendar-item-stripes):not(.active)::after
{
	box-shadow: 0 0 0 1px #B8860B;
}

/* Heute: NUR die Zahl ist dunkelblau, der Untergrund bleibt die Kategorie-Farbe
   (rot/gruen/gestreift) bzw. normal ohne Kategorie - keine eigene Hintergrundfarbe. */
.datepicker table tr td.today
{
	border-color: transparent !important;
	color: #1565C0 !important;
}

/* Ausgewaehlter Tag (nicht heute): dunkelblaues Feld, ueberdeckt Rot/Gruen/Streifen,
   weisse Zahl */
.datepicker table tr td.active
{
	background: #428BCA !important;
	border-color: #428BCA !important;
	color: #FFFFFF !important;
	font-weight: bold;
}

/* Heute UND ausgewaehlt: Untergrund wechselt zu einem helleren Blau (ueberdeckt
   Rot/Gruen/Streifen), Zahl bleibt dunkelblau wie bei "nur heute" */
.datepicker table tr td.today.active
{
	background: #9FD3FF !important;
	border-color: #9FD3FF !important;
	color: #1565C0 !important;
	font-weight: bold;
}

/* MARKETING CONTENT
-------------------------------------------------- */

/* Pad the edges of the mobile views a bit */
.marketing {
  padding-right: 15px;
  padding-left: 15px;
}

/* Center align the text within the three columns below the carousel */
.marketing .col-lg-4 {
  margin-bottom: 20px;
  text-align: center;
}
.marketing h2 {
  font-weight: normal;
}
.marketing .col-lg-4 p {
  margin-right: 10px;
  margin-left: 10px;
}


/* Featurettes
------------------------- */

.featurette-divider {
  margin: 40px 0;
  border-color: #0B7EBE; /*#E6E6E6;*/
}

/* Thin out the marketing headings */
.featurette-heading {
  font-weight: 300;
  line-height: 1;
  letter-spacing: -1px;
  margin-top: 70px;
}


/* RESPONSIVE CSS
-------------------------------------------------- */

@media (min-width: 768px) {

  /* Remove the edge padding needed for mobile */
  .marketing {
    padding-right: 0;
    padding-left: 0;
  }

  /* Navbar positioning foo */
  .navbar-wrapper {
    margin-top: 20px;
  }
  .navbar-wrapper .container {
    padding-right: 15px;
    padding-left:  15px;
  }
  .navbar-wrapper .navbar {
    padding-right: 0;
    padding-left:  0;
  }

  /* The navbar becomes detached from the top, so we round the corners */
  .navbar-wrapper .navbar {
    border-radius: 4px;
  }

  /* Bump up size of carousel content */
  .carousel-caption p {
    margin-bottom: 20px;
    font-size: 21px;
    line-height: 1.4;
  }

  .featurette-heading {
    margin-top: 70px;
    font-size: 50px;
  }
}

@media (min-width: 992px) {
  .featurette-heading {
    margin-top: 70px;
  }
}

.bs-callout {
    padding: 20px;
    margin: 20px 0;
    border: 1px solid #eee;
    border-left-width: 5px;
    border-radius: 3px;
}

*.bs-callout:empty {
   padding: 20px;
   margin: 0px;
   border: none;   
}

.bs-callout h4 {
    margin-top: 0;
    margin-bottom: 5px;
}
.bs-callout p:last-child {
    margin-bottom: 0;
}
.bs-callout code {
    border-radius: 3px;
}
.bs-callout+.bs-callout {
    margin-top: -5px;
}
.bs-callout-default {
    border-left-color: #777;
}
.bs-callout-default h4 {
    color: #777;
}
.bs-callout-primary {
    border-left-color: #428bca;
}
.bs-callout-primary h4 {
    color: #428bca;
}
.bs-callout-success {
    border-left-color: #5cb85c;
}
.bs-callout-success h4 {
    color: #5cb85c;
}
.bs-callout-danger {
    border-left-color: #d9534f;
}
.bs-callout-danger h4 {
    color: #d9534f;
}
.bs-callout-warning {
    border-left-color: #f0ad4e;
}
.bs-callout-warning h4 {
    color: #f0ad4e;
}
.bs-callout-info {
    border-left-color: #5bc0de;
}
.bs-callout-info h4 {
    color: #5bc0de;
}

/* CCLI-Meldung (06.09.2026): Traegt ein Lied mehrere CCLI-Nummern, gibt es je Nummer
   einen Melde-Knopf. Auf schmalen Bildschirmen passen die dann nicht mehr neben die
   Haken-Knoepfe in die Tabellenzelle - deshalb bekommen sie dort eine eigene Zeile. */
@media (max-width: 767px) {
	.ccli-meldung .ccli-links {
		display: block;
		margin-bottom: 4px;
	}
}
