/* =========================================
   HERO FULLSCREEN
   ========================================= */

.tlc-hero-main__title-main {
    color: #fff;
}

.tlc-hero-main h1,
.tlc-hero-main .h1-xtra {
    color: #fff;
}

.tlc-hero-main h3 {
	margin-top: 5px;
}

.tlc-hero-main .h2+*,
.tlc-hero-main h2+*,
.tlc-hero-main .h3+*,
.tlc-hero-main h3+* {
    margin-top: 5px;
}

.tlc-pillars .h2+*,
.tlc-pillars h2+*,
.tlc-pillars .h3+*,
.tlc-pillars h3+* {
    margin-top: 5px;
}

.tlc-hero-main {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    min-height: 100dvh;
    overflow: hidden;
    color: #fff;
}

.tlc-hero-main__media {
    position: absolute;
    inset: 0;
}

.tlc-hero-main__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Overlay */
.tlc-hero-main__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.7), rgba(0,0,0,0.1));
}

/* Content */
.tlc-hero-main__inner {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 80px 20px;
}

.tlc-hero-main__content {
    max-width: 600px;
}


.tlc-hero-main__inner {
    position: relative;
    z-index: 2;

    min-height: 100vh;
    min-height: 100svh;
    min-height: 100dvh;

    display: flex;
    align-items: center;        /* ← VERTIKAL ZENTRIERT */
    justify-content: flex-start;

    padding-left: 40px;
    padding-right: 40px;

    padding-top: 80px;          /* Platz für Menü */
    padding-bottom: 40px;
}

.tlc-hero-main__inner {
    align-items: center;
    transform: translateY(-120px);
}

@media (max-width: 768px) {
    .tlc-hero-main__inner {
        bottom: -260px;
    }
}

/* Title */
.tlc-hero-main__title-main {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    letter-spacing: -0.5px;
    font-size: calc(200%);
    line-height: calc(115%);
    color: rgba(255,255,255,0.92);
}

.tlc-pillar h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}
.tlc-hero-main__title-sub {
    display: block;
    font-size: clamp(20px, 3vw, 28px);
}

/* CTA */
.tlc-hero-main__btn {
    display: inline-block;
    padding: 14px 22px;
    border-radius: 999px;
    text-decoration: none;
    margin-top: 10px;
}

.tlc-hero-main__btn--primary {
    background: #fff;
    color: #000;
}

.tlc-hero-main__btn--ghost {
    border: 1px solid #fff;
    color: #fff;
}

/* =========================================
   PILLARS
   ========================================= */

.tlc-pillar {
    max-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}


.tlc-pillars {
    position: relative;
    margin-top: -15%; /* zieht sie ins Hero */
    padding-bottom: 200px; /* zieht sie ins Hero */
}

.tlc-pillars-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 16px;
    max-width: 1100px;
    margin: auto;
}

.tlc-pillar {
    padding: 24px;
    background: rgba(255,255,255,0.92);
    border-radius: 14px;
    text-decoration: none;
    color: #000;
    backdrop-filter: blur(6px);
}


.tlc-home-entry {
    position: relative;
}

.tlc-pillars {
    position: absolute;
    bottom: 100px;   /* ← DEIN WUNSCH */
    left: 0;
    width: 100%;
    z-index: 5;
    padding: 0 20px;
}


.tlc-home-entry {
    min-height: 100vh;
}
/* Mobile */
@media(max-width:768px){
    .tlc-pillars-grid {
        grid-template-columns: 1fr;
    }
}

.tlc-hero-main__video {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center center;

    z-index: 0;
}

@media (max-width: 768px) {
    .tlc-hero-main__video {
        object-position: center;
    }
}

.tlc-hero-main__overlay {
    background: linear-gradient(
        90deg,
        rgba(0,0,0,0.75) 0%,
        rgba(0,0,0,0.30) 60%,
        rgba(0,0,0,0.05) 100%
    );
}

@media (max-width: 768px) {

    .tlc-pillars {
        bottom: 70px;   /* ← DEIN WUNSCH */
    }

    .tlc-pillar {
        max-height: 70px;
        bottom: 20px;
        flex-direction: row;
        text-align: center;
        justify-content: space-around;
        flex-wrap: nowrap;
        align-content: space-around;
        align-items: center;
    }
    
}


.tlc-hero-main__media {
    background: #000;
}

.tlc-hero-main__media,
.tlc-hero-main__video {
    background: #000;
}