html{
    scroll-behavior:smooth;
}

body{
    margin:0;
    font-family:Arial,sans-serif;
    background:#0f2f24;
}

/* LANGUAGE SWITCH */

.lang-switch{
    position:absolute;
    top:20px;
    left:25px;
    z-index:10;
    background:rgba(0,0,0,0.05);
    padding:6px 12px;
    border-radius:8px;
    backdrop-filter:blur(5px);
}

.lang-switch a{
    color:white;
    margin-right:10px;
    text-decoration:none;
    font-weight:bold;
}

/* HERO */

.hero{
    position:relative;
    height:90vh;
    overflow:hidden;
}

/* SLIDER */

.slider{
    position:relative;
    width:100%;
    height:100%;
    overflow:hidden;
    z-index:1;
}

.slide{
    position:absolute;
    width:100%;
    height:100%;
    opacity:0;
    transition:opacity 1.5s ease-in-out;
}

.slide.active{
    opacity:1;
    z-index:1;
}

.slide img{
    width:100%;
    height:100%;
    object-fit:cover;
    animation:zoom 12s ease-in-out infinite alternate;
}

@keyframes zoom{
    from{transform:scale(1);}
    to{transform:scale(1.08);}
}

/* NAVIGATION ARROWS */

.nav{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    font-size:40px;
    color:#ffffff;
    background:rgba(30,47,63,0.6);
    box-shadow:0 8px 25px rgba(0,0,0,0.25);
    padding:10px 18px;
    cursor:pointer;
    border-radius:8px;
    transition:0.3s;
    z-index:5;
}

.nav:hover{
    background:rgba(184,156,90,0.9);
}

.prev{left:30px;}
.next{right:30px;}

/* DOTS */

.dots{
    position:absolute;
    bottom:30px;
    width:100%;
    text-align:center;
    z-index:5;
}

.dot{
    height:12px;
    width:12px;
    margin:0 6px;
    background:rgba(255,255,255,0.6);
    border-radius:50%;
    display:inline-block;
    cursor:pointer;
}

.dot.active{
    background:#b89c5a;
}

/* HERO TEXT */

.hero-text{
    position:absolute;
    bottom:20%;
    left:10%;
    background:rgba(255,255,255,0.92);
    color:#1e2f3f;
    box-shadow:0 20px 50px rgba(0,0,0,0.15);
    padding:30px;
    border-radius:12px;
    backdrop-filter:blur(6px);
    z-index:10;
    opacity:0.85;
}

.hero-text h1{
    margin:0 0 10px 0;
    font-size:28px;
    color:#1e2f3f;
}

/* BELEGUNGSAMPEL */

.occupancy-container{
    position:fixed;
    top:30px;
    right:40px;
    display:flex;
    gap:15px;
    z-index:9999;
    opacity:0.85;
}

.occupancy-box{
    position:relative;
    display:flex;
    align-items:center;
    gap:10px;
    padding:12px 16px;
    border-radius:12px;
    background:rgba(255,255,255,0.95);
    box-shadow:0 15px 50px rgba(0,0,0,0.2);
    color:#1e2f3f;
    min-width:220px;
}

.occupancy-box .light{
    width:22px;
    height:22px;
    border-radius:50%;
}

/* Statusfarben */

.occupancy-box.green .light{background:#00e676;}
.occupancy-box.yellow .light{background:#c9a227;}
.occupancy-box.red .light{background:#a83c3c;}

.occupancy-text{
    font-size:14px;
    line-height:1.4;
}

/* CONTENT */

section{
    padding:80px 10%;
    background:#ffffff;
}

h2{
    color:#1e2f3f;
}

.card{
    background:#ffffff;
    box-shadow:0 20px 50px rgba(0,0,0,0.08);
    padding:25px 30px;
    border-radius:12px;
    font-size:16px;
    line-height:1.6;
}

.card strong{
    color:#b89c5a;
}

.gold{
    background:#f1eee7;
}

/* MAP */

#map{
    width:100%;
    height:500px;
    border-radius:12px;
    box-shadow:0 20px 50px rgba(0,0,0,0.08);
    margin-top:25px;
}
/* --- Review----*/
.section-reviews {
    padding: 60px 40px;
    /*background: #f0f7f3; /* heller Hintergrund wie bei Infrastructure/Prices */
	background:#f1eee7;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.2rem;
    color:#1e2f3f;
}

.reviews-carousel {
    position: relative;
    overflow: hidden;
    padding: 40px 30px;
    /*background: #f0f7f3; /* passend zu deinen anderen Sections */
	background:#f1eee7;
}

.carousel-track {
    display: flex;
    gap: 30px;
    transition: transform 0.4s ease-in-out;
}

.review-card {
    flex: 0 0 300px; /* feste Breite pro Slide */
    background: #fff;
    border-radius: 20px;
    padding: 25px;
    box-shadow:0 15px 40px rgba(0,0,0,0.1);
}

.review-stars {
     color:#b89c5a;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.review-card h4 {
    margin-top: 15px;
    font-weight: 600;
     color:#1e2f3f;
}
.review-card p {
	color:#555;
}

.review-card a {
    color:#1e2f3f;
    text-decoration: none;
    font-size: 0.9rem;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    box-shadow:0 8px 25px rgba(0,0,0,0.25);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    font-size: 1.2rem;
    z-index: 10;
}

.carousel-btn:hover {
     background:#b89c5a;
}

.carousel-btn.prev {
    left: 10px;
}

.carousel-btn.next {
    right: 10px;
}
#toggle-review-form {
    display: block;
    margin: 0 auto 30px;
    padding: 12px 30px;
    box-shadow:0 10px 30px rgba(0,0,0,0.2);
    border: none;
    border-radius: 10px;
    cursor: pointer;
}

#toggle-review-form:hover {
     background:#b89c5a;
}

.review-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
}

.review-form input, 
.review-form textarea, 
.review-form select {
    padding: 12px;
    border-radius: 10px;
   border:1px solid #ddd;
    background:#ffffff;
    font-size: 1rem;
}

.review-form textarea {
    min-height: 100px;
}
.review-form input:focus,
.review-form textarea:focus,
.review-form select:focus {
    border-color:#b89c5a;
    outline:none;
}
/*---Infrastruktur----*/
.rules-list {
    list-style: none;
    padding: 0;
    margin: 25px 0;
    display: flex;
    flex-wrap: wrap;     /* erlaubt Umbruch auf kleineren Screens */
    gap: 25px 40px;      /* Abstand horizontal / vertikal */
}

.rules-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    white-space: nowrap;
}

.rules-list i {
    color: #b89c5a; /* dein Goldton */
}
/* PLACES GRID */

.places-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.place-card{
    display:flex;
    flex-direction:column;
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,0.12);
    transition:transform 0.3s ease;
    text-decoration:none;
    color:inherit;
}

.place-card:hover{
    transform:translateY(-6px);
    box-shadow:0 25px 60px rgba(0,0,0,0.18);
}

.place-card img{
    width:100%;
    aspect-ratio:16/9;
    object-fit:cover;
}

.place-content{
    padding:20px;
    flex:1;
}

/* FEATURED */

.featured{
    grid-column:span 2;
}

@media(min-width:1200px){
    .featured{
        grid-column:span 3;
    }
}

/* ACTIVITIES */

.activities-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:40px;
}

.activity-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,0.12);
    transition:0.3s;
}

.activity-card img,
.activity-card iframe{
    width:100%;
    height:220px;
    object-fit:cover;
    border:none;
}


.activity-card:hover {
    transform:translateY(-8px);
    box-shadow:0 25px 60px rgba(0,0,0,0.18);
}


.activity-content {
    padding:25px;
}

.activity-type {
    color:#b89c5a;
    font-weight:bold;
    margin-bottom:5px;
}

.activity-duration {
    font-size:14px;
    opacity:0.7;
    margin-bottom:10px;
}
.activity-link {
    display:inline-block;
    margin-top:15px;
    padding:10px 18px;
    background:#1e2f3f;
    color:#ffffff;
    border-radius:8px;
    text-decoration:none;
    font-size:14px;
    transition:0.3s;
}

.activity-link:hover {
    background:#b89c5a;
}

/* Logo links im Text */
.logo-link {
    float: left;            /* links vom Text */
    width: 200px;           /* feste Breite */
    margin: 8px 20px 15px -11px;  /* Abstand rechts und unten, damit Text nicht direkt am Logo klebt */
}

.logo-link img {
    width: 100%;
    height: auto;
    display: block;
}

/* FOOTER */

footer{
    background:#1e2f3f;
    color:#ffffff;
    text-align:center;
    padding:20px 10px;
}

/* QUICK NAV */

.quick-nav{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:10px;
    padding:14px;
    background:#ffffff;
}

.quick-nav a{
    text-decoration:none;
    padding:8px 14px;
    border-radius:20px;
    background:#f2f2f2;
    color:#333;
    font-weight:600;
}

.quick-nav a:hover{
    background:#d4af37;
    color:white;
}

.einparken-container {
    display: flex;           /* Nebeneinander anordnen */
    align-items: flex-start; /* Oben bündig ausrichten */
    gap: 20px;               /* Abstand zwischen Video und Text */
    flex-wrap: wrap;         /* Für mobile Ansicht umbrechen */
}

.einparken-video video {
    max-width: 100%;         /* Video passt sich Container an */
    border-radius: 8px;      /* Optional: abgerundete Ecken */
}

.einparken-text {
    flex: 1;                 /* Text füllt den restlichen Platz */
    text-align: left;        /* Text linksbündig */
}
.accordion-button {
    background-color: #eee;
    color: #333;
    cursor: pointer;
    padding: 10px 15px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    font-size: 16px;
    border-radius: 5px;
    margin-top: 10px;
}

.accordion-content {
    padding: 0 15px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: #f9f9f9;
    border-left: 2px solid #ccc;
    border-right: 2px solid #ccc;
    border-bottom: 2px solid #ccc;
    border-radius: 0 0 5px 5px;
}
.footer-content a {
    color: #ffffff;        /* Weiß */
    text-decoration: none; /* Keine Unterstreichung */
}

.footer-content a:hover,
.footer-content a:focus,
.footer-content a:active,
.footer-content a:visited {
    color: #ffffff;        /* Weiß in allen Zuständen */
}
/* ================================= */
/* MOBILE STYLES */
/* ================================= */

@media(max-width:768px){

.hero{
    height:75vh;
}

section{
    padding:40px 5%;
}

.card{
    padding:5px 10px;
    margin:-10px;
}

#map{
    height:400px;
}

.occupancy-container{
    flex-direction:column;
    right:0;
    top:20px;
    gap:10px;
    position: absolute;
}

.occupancy-container .occupancy-box:nth-child(3){
    display:none;
}

.occupancy-box{
    width:200px;
    padding:12px 6px;
    min-width: 200px;
}

.review-card{
    flex:0 0 80%;
}

.carousel-btn{
    width:30px;
    height:30px;
    font-size:1rem;
}

.logo-link{
    float:none;
    display:block;
    margin:0 auto 20px auto;
    width:150px;
}

}