@charset "utf-8";
/* CSS Document */

/* --- WienGuide Externes Stylesheet --- */

/* Allgemeine Styles */
body {
	margin:0;
	font-family:'Inter', sans-serif;
	background:#f5f5f5;
	color:#333;
}

a,
a:visited,
a:hover,
a:active {
   text-decoration: none;
  color: #900;
}

.logo {
	font-size:1.5rem;
	font-weight:700;
	color:#d00000;
}
/* Header Sticky */
header {
  position: sticky;
  top: 0;
  background: #ffffffcc;
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  height: 64px;
}

/* Logo + Hamburger */
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center; /* <-- das sorgt für vertikale Zentrierung */
  padding: 0 15px;
  height: 64px;       /* optional: feste Header-Höhe */
    background: #ffffffcc;
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* Header Sticky */



/* NAV MENU */
#nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  background: #fff;
  position: relative;
}

#nav-menu > li {
  position: relative;
}

#nav-menu > li > a {
  display: block;
  padding: 14px 20px;
  text-decoration: none;
  color: #000;
}

/* -------------------------
   Desktop Dropdowns
------------------------- */

  /* Desktop Menü Sticky unter Header */
@media(min-width: 768px){
  nav {
    position: sticky;
    top: 64px; /* Höhe des Headers anpassen */
    z-index: 1000;
    display: flex;
    justify-content: flex-end; /* rechtsbündig */
    background: #fff;           /* Menü Hintergrund */
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  }

  #nav-menu {
    display: flex;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  #nav-menu > li {
    position: relative;
  }

  #nav-menu > li > a {
    padding: 14px 20px;
    color: #000;
    text-decoration: none;
  }

  /* Desktop Dropdowns */
  .submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 180px;
    background: #333;
    color: #fff;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    z-index: 2000;
  }

  .submenu li a {
    display: block;
    padding: 10px 16px;
    color: #fff;
  }

  .submenu li a:hover {
    background: #444;
  }

  /* Hover zeigt Dropdown */
  .has-submenu:hover > .submenu {
    display: block;
  }
   /* Hamburger unsichtbar auf Desktop */
  .menu-toggle {
    display: none;
  }
}



/* -------------------------
   Mobile
------------------------- */
@media(max-width: 767px){
  .menu-toggle {
    display: block;
  }

  #nav-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #fff;
  }

  #nav-menu.show {
    display: flex;
  }

  /* Mobile Untermenüs */
  .submenu {
    display: none;
    position: relative;
    top: 0;
    box-shadow: none;
  }

  .submenu.show {
    display: block;
  }
}

/* Content */
.content {
  max-width: 1200px;
  margin: 3rem auto;
  padding: 0 1.5rem;
}


/* Hero */
.hero {
	padding:6rem 1.5rem;
	text-align:center;
	color:white;
	background-color: #FFF;
	background-image: url(../images/back.jpg);
	background-repeat: no-repeat;
	background-position: center;
}
.hero h1 {
	font-size:3rem;
	font-weight:700;
	margin-bottom:1rem;
	text-shadow:0 2px 6px rgba(0,0,0,0.4);
}
.hero p {
	font-size:1.2rem;
	font-weight:300;
	max-width:600px;
	margin:0 auto;
	text-shadow:0 2px 6px rgba(0,0,0,0.4);
}
/* Content */
.content {
	max-width:1200px;
	margin:3rem auto;
	padding:0 1.5rem;
}
/* =========================
   GUIDE GRID – FIXES
========================= */

.guide-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 1.5rem;
}
.guide-card {
	background: #fff;
	border-radius: 14px;
	padding: 1.2rem 1rem;
	text-align: center;
	box-shadow: 0 8px 22px rgba(0,0,0,0.08);
}
/* verhindert alte span / a styles */
.guide-card * {
	box-sizing: border-box;
}
.guide-card img {
	width: 110px;
	height: 110px;
	object-fit: cover;
	border-radius: 50%;
 margin-bottom: .75rem;
	display: block;
	margin-left: auto;
	margin-right: auto;
}
.guide-card h3 {
 margin: .3rem 0 .4rem;
	font-size: 1.05rem;
	font-weight: 600;
	color: #c40000;
}
.guide-card .guide-links {
	display: flex;
	justify-content: center;
 gap: .75rem;
 margin-top: .5rem;
}
.guide-card .guide-links a {
	display: inline-flex;   /* wichtig! */
	align-items: center;
 gap: .25rem;
 font-size: .9rem;
	text-decoration: none;
	color: #333;
}
.guide-card .guide-langs {
 margin-top: .4rem;
 font-size: .9rem;
}
.error {
	color:#a00;
}
/* --- Footer --- */
.site-footer {
	background:#efefef;
	color:# 900;
	padding:2rem 1.5rem;
	margin-top:3rem;
}
.footer-container {
	max-width:1200px;
	margin:0 auto;
	display:flex;
	flex-wrap:wrap;
	justify-content:space-between;
	align-items:center;
	gap:1rem;
}
.site-footer nav ul {
	display:flex;
	gap:1rem;
	list-style:none;
	padding:0;
	margin:0;
}
.site-footer nav a {
	color:#eee;
	text-decoration:none;
	font-size:0.95rem;
}
.site-footer nav a:hover {
	text-decoration:underline;
}
@media (max-width:720px) {
.footer-container {
	flex-direction:column;
	text-align:center;
}
.site-footer nav ul {
	justify-content:center;
}
}
/* Guide Detail */

.guide-detail {
	max-width:900px;
	margin:2rem auto;
	padding:0 1.5rem;
}
.guide-header {
	display:flex;
	flex-wrap:wrap;
	gap:1.5rem;
	align-items:flex-start;
	text-decoration:none;
}
.guide-avatar-large {
	width:200px;
	height:200px;
	object-fit:cover;
	border-radius:12px;
	box-shadow:0 6px 18px rgba(0,0,0,0.08);
}
.guide-info {
	flex:1;
}
.guide-name {
	font-size:1.4rem;
	color:#d00000;
	margin-bottom:0.5rem;
	text-decoration:none;
}
.guide-contact {
	display:flex;
	gap:0.75rem;
	margin-bottom:0.5rem;
	flex-wrap:wrap;
	text-decoration:none;
}
.guide-action {
	text-decoration:none;
	color:#333;
	padding:0.25rem 0.5rem;
	border-radius:6px;
	transition:0.15s;
}
.guide-action:hover {
	background:rgba(208,0,0,0.06);
}
.guide-langs {
	font-size:1.1rem;
	margin-top:0.5rem;
}
.guide-bio {
	margin-top:2rem;
	line-height:1.6;
	font-size:1rem;
	color:#333;
}
@media (max-width:720px) {
.guide-header {
	flex-direction:column;
	align-items:center;
	text-align:center;
}
.guide-info {
	width:100%;
}
}
/* Responsive Layout */
.two-column {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
}
 @media (max-width: 768px) {
.two-column {
	grid-template-columns: 1fr;
}
.gutschein-img {
	width: 100%;
	height: auto;
}
}
/* Gutschein Box */
.gutschein-box {
	background: #fff;
	padding: 2rem;
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.08);
	margin-top: 2rem;
}
.gutschein-form .form-group {
	margin-bottom: 1.5rem;
}
.gutschein-form select {
	padding: 0.6rem;
	font-size: 1rem;
	border-radius: 6px;
	border: 1px solid #ccc;
	width: 100%;
}
/* Moderner PayPal Button */
.paypal-modern {
	width: 100%;
	padding: 0.9rem 1.2rem;
	font-size: 1.1rem;
	background: #ffc439;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	font-weight: bold;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	transition: background 0.3s ease;
}
.paypal-modern:hover {
	background: #ffdd66;
}
.paypal-logo {
	font-weight: bold;
	font-size: 1.2rem;
}
.folder-section {
	padding: 2rem;
}
.folder-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 1.5rem;
}
.folder-card {
	background: #fff;
	padding: 1rem;
	border-radius: 12px;
	box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.folder-card h2 {
	font-size: 1.2rem;
	margin-bottom: 0.5rem;
}
.folder-card .btn {
	display: inline-block;
	margin: 0.3rem 0;
	padding: 0.5rem 1rem;
	background: #e63946;
	color: #fff;
	text-decoration: none;
	border-radius: 6px;
	transition: background 0.3s;
}
.folder-card .btn:hover {
	background: #d62828;
}
/* =========================
   TOUR GRID
========================= */

.tour-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem;
	margin-top: 2rem;
}
 @media (max-width: 900px) {
.tour-grid {
	grid-template-columns: 1fr;
}
}
.tour-card {
	background: #fff;
	border-radius: 18px;
	padding: 1.6rem;
	box-shadow: 0 12px 28px rgba(0,0,0,.08);
	display: flex;
	flex-direction: column;
	 justify-content: space-between; /* Text oben, Button unten */
}
.tour-card-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.tour-date {
	font-weight: 600;
}
.card-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
}
.themen-buttons {
    display: flex;
    flex-direction: column;   /* WICHTIG */
    gap: 1rem;                /* 5rem ist extrem viel */
    margin-top: 1rem;

}

.btn-primary {
	background: #b30000;
    color: #FFF !important;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    text-decoration: none;
    font-size: 0.9rem;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    /* width: auto; /* wichtig: nicht 100% */
}

@media (min-width: 600px) {
    .themen-buttons {
        flex-direction: row;
        flex-wrap: wrap;
    }
}
 @media (max-width: 768px) {
.card-grid {
	grid-template-columns: 1fr;
}

}
.badge-new {
	position: absolute;
	top: 1rem;
	right: 1rem;
	background: #d62828;
	color: #fff;
	font-size: 0.75rem;
	padding: 0.25rem 0.6rem;
	border-radius: 999px;
	text-transform: uppercase;
	font-weight: 600;
}
.tour-card {
	position: relative;
}
/* Links in den Guide Cards */
.card-grid .tour-card a {
    text-decoration: none;   /* Kein Underline */
    color: inherit;          /* Gleiche Farbe wie Text */
}
.tour-card.inactive {
	opacity: 0.75;
}
.tour-time {
 font-size: .9rem;
	color: #666;
}
.guide-avatar {
	width: 72px;
	height: 72px;
	border-radius: 50%;
	object-fit: cover;
}
.tour-title {
 margin: 1rem 0 .6rem;
	color: #b30000;
}
.alert-danger {
	background: #ffe5e5;
	color: #900;
 padding: .6rem .8rem;
	border-radius: 8px;
 margin: .8rem 0;
}

.guide-header {
	display: flex;
	gap: 2rem;
	align-items: center;
}
.guide-avatar-large {
	width: 140px;
	height: 140px;
	border-radius: 50%;
	object-fit: cover;
}
.guide-languages {
	display: flex;
	flex-wrap: wrap;
 gap: .5rem;
 margin-top: .6rem;
}
.lang-chip {
	background: #eee;
 padding: .3rem .7rem;
	border-radius: 999px;
 font-size: .85rem;
}
.lang-chip.extra {
	background: #ffe5e5;
}
 @media (max-width: 700px) {
.guide-header {
	flex-direction: column;
	text-align: center;
}
}
.card-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
}
 @media (max-width: 800px) {
.card-grid {
	grid-template-columns: 1fr;
}
}
.info-box {
	background: #f8f9fa;
	border-left: 4px solid #c8102e;
	padding: 1rem 1.25rem;
	margin: 1.5rem 0;
	border-radius: 8px;
	font-size: 0.95rem;
}
.tour-fdm {
	background: linear-gradient(135deg, #fff, #fff6f6);
}
.badge-special {
	background: #c8102e;
	color: #fff;
	padding: 0.25rem 0.6rem;
	border-radius: 999px;
	font-size: 0.75rem;
	font-weight: 600;
}
.mobile-only {
	display:none
}
.desktop-only {
	display:block
}
@media(max-width:768px) {
.mobile-only {
	display:block
}
.desktop-only {
	display:none
}
}
.tour-slider {
	display:flex;
	overflow-x:auto;
	gap:1rem;
	scroll-snap-type:x mandatory
}
.slide {
	flex:0 0 100%;
	scroll-snap-align:center
}
.slide img {
	width:100%;
	border-radius:12px
}
.gallery {
	display:grid;
	grid-template-columns:repeat(auto-fill, minmax(150px, 1fr));
	gap:1rem
}
.gallery img {
	width:100%;
	border-radius:10px
}
#osm-map {
	height:320px;
	border-radius:12px;
	margin-top:1rem
}
.mini-calendar {
	max-width:500px
}
.calendar-grid {
	display:grid;
	grid-template-columns:repeat(7, 1fr);
 gap:.4rem;
	margin-bottom:1rem;
}
.cal-head {
	text-align:center;
	font-weight:600;
	color:#666;
 font-size:.85rem;
}
.cal-cell {
	text-align:center;
 padding:.6rem;
	border-radius:8px;
	cursor:pointer;
	background:#f5f5f5;
}
.cal-cell.has-event {
	background:#b5121b;
	color:#fff;
	font-weight:700;
}
.cal-cell:hover {
	background:#ddd
}
.cal-cell.has-event:hover {
	background:#8f0e15
}
.cal-cell.empty {
	background:none;
	cursor:default
}
.calendar-events {
	padding:1rem;
	background:#f9f9f9;
	border-radius:12px;
}



