/*
Theme Name:     Bellevue - Child Theme
Theme URI:      https://bellevuetheme.com
Template:       bellevuex
Author:         Themovation
Author URI:     http://themovation.com
Version:        4.0
Text Domain:    bellevue
Domain Path:    /languages/
*/


/* = Theme customization starts here
-------------------------------------------------------------- */
html, body {
  overflow-x: hidden;
}
/* ===== Theme-Variablen (gerne anpassen) ===== */
:root{
  --hotel-bg-dark: #121212;        /* dunkler Bereich */
  --hotel-card: #1a1a1a;           /* Formularfläche */
  --hotel-text: #f3f3f3;           /* Standardschrift */
  --hotel-muted: #bdbdbd;          /* Platzhalter/Labels */
  --hotel-border: #3a3a3a;         /* Feldrand */
  --hotel-border-focus: #C6A25A;   /* Akzent (edel/gold-braun) */
  --hotel-accent: #C6A25A;         /* Button/Fokus */
  --hotel-accent-hover: #C6A25A;
}

/* ===== Sektion ===== */
.contact-title{
  font-weight: 600;
  text-align: left;
  margin: 0 0 1.5rem 0;
}

/* ===== Container & Grid ===== */
.wpcf7 .cf7-grid{
  max-width: 100%;
  margin: 0 auto;
  background: var(--hotel-card);
  border: 1px solid var(--hotel-border);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 12px 30px rgba(0,0,0,.25);
}

.wpcf7 .cf7-grid p{ margin: 0 0 1rem 0; }
.wpcf7 .cf7-grid .half{ width: 100%; }
.wpcf7 .cf7-grid .full{ width: 100%; }

/* 2-Spalten am Desktop */
@media (min-width: 800px){
  .wpcf7 .cf7-grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 2rem;
  }
  .wpcf7 .cf7-grid .half{ width: auto; }
  .wpcf7 .cf7-grid .full{ grid-column: 1 / -1; }
  .wpcf7 .cf7-grid .actions {
    grid-column: 1 / -1;
  }
}

/* ===== Select (Dropdown) ===== */
.wpcf7 select {
  width: 100%;
  margin-top: .35rem;
  padding: .8rem 1rem;
  background: #0f0f0f url("data:image/svg+xml;utf8,<svg fill='%236b6b6b' height='24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>") no-repeat right 1rem center;
  background-size: 1rem;
  color: var(--hotel-muted);
  border: 1px solid var(--hotel-border-light);
  border-radius: 10px;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  transition: border-color .2s, box-shadow .2s, background .2s;
  cursor: pointer;
}

.wpcf7 select:focus {
  border-color: var(--hotel-border-focus);
  box-shadow: 0 0 0 4px rgba(138,115,86,.18);
  background-color:#0f0f0f;
}

.wpcf7 select:hover {
  border-color: var(--hotel-border-focus);
}

.wpcf7 select:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Abstände zwischen Feldern reduzieren */
.wpcf7 .cf7-grid p,
.wpcf7 .cf7-grid p {
    margin: 0 0 0.5rem 0; /* von 1rem auf 0.5rem reduziert */
}

/* Labels näher an Inputs */
.wpcf7 .cf7-grid label,
.wpcf7 .cf7-grid label {
    margin-bottom: 0.25rem; /* Abstand Label zu Input */
}

/* Inputs - oberen/unteren Abstand reduzieren */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="date"],
.wpcf7 input[type="number"],
.wpcf7 textarea {
    margin-top: 0;
    margin-bottom: 0;
}

/* Die <br> Tags im HTML erzeugen auch Abstand - können wir per CSS verstecken */
.wpcf7 .cf7-grid p br {
    display: none;
}


/* ===== Labels & Texte ===== */
.wpcf7 .cf7-grid label{
  color: var(--hotel-muted);
  font-size: .95rem;
}

/* ===== Felder ===== */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="date"],
.wpcf7 input[type="number"],
.wpcf7 textarea{
  width: 100%;
  margin-top: .35rem;
  padding: .8rem 1rem;
  background: #0f0f0f;
  color: var(--hotel-text);
  border: 1px solid var(--hotel-border);
  border-radius: 10px;
  outline: none;
  transition: border-color .2s, box-shadow .2s, background .2s;
}

.wpcf7 input::placeholder,
.wpcf7 textarea::placeholder{ color: #9a9a9a; }

.wpcf7 input:focus,
.wpcf7 textarea:focus{
  border-color: var(--hotel-border-focus);
  box-shadow: 0 0 0 4px rgba(138,115,86,.18);
}

/* ===== CONSENT STYLES UND DATE IPHONE FIX - FÜR BEIDE VARIANTEN ===== */

/* Grid-Items dürfen kleiner als ihre Inhalt-Mindestbreite werden */
.wpcf7 .cf7-grid > p,
.contact-light .cf7-grid > p { min-width: 0; }
/* iOS/Safari: Date-Feld kontrollieren */
.wpcf7 input[type="date"],
.contact-light input[type="date"]{
  -webkit-appearance: none;
  appearance: none;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  padding-right: 2.25rem;   /* Platz falls ein Icon erscheint */
  height:60px;             /* einheitliche Höhe (an deine Inputs anpassen) */
  font-size: 16px;          /* verhindert iOS-Zoom beim Fokus */
}

/* Innenabstände der iOS-Date-Komponenten reduzieren */
.wpcf7 input[type="date"]::-webkit-datetime-edit,
.wpcf7 input[type="date"]::-webkit-datetime-edit-fields-wrapper,
.contact-light input[type="date"]::-webkit-datetime-edit,
.contact-light input[type="date"]::-webkit-datetime-edit-fields-wrapper{
  padding: 0;
}

/* Drehrädchen/Buttons ausblenden (je nach iOS-Version) */
.wpcf7 input[type="date"]::-webkit-inner-spin-button,
.wpcf7 input[type="date"]::-webkit-clear-button,
.contact-light input[type="date"]::-webkit-inner-spin-button,
.contact-light input[type="date"]::-webkit-clear-button{
  display: none;
}

/* Kalender-Indikator rechts sauber positionieren (falls vorhanden) */
.wpcf7 input[type="date"]::-webkit-calendar-picker-indicator,
.contact-light input[type="date"]::-webkit-calendar-picker-indicator{
  position: absolute;
  right: .75rem;
  opacity: .7;
}

/* Consent Container - volle Breite im Grid */
.wpcf7 .cf7-grid .consent,
.contact-light .cf7-grid .consent {
    width: 100%;
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0.75rem 0 0.5rem 0;
}

/* Wrapper auf auto setzen - NICHT 100% */
.wpcf7 .consent .wpcf7-form-control-wrap,
.contact-light .consent .wpcf7-form-control-wrap {
    width: auto !important;
    display: inline-block !important;
}

/* Alle inneren Wrapper ebenfalls */
.wpcf7 .consent .wpcf7-form-control,
.wpcf7 .consent .wpcf7-list-item,
.contact-light .consent .wpcf7-form-control,
.contact-light .consent .wpcf7-list-item {
    width: auto !important;
    display: inline-block !important;
}

/* Label vertikal mit Checkbox oben */
.wpcf7 .consent .wpcf7-list-item label,
.contact-light .consent .wpcf7-list-item label {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 0.5rem !important;
    text-align: center !important;
    width: auto !important;
}

/* Checkbox zentriert */
.wpcf7 .consent input[type="checkbox"],
.contact-light .consent input[type="checkbox"] {
    margin: 0 !important;
}

/* Text darunter zentriert */
.wpcf7 .consent .wpcf7-list-item-label,
.contact-light .consent .wpcf7-list-item-label {
    text-align: center !important;
    width: auto !important;
    max-width: 400px; /* Begrenze Textbreite für bessere Lesbarkeit */
}

/* Links im Consent */
.wpcf7 .consent a {
    color: var(--hotel-muted);
    text-decoration: underline;
}

.contact-light .consent a {
    color: var(--hotel-accent);
    text-decoration: underline;
}

/* ===== Button ===== */
.wpcf7 input[type="submit"]{
  display: inline-block;
  appearance: none;
  background: var(--hotel-accent);
  color: #fff;
  font-weight: 600;
  letter-spacing: .2px;
  padding: .85rem 1.5rem;
  border: none;
  cursor: pointer;
  border-radius: 0px!important;
  transition: transform .05s ease, background .2s ease, box-shadow .2s ease;
  border-bottom: 3px solid rgba(0,0,0,0.15);
  box-shadow: 0 8px 18px rgba(138,115,86,.25);
}
.wpcf7 input[type="submit"]:hover{ background: var(--hotel-accent-hover); }
.wpcf7 input[type="submit"]:active{ transform: translateY(1px); }

/* ===== Systemmeldungen & Fehler auf dunklem BG ===== */
.wpcf7-not-valid-tip{
  color: #ffb4b4;
  font-size: .9rem;
  margin-top: .35rem;
}
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output{
  background: #3a1414;
  border: 1px solid #c46060;
  color: #ffdede;
  padding: .8rem 1rem; border-radius: 10px;
}
.wpcf7 form.sent .wpcf7-response-output{
  background: #183321;
  border: 1px solid #2f7a48;
  color: #d7f1df;
  padding: .8rem 1rem; border-radius: 10px;
}

/* Kleine Feinheiten */
.wpcf7-spinner{ filter: invert(1) saturate(0); margin-left: .5rem; }

.wpcf7-list-item-label {
    color: #7A7A7A;
}




/* ===== Theme-Variablen (hell) ===== */
:root{
  --hotel-bg-light: #f7f7f7;      /* heller Bereich (Sektion) */
  --hotel-card-light: #ffffff;     /* Formularfläche */
  --hotel-text-light: #7A7A7A;     /* Standardschrift */
  --hotel-muted-light: #6b6b6b;    /* Platzhalter/Labels */
  --hotel-border-light: #dddddd;   /* Feldrand */
  --hotel-border-focus: #C6A25A;   /* Akzent (edel/gold-braun) – shared */
  --hotel-accent: #C6A25A;         /* Button/Fokus – shared */
  --hotel-accent-hover: #C6A25A;   /* Hover – shared */
  --shadow-soft: 0 12px 30px rgba(0,0,0,.08);
}

/* ===== Sektion (hell) ===== */
.contact-title{
  font-weight: 600;
  text-align: left;
  margin: 0 0 1.5rem 0;
}

/* ===== Container & Grid ===== */
.contact-light .cf7-grid{
  max-width: 100%;      /* oder: 100% */
  width: 100%;
  margin: 0;  
  background: var(--hotel-card-light);
  border: 1px solid var(--hotel-border-light);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
}

/* ===== Select (Dropdown) ===== */
.contact-light select {
  width: 100%;
  margin-top: .35rem;
  padding: .8rem 1rem;
  background: #ffffff url("data:image/svg+xml;utf8,<svg fill='%236b6b6b' height='24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>") no-repeat right 1rem center;
  background-size: 1rem;
  color: var(--hotel-text-light);
  border: 1px solid var(--hotel-border-light);
  border-radius: 10px;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  transition: border-color .2s, box-shadow .2s, background .2s;
  cursor: pointer;
}

.contact-light select:focus {
  border-color: var(--hotel-border-focus);
  box-shadow: 0 0 0 4px #7A7A7A;
  background-color: #fffdf9;
}

.contact-light select:hover {
  border-color: var(--hotel-border-focus);
}

.contact-light select:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Für bessere Lesbarkeit bei Placeholder-Option */
.contact-light select option[disabled][selected] {
  color: var(--hotel-muted-light);
}

/* wpcf7-form-control-wrap generell 100% - AUSSER bei Consent */
.wpcf7 .wpcf7-form-control-wrap,
.contact-light .wpcf7-form-control-wrap {
    width: 100% !important;
    display: block !important;
}

/* AUSNAHME: Consent-Checkbox soll NICHT 100% sein */
.wpcf7 .consent .wpcf7-form-control-wrap,
.contact-light .consent .wpcf7-form-control-wrap {
    width: auto !important;
    display: inline-block !important;
}

/* Labels auch auf volle Breite */
.wpcf7 .cf7-grid label,
.contact-light .cf7-grid label {
    display: block;
    width: 100%;
}

.contact-light .cf7-grid p{ margin: 0 0 1rem 0; }
.contact-light .cf7-grid .half{ width: 100%; }
.contact-light .cf7-grid .full{ width: 100%; }

/* 2-Spalten am Desktop */
@media (min-width: 800px){
  .wpcf7 .cf7-grid,
  .contact-light .cf7-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    column-gap:1.25rem;   /* horizontaler Abstand */
    row-gap:1rem;         /* vertikaler Abstand */
    padding:2rem;
  }
  .contact-light .cf7-grid .half{ width: auto; }
  .contact-light .cf7-grid .full{ grid-column: 1 / -1; }
  .contact-light .cf7-grid .consent{ grid-column: 1 / -1; }
}

/* ===== Labels & Texte ===== */
.contact-light .cf7-grid label{
  color: var(--hotel-muted-light);
  font-size: .95rem;
}

/* ===== Felder ===== */
.contact-light input[type="text"],
.contact-light input[type="email"],
.contact-light input[type="tel"],
.contact-light input[type="date"],
.contact-light input[type="number"],
.contact-light textarea{
  width: 100%;
  margin-top: .35rem;
  padding: .8rem 1rem;
  background: #ffffff;
  color: var(--hotel-text-light);
  border: 1px solid var(--hotel-border-light);
  border-radius: 10px;
  outline: none;
  transition: border-color .2s, box-shadow .2s, background .2s;
}

.contact-light input::placeholder,
.contact-light textarea::placeholder{ color: #9a9a9a; }

.contact-light input:focus,
.contact-light textarea:focus{
  border-color: var(--hotel-border-focus);
  box-shadow: 0 0 0 4px rgba(138,115,86,.18);
  background: #fffdf9;
}

/* ===== Button ===== */
.contact-light input[type="submit"]{
  display: inline-block;
  appearance: none;
  background: var(--hotel-accent);
  color: #fff;
  font-weight: 600;
  letter-spacing: .2px;
  padding: .85rem 1.5rem;
  border: none;
  cursor: pointer;
  border-radius: 0px!important;
  border-bottom: 3px solid rgba(0,0,0,0.15);
  transition: transform .05s ease, background .2s ease, box-shadow .2s ease;
  box-shadow: 0 8px 18px rgba(138,115,86,.25);
}
.contact-light input[type="submit"]:hover{ background: var(--hotel-accent-hover); }
.contact-light input[type="submit"]:active{ transform: translateY(1px); }

/* Actions (Button) mittig - einheitlich mit Consent */
.wpcf7 .cf7-grid .actions,
.contact-light .cf7-grid .actions {
    width: 100%;
    grid-column: 1 / -1;
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left:37px;
}

/* ===== Systemmeldungen & Fehler (hell) ===== */
.contact-light .wpcf7-not-valid-tip{
  color: #c0392b;
  font-size: .9rem;
  margin-top: .35rem;
}
.contact-light form.invalid .wpcf7-response-output,
.contact-light form.unaccepted .wpcf7-response-output{
  background: #fff3f2;
  border: 1px solid #f2b8b5;
  color: #7a1f18;
  padding: .8rem 1rem; border-radius: 10px;
}
.contact-light form.sent .wpcf7-response-output{
  background: #eef8f2;
  border: 1px solid #bfe6cd;
  color: #1e5f38;
  padding: .8rem 1rem; border-radius: 10px;
}

/* Spinner (hell) */
.contact-light .wpcf7-spinner{ margin-left: .5rem; }

/* ===== 404 Styles ===== */
.site-404 {
  background: #f9f9f9;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.site-404 h1 {
  font-weight: 700;
  color: #222;
}
.site-404 p {
  color: #555;
}
.btn-404-home {
  display: inline-block;
  background: black; /* Akzentfarbe */
  color: #fff;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: background .2s ease;
}
.btn-404-home:hover {
  background: black;
}





/* ========== Hotel Castel – IBE Skin (scoped) ========== */
.ibe-theme-luxe.casa-wdg {
  --hc-text: #7A7A7A;
  --hc-muted: #7A7A7A;        /* grauer Fließtext */
  --hc-border: #ffffff;       /* Input-Rahmen */
  --hc-border-strong: #d1d5db;
  --hc-bg: #ffffff;
  --hc-bg-soft: #f8fafc;      /* sehr helles Grau */
  --hc-primary: #111111;      /* schwarze Buttons */
  --hc-primary-contrast: #ffffff;
  --hc-radius: 10px;
  --hc-radius-sm: 8px;
  --hc-shadow: 0 1px 2px rgba(0,0,0,.04);
  --hc-shadow-md: 0 6px 16px rgba(17,24,39,.08);
  font-family: inherit;
  color: var(--hc-text);
}

/* Grundlayout & Abstände */
.ibe-theme-luxe.casa-wdg .casa-wrapper { padding: 8px 0 0; }
.ibe-theme-luxe.casa-wdg .casa-form-group { margin-bottom: 14px; }
.ibe-theme-luxe.casa-wdg label,
.ibe-theme-luxe.casa-wdg .casa-control-label {
  color: var(--hc-muted);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 6px;
}

/* Inputs (Kendo + native) einheitlich */
.ibe-theme-luxe.casa-wdg .k-widget.k-datepicker,
.ibe-theme-luxe.casa-wdg .k-widget.k-dropdown,
.ibe-theme-luxe.casa-wdg .casa-form-control {
  width: 100%;
  background: var(--hc-bg);
  border: 1px solid var(--hc-border);
  border-radius: var(--hc-radius);
  box-shadow: var(--hc-shadow);
  transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
}

.ibe-theme-luxe.casa-wdg .k-picker-wrap,
.ibe-theme-luxe.casa-wdg .k-dropdown-wrap {
  border: none; background: transparent; border-radius: var(--hc-radius);
}

.ibe-theme-luxe.casa-wdg .k-input,
.ibe-theme-luxe.casa-wdg .casa-form-control {
  padding: 12px 14px !important;
  height: auto;
  line-height: 1.4;
  color: var(--hc-text);
}

.ibe-theme-luxe.casa-wdg .k-select,
.ibe-theme-luxe.casa-wdg .k-i-calendar,
.ibe-theme-luxe.casa-wdg .k-i-arrow-60-down { color: var(--hc-muted); }

.ibe-theme-luxe.casa-wdg .k-state-focused .k-input,
.ibe-theme-luxe.casa-wdg .k-picker-wrap.k-state-focused,
.ibe-theme-luxe.casa-wdg .casa-form-control:focus {
  outline: none;
  border-color: var(--hc-primary) !important;
  box-shadow: 0 0 0 2px rgba(17,17,17,.08);
}

/* Plus/Minus Buttons (Nächte, Erwachsene, Kinder) */
.ibe-theme-luxe.casa-wdg .casa-input-group .casa-btn {
  background: var(--hc-primary) !important;      /* schwarz wie Hauptbuttons */
  color: var(--hc-primary-contrast) !important;  /* weiß */
  border: none !important;
  border-radius: 0 !important;
  width: 40px; 
  height: 40px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem; /* Icon etwas größer */
  box-shadow: var(--hc-shadow);
  transition: background .15s ease, transform .08s ease;
}

.ibe-theme-luxe.casa-wdg .casa-input-group .casa-btn:hover {
  background: #333 !important;  /* etwas heller als Schwarz */
  transform: scale(1.05);
}

/* Input dazwischen etwas kompakter */
.ibe-theme-luxe.casa-wdg .casa-input-group .casa-form-control {
  margin: 0 6px;
  max-width: 70px;
  height: 40px;
  line-height: 40px;
  padding: 0;
  text-align: center;
  font-weight: 600;
  box-shadow: var(--hc-shadow);
}


/* Primäre Buttons (SUCHE / Fortfahren etc.) */
.ibe-theme-luxe.casa-wdg .casa-btn.casa-btn-default,
.ibe-theme-luxe.casa-wdg .casa-btn.casa-btn-lg {
  background: var(--hc-primary) !important;
  color: var(--hc-primary-contrast) !important;
  border: none;
  padding: 14px 18px;
  border-radius: var(--hc-radius);
  text-transform: uppercase;
  letter-spacing: .04em;
  font-weight: 700;
  box-shadow: var(--hc-shadow-md);
  transition: transform .06s ease, box-shadow .15s ease, opacity .15s ease;
}
.ibe-theme-luxe.casa-wdg .casa-btn.casa-btn-default:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(17,24,39,.12);
}

/* „Angebote suchen“ – volle Breite, wie dein SUCHE-CTA */
.ibe-theme-luxe.casa-wdg .casa-control-row .casa-stretch {
  width: 100%;
}

/* Links dezenter */
.ibe-theme-luxe.casa-wdg a { color: var(--hc-text); text-decoration: none; }
.ibe-theme-luxe.casa-wdg a:hover { opacity: .85; }

/* Karten/Angebotsboxen */
.ibe-theme-luxe.casa-wdg .casa-room-offer,
.ibe-theme-luxe.casa-wdg .casa-room-offer-item,
.ibe-theme-luxe.casa-wdg .casa-overview-panel {
  background: var(--hc-bg);
  border: 1px solid var(--hc-border);
  border-radius: var(--hc-radius);
  box-shadow: var(--hc-shadow);
  padding: 16px;
}

/* Verfügbarkeitsleiste/Info in Angeboten */
.ibe-theme-luxe.casa-wdg .casa-room-offer-availabilityInfo td {
  background: var(--hc-bg-soft);
  border: 1px solid var(--hc-border);
  color: var(--hc-muted);
  border-radius: var(--hc-radius-sm);
}

/* Preiszeilen aufräumen */
.ibe-theme-luxe.casa-wdg .casa-room-offer-rates { border-collapse: separate; border-spacing: 0 8px; }
.ibe-theme-luxe.casa-wdg .casa-room-offer-rates td {
  padding: 10px 12px;
  background: var(--hc-bg);
  border: 1px solid var(--hc-border);
  border-radius: var(--hc-radius-sm);
}
.ibe-theme-luxe.casa-wdg .casa-room-offer-rates .casa-room-offer-rates-price {
  font-weight: 700; color: var(--hc-text);
}

/* Carousel minimalistisch */
.ibe-theme-luxe.casa-wdg .casa-carousel { border-radius: var(--hc-radius); overflow: hidden; box-shadow: var(--hc-shadow); }
.ibe-theme-luxe.casa-wdg .casa-carousel-control { opacity: .8; }
.ibe-theme-luxe.casa-wdg .casa-carousel-control:hover { opacity: 1; }

/* Monatskalender – ruhig & clean */
.ibe-theme-luxe.casa-wdg .casa-wdg-monthCalendar { margin-top: 10px; }
.ibe-theme-luxe.casa-wdg .casa-month-view { border: 1px solid var(--hc-border); border-radius: var(--hc-radius); overflow: hidden; }
.ibe-theme-luxe.casa-wdg .casa-month-header th { background: var(--hc-bg-soft); color: var(--hc-text); }
.ibe-theme-luxe.casa-wdg .casa-weekdays th { color: var(--hc-muted); background: var(--hc-bg); }
.ibe-theme-luxe.casa-wdg .casa-current-month { background: var(--hc-bg); border: 1px solid var(--hc-border); }
/* Tage nicht verfügbar wieder rot statt grau */
.ibe-theme-luxe.casa-wdg .casa-not-available { 
  background: #d29393 !important;   /* leichtes Rot */
}
.ibe-theme-luxe.casa-wdg .casa-current-day { outline: 2px solid var(--hc-primary); outline-offset: -2px; }

/* Legende dezenter */
.ibe-theme-luxe.casa-wdg .casa-legend { gap: 18px; border-top: 1px solid var(--hc-border); padding-top: 10px; }
.ibe-theme-luxe.casa-wdg .casa-legend-icon { border-radius: 8px; border: 1px solid var(--hc-border); background: var(--hc-bg-soft); }

/* Kleinigkeiten */
.ibe-theme-luxe.casa-wdg .casa-text-center { text-align: center; }

/* Hotel Castel – IBE: eckige Felder/Buttons/Karten */
.ibe-theme-luxe.casa-wdg {
  --hc-radius: 0px;
  --hc-radius-sm: 0px;
}

/* Inputs & Kendo-Wrappings */
.ibe-theme-luxe.casa-wdg .k-widget,
.ibe-theme-luxe.casa-wdg .k-picker-wrap,
.ibe-theme-luxe.casa-wdg .k-dropdown-wrap,
.ibe-theme-luxe.casa-wdg .k-input,
.ibe-theme-luxe.casa-wdg .casa-form-control {
  border-radius: 0 !important;
}

/* Plus/Minus-Buttons & generelle Buttons */
.ibe-theme-luxe.casa-wdg .casa-btn,
.ibe-theme-luxe.casa-wdg .casa-input-group .casa-btn {
  border-radius: 0 !important;
}

/* Karten/Angebotsboxen/Tabellenzellen */
.ibe-theme-luxe.casa-wdg .casa-room-offer,
.ibe-theme-luxe.casa-wdg .casa-room-offer-item,
.ibe-theme-luxe.casa-wdg .casa-overview-panel,
.ibe-theme-luxe.casa-wdg .casa-room-offer-rates td,
.ibe-theme-luxe.casa-wdg .casa-room-offer-availabilityInfo td {
  border-radius: 0 !important;
}

/* Kalender, Carousel, Legende */
.ibe-theme-luxe.casa-wdg .casa-month-view,
.ibe-theme-luxe.casa-wdg .casa-carousel,
.ibe-theme-luxe.casa-wdg .casa-legend-icon {
  border-radius: 0 !important;
}

/* 1) Überschriftzeile in der Zimmerliste (Index / "für" / Icons) */
.ibe-theme-luxe.casa-wdg .casa-room-offer-info,
.ibe-theme-luxe.casa-wdg .casa-room-offer-info.casa-short-info,
.ibe-theme-luxe.casa-wdg .casa-room-offer-short-info {
  background: transparent !important;      /* Beige raus */
  color: var(--hc-text) !important;        /* Text schwarz wie im Theme */
  border: 0 !important;
}
.ibe-theme-luxe.casa-wdg .casa-room-offer-info .casa-fa,
.ibe-theme-luxe.casa-wdg .casa-room-offer-short-info .casa-fa {
  color: var(--hc-muted) !important;       /* Icons dezent grau – sonst var(--hc-text) */
}

/* Finaler Buchungsbutton überschreiben */
#selection-overview button#bookingButton.casa-btn.casa-btn-default.casa-btn-lg {
  background-color: var(--hc-primary) !important;      /* schwarz */
  color: var(--hc-primary-contrast) !important;        /* weiß */
  border-radius: 0 !important;                         /* eckig wie gewünscht */
  border: none !important;
}

/* Text & Preis im Button */
#selection-overview button#bookingButton.casa-btn.casa-btn-default.casa-btn-lg h4,
#selection-overview button#bookingButton.casa-btn.casa-btn-default.casa-btn-lg b,
#selection-overview button#bookingButton.casa-btn.casa-btn-default.casa-btn-lg span {
  color: var(--hc-primary-contrast) !important;
}

/* Hover-Effekt */
#selection-overview button#bookingButton.casa-btn.casa-btn-default.casa-btn-lg:hover {
  filter: brightness(1.05);
}

/* Plus/Minus bei "Nächte" (schwarzer Stepper-Style) */
.ibe-theme-luxe.casa-wdg .casa-btn-group .casa-btn {
  background: var(--hc-primary) !important;        /* Schwarz */
  color: var(--hc-primary-contrast) !important;    /* Weiß */
  border: none !important;
  width: 32px;
  height: 32px;
  padding: 0;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  box-shadow: var(--hc-shadow);
}


/* WIDGET HOME PAGE SMALL PROXY CASA */
.casa-booking-wrap {
  width: 100%;
  display: grid;
  place-items: center;
  padding: 20px;
  box-sizing: border-box;
}

.casa-booking {
  width: 100%;
  max-width: 1200px;
  display: grid;
  grid-template-columns: 2fr 2fr 1fr 1fr 2.5fr;
  gap: 20px;
  align-items: end;
}

@media (max-width: 1024px) and (min-width: 601px) {
  .casa-booking {
    grid-template-columns: 2fr 2fr 1fr 1fr;
    gap: 16px;
  }
  .casa-actions {
    grid-column: 1 / -1;
    padding-top: 0.5rem;
  }
}

@media (max-width: 600px) {
  .casa-booking-wrap {
    padding: 12px;
  }
  .casa-booking {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .casa-actions {
    grid-column: 1;
    padding-top: 0.5rem;
  }
  .casa-field label {
    font-size: 13px;
  }
  .casa-field input[type="date"],
  .casa-field input[type="number"] {
    height: 44px;
    padding: 0 14px;
    font-size: 14px;
  }
}

.casa-field {
  display: grid;
  gap: 8px;
  width: 100%;
}

.casa-field label {
  font-family: "Trirong", serif;
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.2;
  color: white!important;
  letter-spacing: 0.3px;
}

.casa-field input[type="date"],
.casa-field input[type="number"] {
  width: 100%;
  height: 55px;
  padding: 0 20px;
  font-size: 16px;
  color: #3a3a3a;
  border: 1px solid #cfd3d7;
  outline: none;
  background: #fff;
  border-radius: 2px;
  box-shadow: 0 0 0 0 rgba(0,0,0,0);
  transition: box-shadow 0.15s ease, border-color 0.15s ease;
  box-sizing: border-box;
}

.casa-field input[type="date"] {
    /* iOS Fixes */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  line-height: normal;
}

.casa-field input::placeholder {
  color: #b8b8b8;
}

.casa-field input:focus {
  border-color: #9aa3ab;
  box-shadow: 0 0 0 3px rgba(0,0,0,0.04);
}

.casa-qty input {
  text-align: center;
}

.casa-actions {
  display: grid;
  justify-items: center;
  gap: 14px;
}

.casa-btn {
  width: 100%;
  max-width: 320px;
  height: 60px;
  background: #C6A25A;
  color: #fff;
  font-family: "Trirong", serif;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  border-radius: 2px;
  transition: filter 0.15s ease, transform 0.02s ease-in;
}

@media (max-width: 600px) {
  .casa-btn {
    max-width: 100%;
    font-size: 14px;
    height: 60px;
    letter-spacing: 0.8px;
    margin-top: 16px;
  }
}

.casa-btn:hover {
  filter: brightness(1.04);
}

.casa-btn:active {
  transform: translateY(1px);
}

.casa-error {
  margin: 0;
  font-size: 15px;
  color: #b00020;
  text-align: center;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}



[data-id="db21291"] .elementor-icon-box-title a {
    color: #ffffff !important; /* oder eine andere helle Farbe */
}

[data-id="db21291"] .elementor-icon-box-description {
    color: #ffffff !important;
}

/*CORRECTION BTNS ueber-uns*/

.btn-1.btn.th-btn.btn-cta-accent,
.btn-1.btn.th-btn.btn-cta-accent * {
  color: #fff !important;
}

.btn-2.btn.th-btn.btn-cta-accent,
.btn-2.btn.th-btn.btn-cta-accent * {
  color: #fff !important;
}


/* === CONSENT zentrieren – finale Overrides === */

/* 1) Im Grid die Zelle selbst zentrieren */
.wpcf7 .cf7-grid .consent,
.contact-light .cf7-grid .consent {
  grid-column: 1 / -1;
  justify-self: center;      /* ← Grid-zellenzentrierung */
  text-align: center;
  display: block;            /* Flex hier ist nicht nötig */
  margin: 0.75rem 0 0.5rem 0;
}

/* 2) Der CF7-Wrapper darf NICHT 100% breit sein */
.wpcf7 .cf7-grid .consent .wpcf7-form-control-wrap,
.contact-light .cf7-grid .consent .wpcf7-form-control-wrap {
  display: inline-block !important;
  width: auto !important;
  margin: 0 auto !important;
}

/* 3) CF7-Listenelement und Label als Inline-Flex – Inhalte zentriert */
.wpcf7 .cf7-grid .consent .wpcf7-list-item,
.contact-light .cf7-grid .consent .wpcf7-list-item {
  display: inline-flex !important;
  align-items: center !important;
  gap: .5rem !important;
}

.wpcf7 .cf7-grid .consent .wpcf7-list-item label,
.contact-light .cf7-grid .consent .wpcf7-list-item label {
  display: inline-flex !important;
  align-items: center !important;
  gap: .5rem !important;
  width: auto !important;              /* überstimmt globale 100%-Labels */
}

/* 4) Checkbox ohne Extramargins */
.wpcf7 .cf7-grid .consent input[type="checkbox"],
.contact-light .cf7-grid .consent input[type="checkbox"] {
  margin: 0 !important;
}

/* 5) Der eigentliche Consent-Text: inline + max-Breite für Lesbarkeit */
.wpcf7 .cf7-grid .consent .wpcf7-list-item-label,
.contact-light .cf7-grid .consent .wpcf7-list-item-label {
  display: inline !important;
  width: auto !important;
  max-width: 48rem;           /* optional: Zeilenlänge begrenzen */
  text-align: center !important;
}

/* (Optional) Wenn irgendetwas noch zieht: block-100%-Labels global entschärfen */
.wpcf7 .cf7-grid .consent label { width: auto !important; }









/* 2-Spalten am Desktop */
@media (max-width: 800px){
/* Selected Tab */
.thmv-tab-title, 
.thmv-tab-mobile-title {
    background-color: black !important; /* tiefschwarz */
    color: #ffffff !important;
    opacity: 1;
}

/* Hover Effect */
.thmv-tabs .thmv-tab-title:hover {
    opacity: 1;
}
}

