body {
  font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 20px;
  color: #E6E6E6; /* Platinum */
  background-color: #29353C; /* Dracula Orchid */
  -webkit-tap-highlight-color: transparent; /* Entfernt blaues Aufleuchten am Handy */
}

p {
  line-height: 1.5;
  margin: 30px 0;
}

p a {
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 800;
  color: #DFEBF6; /* Freeze */
}

a {
  color: #AAC7D8; /* Sonata */
  transition: color .4s;
  text-decoration: none;
}

a:hover,
a:focus {
  color: #DFEBF6; /* Freeze */
  transition: color .3s;
  outline: none;
  text-shadow: none;
}

a img:hover,
a img:focus {
  cursor: zoom-in;
  outline: none;
}

blockquote {
  color: #768A96; /* Bluish Grey */
  font-style: italic;
  border-left: 5px solid #44576D; /* InkJet */
}

hr.small {
  max-width: 100px;
  margin: 15px auto;
  border-width: 4px;
  border-color: #E6E6E6; /* Platinum */
}

/* --- NAVIGATION --- */
.navbar-custom {
  background-color: transparent !important;
  border: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.navbar-custom .navbar-brand {
  font-weight: 800;
  color: #E6E6E6; /* Platinum */
}

.navbar-custom .nav li a {
  color: #E6E6E6; /* Platinum */
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
}

/* Hamburger Icon Styling */
.navbar-custom .navbar-toggle {
  border: 1px solid #AAC7D8 !important; /* Feiner blauer Rahmen */
  background-color: transparent !important;
  margin-top: 15px;
  outline: none !important;
}

.navbar-custom .navbar-toggle .icon-bar {
  background-color: #AAC7D8; /* Blaue Striche */
  height: 3px; 
  border-radius: 2px;
}

.navbar-custom .navbar-toggle:hover,
.navbar-custom .navbar-toggle:focus,
.navbar-custom .navbar-toggle:active {
  background-color: transparent !important;
  outline: none !important;
  box-shadow: none !important;
}

/* --- MOBILES MENÜ & HEADER FIXES (max-width: 767px) --- */
@media only screen and (max-width: 767px) {
  
  /* Menü-Container: Transparent und ohne Rahmen/Schatten */
  .navbar-custom .navbar-collapse {
    background-color: transparent !important;
    border: none !important;       
    box-shadow: none !important;
    margin-top: 10px; 
    padding-top: 10px;
    padding-bottom: 10px;
  }
  
  /* Menü-Links: Hintergrund transparent zwingen, auch beim Klicken */
  .navbar-custom .nav li a {
    color: #E6E6E6 !important;
    background-color: transparent !important; /* WICHTIG: Kein schwarzer Kasten */
    padding: 10px 15px;
    text-align: center;
    border: none !important; 
    outline: none !important;
  }
  
  /* Verhindert Hintergrundfarbe beim Antippen (Active/Focus) */
  .navbar-custom .nav li a:hover,
  .navbar-custom .nav li a:focus,
  .navbar-custom .nav li a:active {
    background-color: transparent !important;
    color: #AAC7D8 !important; /* Sonata Blau beim Antippen */
    outline: none !important;
  }

  /* Header: Platz für das Logo schaffen */
  .intro-header .site-heading,
  .intro-header .page-heading {
    padding: 120px 0 50px !important; /* Mehr Abstand oben */
  }

  /* Header: Schriftgröße verkleinern */
  .intro-header .site-heading h1,
  .intro-header .page-heading h1 {
    font-size: 30px !important;
    margin-top: 0;
  }
}

/* --- DESKTOP NAVIGATION (ab 768px) --- */
@media only screen and (min-width: 768px) {
  .navbar-custom {
    background: transparent;
    border-bottom: 1px solid transparent;
  }

  .navbar-custom .navbar-brand {
    color: #E6E6E6;
    padding: 20px;
  }

  .navbar-custom .navbar-brand:hover,
  .navbar-custom .navbar-brand:focus {
    color: #AAC7D8; /* Sonata */
  }

  .navbar-custom .nav li a {
    color: #E6E6E6;
    padding: 20px;
  }

  .navbar-custom .nav li a:hover {
    color: #AAC7D8; /* Sonata */
  }
}

/* --- ANIMIERTE NAVIGATION (ab 1170px) --- */
@media only screen and (min-width: 1170px) {
  .navbar-custom {
    -webkit-transition: background-color 0.3s;
    -moz-transition: background-color 0.3s;
    transition: background-color 0.3s;
    /* Force Hardware Acceleration */
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }

  .navbar-custom.is-fixed {
    position: fixed;
    top: -61px;
    background-color: rgba(41, 53, 60, 0.95); /* Dracula Orchid fast deckend */
    border-bottom: 1px solid #44576D;
    -webkit-transition: -webkit-transform 0.3s;
    -moz-transition: -moz-transform 0.3s;
    transition: transform 0.3s;
  }

  .navbar-custom.is-fixed .navbar-brand {
    color: #E6E6E6;
  }

  .navbar-custom.is-fixed .navbar-brand:hover {
    color: #AAC7D8;
  }

  .navbar-custom.is-fixed .nav li a {
    color: #E6E6E6;
  }

  .navbar-custom.is-fixed .nav li a:hover {
    color: #AAC7D8;
  }

  .navbar-custom.is-fixed .nav li a:active {
    color: #DFEBF6;
  }

  .navbar-custom.is-visible {
    -webkit-transform: translate3d(0, 100%, 0);
    -moz-transform: translate3d(0, 100%, 0);
    -ms-transform: translate3d(0, 100%, 0);
    -o-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

/* --- HEADER AREA --- */
.intro-header {
  background: no-repeat center center;
  background-color: #44576D; /* InkJet */
  background-attachment: scroll;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
  margin-bottom: 50px;
}

/* Desktop Header Padding */
@media only screen and (min-width: 768px) {
  .intro-header .site-heading,
  .intro-header .post-heading,
  .intro-header .page-heading {
    padding: 150px 0;
  }
}

.intro-header .site-heading,
.intro-header .page-heading {
  text-align: center;
}

.intro-header .site-heading h1,
.intro-header .page-heading h1 {
  margin-top: 0;
  font-size: 50px;
  text-shadow: 2px 2px 4px #29353C;
}

.intro-header .site-heading .subheading,
.intro-header .page-heading .subheading {
  font-size: 24px;
  line-height: 1.1;
  display: block;
  font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 300;
  margin: 10px 0 0;
  text-shadow: 1px 1px 4px #29353C;
}

@media only screen and (min-width: 768px) {
  .intro-header .site-heading h1,
  .intro-header .page-heading h1 {
    font-size: 80px;
    text-shadow: 2px 2px 4px #29353C;
  }
}

.intro-header .post-heading h1 {
  font-size: 35px;
}

.intro-header .post-heading .subheading,
.intro-header .post-heading .meta {
  line-height: 1.1;
  display: block;
}

.intro-header .post-heading .subheading {
  font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 24px;
  margin: 10px 0 30px;
  font-weight: 600;
  text-shadow: 1px 1px 4px #29353C;
}

.intro-header .post-heading .meta {
  font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-style: italic;
  text-shadow: 1px 1px 4px #29353C;
  font-size: 20px;
}

.intro-header .post-heading .meta a {
  color: #E6E6E6;
}
.intro-header .post-heading .meta a:hover {
  color: #AAC7D8;
}

@media only screen and (min-width: 768px) {
  .intro-header .post-heading h1 {
    font-size: 55px;
  }

  .intro-header .post-heading .subheading {
    font-size: 30px;
    text-shadow: 1px 1px 4px #29353C;
  }
}

/* --- POSTS --- */
.post-preview > a {
  color: #E6E6E6;
}

.post-preview > a:hover,
.post-preview > a:focus {
  text-decoration: none;
  color: #AAC7D8; /* Sonata */
}

.post-preview > a > .post-title {
  font-size: 30px;
  margin-top: 30px;
  margin-bottom: 10px;
}

.post-preview > a > .post-subtitle {
  margin: 0;
  font-weight: 300;
  margin-bottom: 10px;
  color: #DFEBF6; /* Freeze */
}

.post-preview > .post-meta {
  color: #768A96; /* Bluish Grey */
  font-size: 18px;
  font-style: italic;
  margin-top: 0;
}

.post-preview > .post-meta > a {
  text-decoration: none;
  color: #AAC7D8;
}

.post-preview > .post-meta > a:hover,
.post-preview > .post-meta > a:focus {
  color: #DFEBF6;
  text-decoration: underline;
}

@media only screen and (min-width: 768px) {
  .post-preview > a > .post-title {
    font-size: 36px;
  }
}

.section-heading {
  font-size: 36px;
  margin-top: 60px;
  font-weight: 700;
  color: #DFEBF6;
}

.caption {
  text-align: center;
  font-size: 14px;
  padding: 10px;
  font-style: italic;
  margin: 0;
  display: block;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  color: #768A96;
}

footer {
  margin: -30px 0 0px;
  color: #768A96;
}

footer .list-inline {
  margin: 0;
  padding: 0;
}

footer .copyright {
  font-size: 14px;
  text-align: center;
  margin-bottom: 0;
}

/* --- FORMS --- */
.floating-label-form-group {
  font-size: 14px;
  position: relative;
  margin-bottom: 0;
  padding-bottom: 0.5em;
  border-bottom: 1px solid #768A96;
}

.floating-label-form-group input,
.floating-label-form-group textarea {
  z-index: 1;
  position: relative;
  padding-right: 0;
  padding-left: 0;
  border: none;
  border-radius: 0;
  font-size: 1.5em;
  background: none;
  box-shadow: none !important;
  resize: none;
  color: #E6E6E6;
}

.floating-label-form-group label {
  display: block;
  z-index: 0;
  position: relative;
  top: 2em;
  margin: 0;
  font-size: 0.85em;
  line-height: 1.764705882em;
  vertical-align: middle;
  vertical-align: baseline;
  opacity: 0;
  -webkit-transition: top 0.3s ease,opacity 0.3s ease;
  -moz-transition: top 0.3s ease,opacity 0.3s ease;
  -ms-transition: top 0.3s ease,opacity 0.3s ease;
  transition: top 0.3s ease,opacity 0.3s ease;
  color: #768A96;
}

.floating-label-form-group::not(:first-child) {
  padding-left: 14px;
  border-left: 1px solid #768A96;
}

.floating-label-form-group-with-value label {
  top: 0;
  opacity: 1;
}

.floating-label-form-group-with-focus label {
  color: #AAC7D8;
}

form .row:first-child .floating-label-form-group {
  border-top: 1px solid #768A96;
}

/* --- BUTTONS & PAGER --- */
.btn {
  font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1px;
  border-radius: 0;
  padding: 15px 25px;
}

.btn-lg {
  font-size: 16px;
  padding: 25px 35px;
}

.btn-default {
  background-color: #E6E6E6;
  color: #29353C;
  border: 1px solid #E6E6E6;
}

.btn-default:hover,
.btn-default:focus {
  background-color: #768A96;
  border: 1px solid #768A96;
  color: white;
}

.pager {
  margin: 20px 0 0;
}

.pager li > a,
.pager li > span {
  font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 10px 5px;
  background-color: #44576D;
  border: 1px solid #44576D;
  color: #E6E6E6;
}

.pager li > a:hover,
.pager li > a:focus {
  color: #29353C;
  background-color: #AAC7D8;
  border: 1px solid #AAC7D8;
}

.pager .disabled > a,
.pager .disabled > a:hover,
.pager .disabled > a:focus,
.pager .disabled > span {
  color: #768A96;
  background-color: #29353C;
  cursor: not-allowed;
  border-color: #44576D;
}

/* --- SELECTION & MISC --- */
::-moz-selection {
  color: #29353C;
  text-shadow: none;
  background: #AAC7D8;
}

::selection {
  color: #29353C;
  text-shadow: none;
  background: #AAC7D8;
}

img::selection {
  color: white;
  background: transparent;
}

img::-moz-selection {
  color: white;
  background: transparent;
}

.fa-stack-2x {
  color: #44576D;
}

/* --- PRICING PAGE STYLES --- */
.pricing-card {
    background-color: #44576D; 
    border: 1px solid #768A96;
    border-radius: 5px;
    padding: 0;
    margin-bottom: 30px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    border-color: #AAC7D8; 
}

.pricing-header {
    background-color: rgba(0,0,0,0.2);
    padding: 20px;
    border-bottom: 1px solid #768A96;
}

.pricing-header h3 {
    margin: 0;
    font-size: 24px;
    color: #DFEBF6; 
}

.pricing-header .price {
    font-size: 32px;
    font-weight: 800;
    color: #AAC7D8; 
    margin-top: 10px;
}

.pricing-body {
    padding: 20px;
}

.pricing-body .text-muted {
    color: #AAC7D8; 
    font-style: italic;
    margin-bottom: 20px;
}

.pricing-body ul {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
    text-align: left; 
    margin-left: 10px;
}

.pricing-body ul li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    color: #E6E6E6;
    font-size: 16px;
}

.pricing-body ul li i {
    color: #AAC7D8; 
    margin-right: 10px;
    width: 20px;
}

.pricing-card.featured {
    border: 2px solid #AAC7D8; 
    background-color: #495d75; 
}

.pricing-card.featured .pricing-header {
    background-color: rgba(170, 199, 216, 0.1); 
}

.tour-placeholder {
    background-color: #222;
    border: 2px dashed #768A96;
    border-radius: 5px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px 0;
    color: #768A96;
}

.tour-content {
    text-align: center;
}
.tour-content i {
    margin-bottom: 15px;
    color: #AAC7D8;
}

/* LIGHTBOX BUTTON STYLES (Optional: Falls du die Buttons in der Lightbox behalten willst)
   Diese Styles sind nützlich, falls du im Slider auf ein Bild klickst und es in der Lightbox öffnest.
*/
.lightbox-nav-container {
    padding-top: 10px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.2);
    margin-top: 10px;
}
.lb-btn {
    background: transparent;
    border: 1px solid #AAC7D8;
    color: #fff;
    padding: 5px 15px;
    margin: 0 5px;
    font-size: 14px;
    cursor: pointer;
    border-radius: 3px;
    transition: all 0.2s;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.lb-btn:hover {
    background: #AAC7D8;
    color: #000;
}
.lb-btn-close {
    border-color: #fff;
    font-weight: bold;
}
.lb-title {
    display: block;
    font-size: 16px;
    color: #AAC7D8;
    margin-bottom: 10px;
}