/* CSS RESET & VARIABLES */
:root {
    --primary-color: #1a1a1a;
    --accent-color: #c8a261; /* Elegant warm gold tone */
    --accent-hover: #b08a4a;
    --bg-light: #f8f9fa;
    --bg-dark: #121212;
    --text-color: #333333;
    --text-muted: #6c757d;
    --white: #ffffff;
    --border-color: #e9ecef;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    --shadow: 0 10px 30px rgba(0,0,0,0.08);
    --transition: all 0.3s ease;
}
/* Cookie Consent Banner Styling */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 900px;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px 25px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    z-index: 9999;
    border: 1px solid #c8a261;
}

.cookie-banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-text h4 {
    color: #c8a261;
    font-family: var(--font-heading);
    margin-bottom: 6px;
    font-size: 1.1rem;
}

.cookie-text p {
    font-size: 0.9rem;
    color: #e0e0e0;
    line-height: 1.4;
    margin: 0;
}

.cookie-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.btn-cookie-accept {
    background-color: #c8a261;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-cookie-accept:hover {
    background-color: #b08a4a;
}

.btn-cookie-decline {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #6c757d;
    padding: 10px 18px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
}

.btn-cookie-decline:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .cookie-banner {
        bottom: 70px; /* Platzhalter für die mobile Anrufleiste */
        width: 95%;
        padding: 15px;
    }
    .cookie-banner-content {
        flex-direction: column;
        align-items: stretch;
    }
    .cookie-actions {
        width: 100%;
        justify-content: flex-end;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    background-color: var(--white);
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--primary-color);
}

.btn-secondary:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
}

.btn-outline:hover {
    background-color: var(--accent-color);
    color: var(--white);
}

/* HEADER & NAV */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    z-index: 1000;
    padding: 10px 0;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    height: 55px;
    width: auto;
    border-radius: 50%;
    border: 1px solid var(--border-color);
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-menu a {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-menu a:hover {
    color: var(--accent-color);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* FLAGS SIDE BY SIDE SELECTOR */
.lang-selector {
    display: flex;
    gap: 8px;
    align-items: center;
}

.lang-flag-btn {
    background: none;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 6px 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.8rem;
    transition: var(--transition);
    color: var(--primary-color);
}

.lang-flag-btn:hover {
    border-color: var(--accent-color);
    background-color: var(--bg-light);
}

.lang-flag-btn.active {
    background-color: var(--accent-color);
    color: var(--white);
    border-color: var(--accent-color);
}

.flag-icon {
    font-size: 1.1rem;
    line-height: 1;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
}

/* HERO SECTION */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('Image_6.webp') center/cover no-repeat;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.7));
    z-index: -1;
}

.hero-logo-box {
    margin-bottom: 20px;
}

.hero-logo {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    margin: 0 auto;
    border: 4px solid var(--accent-color);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    background-color: var(--white);
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: #e0e0e0;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* FEATURES BAR */
.features-bar {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 20px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    text-align: center;
}

.feature-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 500;
}

.feature-item i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

/* SECTIONS COMMON */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.title-line {
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
    margin: 0 auto 15px auto;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.05rem;
}

/* ABOUT SECTION */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-text p {
    margin-bottom: 15px;
    color: #4a4a4a;
    font-size: 1.05rem;
}

.concept-note {
    background-color: #fff9ed;
    border-left: 4px solid var(--accent-color);
    padding: 15px;
    border-radius: 4px;
    margin-top: 20px;
    display: flex;
    gap: 12px;
    font-size: 0.9rem;
    color: #665233;
}

.concept-note i {
    font-size: 1.3rem;
    color: var(--accent-color);
}

.about-img {
    border-radius: 12px;
    box-shadow: var(--shadow);
    width: 100%;
    object-fit: cover;
}

/* ROOMS SECTION */
.rooms-section {
    background-color: var(--bg-light);
}

.pricing-banner {
    background-color: var(--white);
    border: 2px dashed var(--accent-color);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 40px auto;
}

.price-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-value {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin: 5px 0;
}

.price-sub {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.room-card {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.room-card:hover {
    transform: translateY(-5px);
}

.room-img-box {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.room-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.room-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 5px 12px;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 20px;
}

.room-details {
    padding: 25px;
}

.room-details h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.room-details p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.room-features {
    list-style: none;
    margin-bottom: 25px;
}

.room-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: var(--text-color);
}

.room-features i {
    color: var(--accent-color);
}

/* GALLERY GRID */
.gallery-title h3 {
    font-family: var(--font-heading);
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.photo-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
}

.gallery-item {
    height: 150px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item img:hover {
    transform: scale(1.05);
}

/* TERRACE SECTION */
.terrace-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.sub-tag {
    color: var(--accent-color);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.terrace-content h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    margin: 10px 0 20px 0;
    color: var(--primary-color);
}

.terrace-highlights {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.th-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
}

.th-item i {
    color: var(--accent-color);
    font-size: 1.2rem;
    width: 25px;
}

.terrace-gallery {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.t-img-main {
    border-radius: 12px;
    height: 280px;
    width: 100%;
    object-fit: cover;
    box-shadow: var(--shadow);
}

.t-img-sub {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.t-img-sub img {
    border-radius: 8px;
    height: 130px;
    width: 100%;
    object-fit: cover;
}

/* LOCATION SECTION */
.location-section {
    background-color: var(--bg-light);
}

.map-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.map-info h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.address-card {
    display: flex;
    gap: 15px;
    background-color: var(--white);
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0 25px 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.address-card i {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-top: 3px;
}

/* CONTACT SECTION */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.contact-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.contact-card.highlight {
    border-color: var(--accent-color);
    background-color: #fffdf9;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background-color: var(--bg-light);
    color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 15px auto;
}

.contact-card h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.contact-value {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-color);
}

.click-hint {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 8px;
}

.booking-cta {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.booking-cta h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.booking-cta p {
    color: #ccc;
    margin-bottom: 25px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-call {
    background-color: #25d366;
    color: var(--white);
}

.btn-call:hover {
    background-color: #1eb855;
}

.btn-email {
    background-color: var(--accent-color);
    color: var(--white);
}

.btn-email:hover {
    background-color: var(--accent-hover);
}

/* FOOTER */
.footer {
    background-color: var(--bg-dark);
    color: #888;
    padding: 40px 0;
    border-top: 1px solid #222;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.footer-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 8px;
}

.footer-domain {
    color: var(--accent-color);
    font-weight: 700;
}

/* MOBILE CALL BAR */
.mobile-call-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 999;
    padding: 10px 15px;
}

.mobile-call-bar {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.m-call-btn, .m-email-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.9rem;
}

.m-call-btn {
    background-color: #25d366;
    color: var(--white);
}

.m-email-btn {
    background-color: var(--accent-color);
    color: var(--white);
}

/* RESPONSIVE DESIGN */
@media (max-width: 992px) {
    .about-grid, .terrace-wrapper, .map-grid {
        grid-template-columns: 1fr;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 75px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 75px);
        background-color: var(--white);
        padding: 40px 20px;
        transition: var(--transition);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu ul {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .mobile-call-bar {
        display: grid;
    }

    body {
        padding-bottom: 60px; /* Space for mobile bar */
    }
}

/* Mobile Flags Responsiveness */
@media (max-width: 480px) {
    .lang-flag-btn {
        padding: 4px 8px;
    }
    .lang-flag-btn .flag-label {
        display: none; /* Hide TR/EN/DE texts on mobile so it doesn't break the layout */
    }
}

/* Lightbox Popup Overlay */
.lightbox-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  justify-content: center;
  align-items: center;
  cursor: zoom-out;
}

.lightbox-modal img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 6px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.5);
}

/* Zeige den Lupen-Cursor auf den Vorschaubildern */
.room-card img, .terrace-gallery img {
  cursor: zoom-in;
  transition: transform 0.2s ease;
}

.room-card img:hover, .terrace-gallery img:hover {
  transform: scale(1.02);
}

/* Animation für das Hero-Logo beim Seitenstart */
@keyframes logoIntro {
  0% {
    transform: scale(1.8); /* Startet 80% größer */
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
  }
  70% {
    transform: scale(1.8); /* Hält die große Darstellung für ca. 1.7 Sekunden */
  }
  100% {
    transform: scale(1);   /* Schrumpft sanft auf Normalgröße */
  }
}

.hero-logo {
  /* Führt die Animation einmalig beim Laden über 2.5 Sekunden aus */
  animation: logoIntro 2.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
  will-change: transform;
}
/* KVKK Link & Modal */
.footer-links {
    margin: 10px 0;
}

.kvkk-link-btn {
    background: none;
    border: none;
    color: var(--accent-color);
    font-size: 0.85rem;
    text-decoration: underline;
    cursor: pointer;
    font-family: var(--font-body);
    transition: var(--transition);
}

.kvkk-link-btn:hover {
    color: var(--white);
}

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 3000;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.modal-content {
    background-color: var(--white);
    color: var(--text-color);
    max-width: 750px;
    width: 100%;
    max-height: 85vh;
    border-radius: 12px;
    padding: 35px 30px 30px 30px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    overflow-y: auto;
}

.modal-close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--text-muted);
    line-height: 1;
}

.modal-close-btn:hover {
    color: var(--primary-color);
}
/* KVKK Link & Modal Styling */
.footer-links {
    margin: 10px 0;
}

.kvkk-link-btn {
    background: none;
    border: none;
    color: var(--accent-color);
    font-size: 0.85rem;
    text-decoration: underline;
    cursor: pointer;
    font-family: var(--font-body);
    transition: var(--transition);
}

.kvkk-link-btn:hover {
    color: var(--white);
}

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    z-index: 3000;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.modal-content {
    background-color: var(--white);
    color: var(--text-color);
    max-width: 750px;
    width: 100%;
    max-height: 85vh;
    border-radius: 12px;
    padding: 35px 30px 30px 30px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    overflow-y: auto;
}

.modal-close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--text-muted);
    transition: var(--transition);
    line-height: 1;
}

.modal-close-btn:hover {
    color: var(--primary-color);
}

.kvkk-text-container h2 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    padding-right: 25px;
}

.kvkk-text-container h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: var(--accent-color);
    margin-top: 15px;
    margin-bottom: 6px;
}

.kvkk-text-container p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 10px;
}
/* Google Review Button im Footer */
.footer-review {
    margin: 15px 0 10px 0;
}

.btn-google-review {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #ffffff;
    color: #333333;
    padding: 10px 22px;
    border-radius: 30px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-decoration: none;
}

.btn-google-review:hover {
    background-color: #f8f9fa;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
    color: #1a1a1a;
}

.btn-google-review .fa-google {
    color: #4285F4;
    font-size: 1.15rem;
}

.btn-google-review .stars {
    color: #FBBC05;
    font-size: 0.8rem;
    display: flex;
    gap: 3px;
    margin-left: 2px;
}
/* Flag Icons Anpassung */
.lang-flag-btn .fi {
    width: 18px;
    height: 14px;
    display: inline-block;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
