/* -------------------------------------------------
   FONTS
------------------------------------------------- */
@import url('https://fonts.googleapis.com/css?family=Poppins:300,400,500,600&display=swap');
@import url('https://fonts.googleapis.com/css?family=Montserrat:400,500,600,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Great+Vibes&display=swap');

@import url('animate.css');
@import url('font-awesome.min.css');
@import url('magnific-popup.css');
@import url('responsiveslides.css');
@import url('timeline.css');
@import url('flaticon.css');

/* -------------------------------------------------
   THEME VARIABLEN (Weihnachten)
------------------------------------------------- */
:root {
    --bg-page: #0f1a12;              /* sehr dunkles Grün */
    --bg-section-dark: #16231a;      /* etwas helleres Grün */
    --bg-card: rgba(22,35,26,0.8);

    --text-light: #f7f7f7;
    --text-dim: #cfcfcf;
    --text-heading: #ffffff;

    --text-dark: #111;               /* für helle Sektionen */
    --text-dark-dim: #444;

    --accent-red: #c41e3a;
    --accent-red-dark: #5a0a16;
    --accent-gold: #ffd87a;
    --accent-gold-dark: #8a6a17;

    --border-soft: rgba(255,255,255,0.1);

    --radius-card: 14px;
    --radius-btn: 10px;

    --shadow-card: 0 20px 40px rgba(0,0,0,0.7);
    --shadow-glow-red: 0 0 15px rgba(196,30,58,0.6);
    --shadow-glow-gold: 0 0 20px rgba(255,216,122,0.5);

    --header-height-desktop: 80px;
    --header-height-mobile: 68px;
    --section-padding-y: 70px;

    --fast: .2s ease;
    --mid: .35s ease;
}

/* -------------------------------------------------
   RESET / BASE
------------------------------------------------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    background-color: var(--bg-page);
    background-image:
            radial-gradient(circle at 20% 20%, rgba(255,255,255,0.06) 0%, rgba(0,0,0,0) 60%),
            radial-gradient(circle at 80% 0%, rgba(255,216,122,0.07) 0%, rgba(0,0,0,0) 70%);
    color: var(--text-light);
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-size: 15px;
    line-height: 1.6;
    padding-top: var(--header-height-desktop);
}

img {
    max-width: 100%;
    display: block;
    border-radius: var(--radius-card);
}

ul, ol { list-style: none; }

a {
    color: var(--accent-gold);
    text-decoration: none;
    transition: all var(--fast);
}
a:hover,
a:focus {
    color: var(--accent-red);
    text-decoration: none;
}

/* -------------------------------------------------
   TYPO / TEXT
------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
    color: var(--text-heading);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 12px;
}
h1 { font-size: 2rem; }
h2 { font-size: 1.75rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1rem; }
h6 { font-size: .875rem; }

p {
    font-size: 16px;
    font-weight: 300;
    color: var(--text-light);
    line-height: 1.5;
    margin-top: 5px;
    margin-bottom: 1rem;
}

.lead {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-dim);
}

.fancy-script {
    font-family: 'Great Vibes', cursive;
    font-weight: 400;
    color: var(--accent-gold);
    text-shadow: var(--shadow-glow-gold);
}

.text_align_center { text-align: center; }
.white_fonts * { color: #fff !important; }

blockquote {
    background: rgba(255,255,255,0.05);
    border-left: 4px solid var(--accent-gold);
    padding: 20px 25px;
    border-radius: var(--radius-card);
    color: #fff;
    font-style: italic;
    margin: 20px 0;
    box-shadow: var(--shadow-card);
}

/* -------------------------------------------------
   BUTTONS
------------------------------------------------- */
.btn,
a.btn {
    display: inline-block;
    cursor: pointer;
    background: linear-gradient(135deg, var(--accent-red) 0%, #8a0f23 100%);
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    padding: 12px 20px;
    line-height: 1.2;
    border: 0;
    border-radius: var(--radius-btn);
    box-shadow: var(--shadow-glow-red), 0 14px 30px rgba(0,0,0,0.7);
    transition: all var(--fast);
    text-transform: uppercase;
    letter-spacing: .03em;
}
.btn:hover,
.btn:focus,
a.btn:hover,
a.btn:focus {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
    color: #000;
    box-shadow: var(--shadow-glow-gold), 0 16px 36px rgba(0,0,0,0.8);
}

.btn-custom {
    background: transparent !important;
    color: var(--accent-gold);
    border: 2px solid var(--accent-gold);
    padding: 12px 32px;
    font-size: 16px;
    border-radius: var(--radius-btn);
    box-shadow: var(--shadow-glow-gold);
    font-weight: 500;
    text-transform: uppercase;
    margin-top: 20px;
}
.btn-custom:hover {
    background: var(--accent-gold) !important;
    color: #000;
    box-shadow: var(--shadow-glow-gold), 0 16px 36px rgba(0,0,0,0.8);
}

/* -------------------------------------------------
   FORMS
------------------------------------------------- */
input,
textarea,
select,
.form-control,
.contact-block .form-group .form-control,
.subscribe-inner .form-group .form-control-1 {
    background: rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-btn);
    color: var(--text-light);
    font-size: 14px;
    font-weight: 300;
    line-height: 1.4;
    padding: 12px 15px;
    width: 100%;
    box-shadow: inset 0 0 8px rgba(0,0,0,0.6);
    transition: all var(--fast);
}
input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 10px rgba(255,216,122,0.6), inset 0 0 8px rgba(0,0,0,0.6);
    background: rgba(0,0,0,0.6);
    color: var(--text-light);
}
.contact-block .form-group textarea.form-control {
    min-height: 150px;
    resize: vertical;
    padding-top: 15px;
}

.submit-button .btn-common {
    background: linear-gradient(135deg, var(--accent-red) 0%, #8a0f23 100%);
    border: 0;
    border-radius: var(--radius-btn);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    height: 45px;
    line-height: 45px;
    padding: 0 20px;
    box-shadow: var(--shadow-glow-red), 0 14px 30px rgba(0,0,0,0.7);
    transition: all var(--fast);
}
.submit-button .btn-common:hover {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
    color: #000;
    box-shadow: var(--shadow-glow-gold), 0 16px 36px rgba(0,0,0,0.8);
}

/* -------------------------------------------------
   HEADER / NAVIGATION
   (Fix für iPhone Klick: hoher z-index + mobile dropdown)
------------------------------------------------- */
.top-header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: var(--header-height-desktop);
    background: rgba(15,26,18,0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255,216,122,0.2);
    box-shadow: 0 20px 40px rgba(0,0,0,0.9), 0 0 20px rgba(255,216,122,.4);
    z-index: 9999; /* <- WICHTIG für iPhone */
    display: flex;
    align-items: center;
    color: var(--text-heading);
}

.top-header::after {
    /* kleine "Lichterkette"-Linie */
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    height: 2px;
    background:
            radial-gradient(circle at 10% 50%, var(--accent-red) 0%, rgba(0,0,0,0) 60%),
            radial-gradient(circle at 30% 50%, var(--accent-gold) 0%, rgba(0,0,0,0) 60%),
            radial-gradient(circle at 50% 50%, #fff 0%, rgba(0,0,0,0) 60%),
            radial-gradient(circle at 70% 50%, var(--accent-gold) 0%, rgba(0,0,0,0) 60%),
            radial-gradient(circle at 90% 50%, var(--accent-red) 0%, rgba(0,0,0,0) 60%);
    opacity: .9;
    filter: drop-shadow(0 0 6px var(--accent-gold));
}

.top-header .navbar {
    width: 100%;
    padding: 10px 20px;
    display: flex;
    align-items: center;
}

.navbar-brand img {
    max-height: 48px;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.8), 0 0 20px rgba(255,216,122,.4);
}

/* Burger Button */
.navbar-toggler {
    display: none; /* Desktop: ausgeblendet */
    margin-left: auto;
    border: 2px solid var(--accent-gold);
    border-radius: var(--radius-btn);
    padding: 10px 12px;
    background: transparent;
    color: var(--accent-gold);
    cursor: pointer;
    box-shadow: 0 0 20px rgba(255,216,122,.4);
    transition: all var(--fast);
}
.navbar-toggler span {
    display: block;
    width: 24px;
    height: 3px;
    border-radius: 2px;
    background: var(--accent-gold);
    box-shadow: 0 0 10px rgba(255,216,122,.5);
}
.navbar-toggler span + span { margin-top: 5px; }
.navbar-toggler:hover {
    background: rgba(255,216,122,0.1);
    box-shadow: 0 0 20px rgba(255,216,122,.8), 0 16px 36px rgba(0,0,0,0.8);
}

/* Desktop Menü */
.navbar-collapse {
    margin-left: auto;
}
.navbar-collapse ul {
    display: flex;
    align-items: center;
    gap: 6px;
}
.navbar-collapse ul li a {
    display: block;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 14px;
    color: var(--text-heading);
    background: rgba(255,255,255,0.03);
    border-radius: var(--radius-btn);
    border: 1px solid rgba(255,216,122,0.15);
    box-shadow: 0 10px 20px rgba(0,0,0,0.7);
    transition: all var(--fast);
}
.navbar-collapse ul li a.active,
.navbar-collapse ul li a:hover,
.navbar-collapse ul li a:focus {
    background: radial-gradient(circle at 20% 20%, var(--accent-red) 0%, var(--accent-red-dark) 60%);
    border-color: rgba(196,30,58,0.6);
    color: #fff;
    box-shadow: var(--shadow-glow-red), 0 16px 36px rgba(0,0,0,0.9);
}

/* -------------------------------------------------
   HERO / BANNER
------------------------------------------------- */
.home-slider {
    position: relative;
    width: 100%;
    height: 520px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #000;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.9);
}
.home-slider::after {
    /* leichter Schneefall */
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(#ffffff 1px, rgba(0,0,0,0) 1px);
    background-size: 3px 3px;
    opacity: .18;
    animation: snowFloat 6s linear infinite;
    pointer-events: none;
}
@keyframes snowFloat {
    0% { transform: translateY(-10px); }
    100% { transform: translateY(10px); }
}

.lbox-caption {
    position: absolute;
    inset: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.lbox-details {
    position: relative;
    max-width: 900px;
    width: 100%;
    padding: 22% 5% 0;
    color: #fff;
    text-shadow: 0 10px 20px rgba(0,0,0,0.9), 0 0 20px rgba(255,216,122,.4);
}
.lbox-details::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 40%, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 70%);
    border-radius: var(--radius-card);
    z-index: -1;
}
.lbox-details h1 {
    font-size: 48px;
    font-family: 'Great Vibes', cursive;
    font-weight: 400;
    color: var(--accent-gold);
    line-height: 1.1;
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(255,216,122,.6);
}
.lbox-details h2 {
    font-size: 28px;
    font-weight: 500;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 15px;
}
.lbox-details p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 20px;
}
.lbox-details p strong {
    color: var(--accent-gold);
    font-weight: 600;
    text-shadow: 0 0 20px rgba(255,216,122,.6);
    font-size: 18px;
}
.lbox-details a.btn {
    font-size: 15px;
    min-width: 160px;
    text-align: center;
}

/* -------------------------------------------------
   ABOUT / INFO SEKTION
------------------------------------------------- */
.about-box {
    padding: var(--section-padding-y) 0;
    background: radial-gradient(circle at 0% 0%, rgba(255,216,122,0.07) 0%, rgba(0,0,0,0) 60%), var(--bg-section-dark);
    box-shadow: inset 0 0 80px rgba(0,0,0,0.9);
}
.title-box {
    text-align: center;
    margin-bottom: 30px;
}
.title-box h2 {
    font-family: 'Great Vibes', cursive;
    font-size: 68px;
    font-weight: 400;
    color: var(--accent-gold);
    line-height: 1.1;
    text-shadow: 0 0 20px rgba(255,216,122,.6);
}
.title-box h2 span {
    color: var(--accent-red);
    text-shadow: 0 0 15px rgba(196,30,58,.6);
    text-decoration: underline;
}

.about-main-info {
    color: var(--text-light);
    margin-bottom: 30px;
    text-align: left;
}
.about-main-info h2 {
    font-size: 40px;
    font-family: 'Great Vibes', cursive;
    font-weight: 400;
    color: var(--accent-gold);
    margin-bottom: 16px;
    text-shadow: 0 0 20px rgba(255,216,122,.6);
}
.about-main-info h2 span {
    color: var(--accent-red);
    text-decoration: underline;
    text-shadow: 0 0 15px rgba(196,30,58,.6);
}
.about-main-info p {
    color: var(--text-light);
}
.about-main-info a {
    display: inline-block;
    margin-top: 15px;
}

.about-img {
    padding: 20px 0;
    text-align: center;
}
.about-img img {
    border-radius: var(--radius-card);
    background: var(--bg-card);
    box-shadow: var(--shadow-card), 0 0 20px rgba(255,216,122,.4);
    border: 1px solid rgba(255,216,122,0.2);
}

/* Social Icons unter About */
.about-m ul {
    text-align: center;
    padding-top: 20px;
}
.about-m ul li {
    display: inline-block;
    margin: 0 6px;
}
.about-m ul li a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #fff 0%, var(--accent-gold) 40%, #7a5e00 100%);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(255,216,122,.6), 0 12px 24px rgba(0,0,0,0.8);
    transition: all var(--fast);
}
.about-m ul li a:hover {
    background: radial-gradient(circle at 30% 30%, #fff 0%, var(--accent-red) 40%, var(--accent-red-dark) 100%);
    color: #fff;
    box-shadow: 0 0 20px rgba(196,30,58,.6), 0 14px 30px rgba(0,0,0,0.9);
}

/* -------------------------------------------------
   GALLERY (z. B. Highlights)
------------------------------------------------- */
.gallery-box {
    padding: var(--section-padding-y) 0 100px;
    background: var(--bg-page);
    box-shadow: inset 0 0 80px rgba(0,0,0,0.9);
}
.gallery-box ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-left: -1%;
    margin-right: -1%;
}
.gallery-box ul li {
    width: 31.33%;
    margin: 0 1% 20px;
    border-radius: var(--radius-card);
    overflow: hidden;
    position: relative;
    background: #1e2f23;
    border: 1px solid rgba(255,216,122,0.15);
    box-shadow: var(--shadow-card);
}
.gallery-box ul li a {
    display: block;
    position: relative;
}
.gallery-box ul li a::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(196,30,58,0.8) 0%, rgba(0,0,0,0) 70%);
    opacity: 0;
    transition: all var(--fast);
    border-radius: var(--radius-card);
}
.gallery-box ul li a .overlay {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%) scale(0.6);
    opacity: 0;
    width: 42px;
    height: 42px;
    line-height: 42px;
    text-align: center;
    font-size: 18px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #fff 0%, var(--accent-gold) 40%, #7a5e00 100%);
    color: #000;
    box-shadow: 0 0 20px rgba(255,216,122,.6),0 14px 30px rgba(0,0,0,0.9);
    transition: all var(--fast);
}
.gallery-box ul li a:hover::before {
    opacity: 1;
}
.gallery-box ul li a:hover .overlay {
    opacity: 1;
    transform: translate(-50%,-50%) scale(1);
}

/* -------------------------------------------------
   KONTAKT
------------------------------------------------- */
.contact-box {
    padding: var(--section-padding-y) 0;
    background: var(--bg-section-dark);
    box-shadow: inset 0 0 80px rgba(0,0,0,0.9);
}
.left-contact h2 {
    font-size: 22px;
    font-weight: 600;
    color: var(--accent-gold);
    padding-bottom: 25px;
    text-shadow: 0 0 20px rgba(255,216,122,.6);
}
.cont-line {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}
.icon-b {
    min-width: 55px;
    min-height: 55px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #fff 0%, var(--accent-red) 40%, var(--accent-red-dark) 100%);
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    line-height: 55px;
    text-align: center;
    box-shadow: 0 0 20px rgba(196,30,58,.6),0 16px 36px rgba(0,0,0,0.9);
}
.dit-right h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    color: var(--accent-gold);
    text-shadow: 0 0 20px rgba(255,216,122,.6);
}
.dit-right p,
.dit-right a {
    font-size: 14px;
    font-weight: 300;
    color: var(--text-light);
    line-height: 1.4;
    word-break: break-word;
    transition: all var(--fast);
}
.dit-right a:hover {
    color: var(--accent-red);
    text-shadow: 0 0 15px rgba(196,30,58,.6);
}
.contact-block {
    background: rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-card), 0 0 20px rgba(255,216,122,.4);
    padding: 20px;
}

/* -------------------------------------------------
   NEWSLETTER / SUBSCRIBE
------------------------------------------------- */
.subscribe-box {
    padding: var(--section-padding-y) 0;
    background: radial-gradient(circle at 20% 20%, rgba(255,216,122,0.15) 0%, rgba(0,0,0,0) 60%), linear-gradient(135deg, #3a030c 0%, #000 80%);
    text-align: center;
    box-shadow: inset 0 0 80px rgba(0,0,0,0.9);
}
.subscribe-inner {
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
    color: var(--text-light);
}
.subscribe-inner h2 {
    font-family: 'Great Vibes', cursive;
    font-size: 64px;
    font-weight: 400;
    line-height: 1.1;
    color: var(--accent-gold);
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(255,216,122,.6);
}
.subscribe-inner p {
    color: var(--text-light);
    opacity: .8;
    margin-bottom: 20px;
}
.subscribe-inner .form-group {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
}
.subscribe-inner .form-group .form-control-1 {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,216,122,0.4);
    border-radius: var(--radius-btn);
    box-shadow: inset 0 0 8px rgba(0,0,0,0.8),0 0 20px rgba(255,216,122,.4);
    color: var(--text-light);
}
.subscribe-inner .form-group button {
    border: 0;
    border-radius: var(--radius-btn);
    cursor: pointer;
    padding: 12px 18px;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.2;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--accent-red) 0%, #8a0f23 100%);
    color: #fff;
    box-shadow: 0 0 20px rgba(196,30,58,.6),0 16px 36px rgba(0,0,0,0.9);
    transition: all var(--fast);
}
.subscribe-inner .form-group button:hover {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
    color: #000;
    box-shadow: 0 0 20px rgba(255,216,122,.6),0 20px 40px rgba(0,0,0,0.95);
}

/* -------------------------------------------------
   FOOTER
------------------------------------------------- */
.footer-box {
    background: #0a120d;
    border-top: 1px solid rgba(255,216,122,0.2);
    box-shadow: 0 -20px 40px rgba(0,0,0,0.9), 0 0 20px rgba(255,216,122,.4);
    padding: 20px 0;
    text-align: center;
    color: var(--text-dim);
    font-size: 13px;
    position: relative;
}
.footer-box .footer-company-name {
    color: var(--text-dim);
    font-size: 13px;
    font-weight: 400;
    margin: 0;
}
.footer-box .footer-company-name a {
    color: var(--accent-gold);
    text-decoration: underline;
    transition: all var(--fast);
}
.footer-box .footer-company-name a:hover {
    color: var(--accent-red);
    text-shadow: 0 0 15px rgba(196,30,58,.6);
}
.footer-box::before {
    content: "";
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 2px;
    background: radial-gradient(circle at 20% 50%, var(--accent-gold) 0%, rgba(0,0,0,0) 60%);
    filter: drop-shadow(0 0 6px var(--accent-gold));
    opacity: .8;
}

/* -------------------------------------------------
   HELLE SEKTIONEN (weiß / hellgrau) → LESBARKEIT FIX
   Das war dein Problem "weiß auf weiß".
   Alles in diesen Bereichen bekommt dunklen Text.
------------------------------------------------- */

/* Falls du Abschnitte hast wie services-box, properties-box, blog-box,
   oder allgemein helle Hintergründe am Ende der Seite */
.light-section,
.services-box,
.properties-box,
.blog-box {
    background-color: #ffffff !important;
    color: var(--text-dark) !important;
    box-shadow: none;
    padding: var(--section-padding-y) 0;
}

/* Überschriften in hellen Sektionen */
.light-section h1, .light-section h2, .light-section h3, .light-section h4, .light-section h5, .light-section h6,
.services-box h1, .services-box h2, .services-box h3, .services-box h4, .services-box h5, .services-box h6,
.properties-box h1, .properties-box h2, .properties-box h3, .properties-box h4, .properties-box h5, .properties-box h6,
.blog-box h1, .blog-box h2, .blog-box h3, .blog-box h4, .blog-box h5, .blog-box h6 {
    color: var(--text-dark) !important;
    text-shadow: none !important;
}

/* Normaler Text / p in hellen Sektionen */
.light-section p,
.services-box p,
.properties-box p,
.blog-box p,
.light-section .lead,
.services-box .lead,
.properties-box .lead,
.blog-box .lead {
    color: var(--text-dark) !important;
}

/* Links in hellen Sektionen */
.light-section a,
.services-box a,
.properties-box a,
.blog-box a {
    color: var(--accent-red) !important;
}
.light-section a:hover,
.services-box a:hover,
.properties-box a:hover,
.blog-box a:hover {
    color: var(--accent-gold) !important;
}

/* Karten / Boxen in hellen Sektionen (z.B. Blog-Karten) */
.blog-inner,
.properties-single {
    background: #fff;
    border-radius: var(--radius-card);
    border: 1px solid #ddd;
    box-shadow: 0 12px 24px rgba(0,0,0,0.08);
    color: var(--text-dark);
}
.blog-inner p,
.properties-single p {
    color: var(--text-dark);
}
.blog-inner a,
.properties-single a {
    background: var(--accent-red);
    color: #fff;
    border-radius: var(--radius-btn);
    display: inline-block;
    padding: 10px 18px;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 500;
    box-shadow: var(--shadow-glow-red), 0 10px 20px rgba(0,0,0,0.3);
}
.blog-inner a:hover,
.properties-single a:hover {
    background: var(--accent-gold);
    color: #000;
    box-shadow: var(--shadow-glow-gold), 0 12px 24px rgba(0,0,0,0.4);
}

/* kleine Badges in properties auf hellen Sektionen */
.for-sal,
.pro-price {
    background: var(--accent-red);
    color: #fff;
    font-size: 13px;
    padding: 5px 10px;
    border-radius: var(--radius-btn);
}
.pro-price {
    background: var(--accent-gold);
    color: #000;
}

/* Text in Contact-Like Listen, falls du die in hellen Sektionen verwendest */
.properties-dit h3,
.properties-dit p,
.properties-dit ul li,
.properties-dit ul li i {
    color: var(--text-dark) !important;
}

/* -------------------------------------------------
   RESPONSIVE BREAKPOINTS
------------------------------------------------- */

/* Tablet / kleiner */
@media (max-width: 991px) {

    body {
        padding-top: var(--header-height-mobile);
    }

    .top-header {
        height: var(--header-height-mobile);
        padding-top: 4px;
        padding-bottom: 4px;
    }

    .navbar-brand img {
        max-height: 40px;
    }

    /* Mobile-Menü: Standardmäßig ZU */
    .navbar-collapse {
        position: absolute;
        left: 0;
        right: 0;
        top: var(--header-height-mobile);
        background: rgba(15,26,18,0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border-top: 1px solid rgba(255,216,122,0.2);
        box-shadow: 0 30px 60px rgba(0,0,0,0.95), 0 0 20px rgba(255,216,122,.4);
        padding: 16px 20px;
        flex-direction: column;
        display: none;            /* wichtig */
        z-index: 9999;
    }

    /* Wenn JS die Klasse .is-open setzt → anzeigen */
    .navbar-collapse.is-open {
        display: flex;
    }

    .navbar-collapse ul {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    .navbar-collapse ul li {
        width: 100%;
    }

    .navbar-collapse ul li a {
        width: 100%;
        font-size: 16px;
        text-align: left;
        background: rgba(255,255,255,0.03);
        border: 1px solid rgba(255,216,122,0.15);
        border-radius: var(--radius-btn);
        padding: 12px 15px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.7);
    }

    .navbar-collapse ul li a.active,
    .navbar-collapse ul li a:hover,
    .navbar-collapse ul li a:focus {
        background: radial-gradient(circle at 20% 20%, var(--accent-red) 0%, var(--accent-red-dark) 60%);
        border-color: rgba(196,30,58,0.6);
        color: #fff;
        box-shadow: var(--shadow-glow-red), 0 16px 36px rgba(0,0,0,0.9);
    }

    .navbar-toggler {
        display: block;
    }

    /* Hero kleiner */
    .home-slider {
        height: 420px;
    }
    .lbox-details {
        padding: 30% 20px 0;
        max-width: 600px;
    }
    .lbox-details h1 {
        font-size: 40px;
    }
    .lbox-details h2 {
        font-size: 22px;
    }
    .lbox-details p {
        font-size: 15px;
        line-height: 1.4;
    }

    /* About Text in der Mitte */
    .about-main-info {
        text-align: center;
    }
    .about-main-info h2 {
        font-size: 34px;
        line-height: 1.2;
    }
    .about-img {
        text-align: center;
        padding: 15px 0;
    }

    /* Galerie -> 2 Spalten */
    .gallery-box ul li {
        width: 48%;
        margin: 0 1% 20px;
    }

    /* Newsletter untereinander */
    .subscribe-inner .form-group {
        flex-direction: column;
    }
    .subscribe-inner .form-group .form-control-1,
    .subscribe-inner .form-group button {
        width: 100%;
    }
}

/* Handy klein */
@media (max-width: 575px) {

    .home-slider {
        height: 360px;
    }
    .lbox-details {
        padding: 32% 15px 0;
    }
    .lbox-details h1 {
        font-size: 32px;
    }
    .lbox-details h2 {
        font-size: 20px;
    }

    .lead {
        font-size: 16px;
        line-height: 1.5;
        color: var(--text-light);
    }
    p {
        font-size: 15px;
        line-height: 1.5;
    }

    /* Galerie -> 1 Spalte */
    .gallery-box ul li {
        width: 98%;
        margin: 0 1% 16px;
    }

    .left-contact h2 {
        font-size: 18px;
    }
    .dit-right h4 {
        font-size: 15px;
    }
    .dit-right p,
    .dit-right a {
        font-size: 13px;
    }

    .submit-button .btn-common {
        width: 100%;
        text-align: center;
    }

    .subscribe-inner h2 {
        font-size: 48px;
    }
}
