/* ===============================
   LEISTUNGEN GRID FULL
================================ */

.leistungen-grid-full {
    display: grid;
    grid-template-columns: 1fr; /* 1 item per row */
    gap: 30px;
}

.leistungen-card-full {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: transform .6s cubic-bezier(.19,1,.22,1);
}

/* Background image layer (for zoom effect) */
.leistungen-card-full::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: inherit;
    background-size: cover;
    background-position: center;
    transition: transform .8s cubic-bezier(.19,1,.22,1);
    z-index: 0;
}

/* Lift effect */
.leistungen-card-full:hover {
    transform: translateY(-8px);
}

/* Background zoom */
.leistungen-card-full:hover::before {
    transform: scale(1.05);
}

.leistungen-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(22, 30, 50, 0.7) 0%,
        rgba(22, 30, 50, 0.3) 50%,
        rgba(22, 30, 50, 0.2) 100%
    );
    z-index: 1;
}

.leistungen-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 40px;
    color: #ffffff;
}

.leistungen-title {
    font-size: 38px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #ffffff;
    text-transform: uppercase;
}

.leistungen-intro {
    margin-bottom: 30px;
    color: #ffffff;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.8em;
}

.leistungen-btn {
    display: inline-block;
    padding: 12px 28px;
    border: 1px solid #ffffff;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.leistungen-btn:hover {
    background: #ffffff;
    color: #000000;
}

.leistungen-divider {
    max-width: 400px;
    height: 2px;
    background-color: #ffffff;
    margin: 0px 0px 20px 0px;
}









/* ===============================
   ANGEBOT GRID
================================ */

.angebot-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Tablet */
@media (max-width: 1024px) {
    .angebot-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 767px) {
    .angebot-grid {
        grid-template-columns: 1fr;
    }
}

.angebot-card {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: transform .6s cubic-bezier(.19,1,.22,1);
}

/* Background zoom layer */
.angebot-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: inherit;
    background-size: cover;
    background-position: center;
    transition: transform .8s cubic-bezier(.19,1,.22,1);
    z-index: 0;
}

/* Lift */
.angebot-card:hover {
    transform: translateY(-8px);
}

/* Zoom */
.angebot-card:hover::before {
    transform: scale(1.05);
}

.angebot-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(22, 30, 50, 0.75) 0%,
        rgba(22, 30, 50, 0.65) 50%,
        rgba(22, 30, 50, 0.42) 100%
    );
    z-index: 1;
}

.angebot-content {
    position: relative;
    z-index: 2;
    padding: 30px;
    color: #ffffff;
  /*  text-align: center;*/
}

.angebot-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    color: #ffffff;
}

.angebot-text {
    font-size: 15px;
    line-height: 1.7em;
    font-weight: 300;
    color: #ffffff;
}



.angebot-divider {
    max-width: 300px;
    height: 2px;
    background-color: #ffffff;
    margin: 0px 0px 20px 0px;
}


.angebot-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}











/* ===============================
   FEATURE GRID
================================ */

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Tablet */
@media (max-width: 1024px) {
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 767px) {
    .feature-grid {
        grid-template-columns: 1fr;
    }
}

.feature-card {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: transform .6s cubic-bezier(.19,1,.22,1);
}

/* Background zoom */
.feature-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: inherit;
    background-size: cover;
    background-position: center;
    transition: transform .8s cubic-bezier(.19,1,.22,1);
    z-index: 0;
}

/* Lift */
.feature-card:hover {
    transform: translateY(-8px);
}

/* Zoom */
.feature-card:hover::before {
    transform: scale(1.05);
}

.feature-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(22, 30, 50, 0.75) 0%,
        rgba(22, 30, 50, 0.65) 50%,
        rgba(22, 30, 50, 0.42) 100%
    );
    z-index: 1;
}

.feature-content {
    position: relative;
    z-index: 2;
    padding: 30px;
    color: #ffffff;
}

.feature-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    color: #ffffff;
}

.feature-text {
    font-size: 15px;
    line-height: 1.7em;
    font-weight: 300;
    color: #ffffff;
}

.feature-divider {
    max-width: 200px;
    height: 2px;
    background-color: #ffffff;
    margin: 0px 0px 20px 0px;
}










/* ================================
   DRINKS MENU
================================ */

.tb-menu-wrapper{
/*	background:#e9e3da;
	padding:80px 20px;*/
	

	display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.tb-menu-section{
/*	max-width:1100px;*/
	margin:0 auto 20px;
}

.tb-menu-title{
	font-size:28px;
	font-weight:700;
	letter-spacing:2px;
	text-transform:uppercase;
	color:#1f2635;
	margin-bottom:12px;
}

.tb-menu-desc{
	font-size:14px;
	letter-spacing:1px;
	text-transform:uppercase;
	color:#6b6b6b;
	margin-bottom:30px;
	max-width:650px;
}

.tb-menu-divider{
	height:1px;
	background:#d2ccc2;
	margin:20px 0 40px;
}

.tb-menu-grid{
	display:grid;
	grid-template-columns:repeat(2,1fr);
	gap:40px 60px;
}

@media(max-width:768px){
	.tb-menu-grid{
		grid-template-columns:1fr;
	}
}

.tb-menu-item-title{
	font-size:18px;
	font-weight:700;
	text-transform:uppercase;
	color:#1f2635;
	margin:0;
}

.tb-menu-row{
	display:flex;
	justify-content:space-between;
	align-items:center;
	margin-bottom:8px;
}

.tb-menu-tag{
	font-size:11px;
	text-transform:uppercase;
	letter-spacing:2px;
	color:#9a948a;
}

.tb-menu-item-desc{
	font-size:13px;
	font-style:italic;
	color:#6b6b6b;
	line-height:1.6;
}





.tb-animate{
	opacity:0;
	transform:translateY(18px);
	transition:opacity .8s ease, transform .8s ease;
}

.tb-animate.tb-visible{
	opacity:1;
	transform:translateY(0);
}

.tb-animate.tb-fade-in{transform:none}
.tb-animate.tb-slide-in{transform:translateX(22px)}
.tb-animate.tb-slide-in.tb-visible{transform:translateX(0)}
.tb-animate.tb-fade-up{transform:translateY(22px)}
.tb-animate.tb-fade-up.tb-visible{transform:translateY(0)}








/* ===============================
   CONTACT GRID
================================ */

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* Mobile */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

.contact-card {
    position: relative;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #161e32;
    transition: transform .6s cubic-bezier(.19,1,.22,1);
}

/* Lift effect */
.contact-card:hover {
    transform: translateY(-8px);
}

/* Subtle overlay for depth */
.contact-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(22, 30, 50, 0.85) 0%,
        rgba(22, 30, 50, 0.75) 50%,
        rgba(22, 30, 50, 0.65) 100%
    );
    z-index: 1;
}

.contact-content {
    position: relative;
    z-index: 2;
    padding: 40px;
    text-align: center;
    color: #ffffff;
}

.contact-title {
    font-size: 22px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
	color:#fff;
}

.contact-divider {
    width: 80px;
    height: 2px;
    background-color: #fff;
    margin: 0 auto 20px;
}

.contact-text {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 1px;
}

.contact-text a {
    color: #ffffff;
    text-decoration: none;
    transition: color .3s ease;
}

.contact-text a:hover {
    color: #B59043;
}


@media(max-width:980px){
	.leistungen-title {
		font-size:22px;;
	}
	.leistungen-overlay { 
	background: linear-gradient(to top, rgba(22, 30, 50, 0.9) 0%, rgba(22, 30, 50, 0.7) 50%, rgba(22, 30, 50, 0.9) 100%);
	}
	
	.tb-menu-wrapper{
	display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
}
	
	.tb-menu-title { 
	font-size:18px;
	}
}




















/*TEAM*/
.team-grid {
    display: grid;
    gap: 2rem;
}


.team-grid {
  display: grid;
  gap: 24px;
}

/* Desktop – max 4 items */
@media (min-width: 1200px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Tablet */
@media (max-width: 1199px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 640px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}

.team-member {
    background: #f9f9f9;
    border-radius: 0px;
    overflow: hidden;
    text-align: center;
    padding: 1.5rem;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.team-image {
  overflow: hidden;
}


.team-image img {
  width: 100%;
  height: 650px;
  object-fit: cover;
  object-position: top center;
  margin-bottom: 1rem;
  display: block;
}

.team-image img {
/*    width: 100%;
    height: auto;*/
 /*   border-radius: 50%;*/
 /*   max-width: 150px;*/
/*    margin-bottom: 1rem;*/
}

.team-info h3 {
    margin: 0.5rem 0 0;
}

.team-position, .team-city {
    color: #666;
    font-size: 0.95rem;
}

.team-contact {
    margin-top: 1rem;
}

.team-contact a {
    margin: 0 8px;
    color: #0b486b;
    font-size: 1.2rem;
    text-decoration: none;
    transition: color 0.2s;
}

.team-contact a:hover {
    color: #00334e;
}


.team-contact a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin: 0 6px;
    background-color: #161e32;
    color: #fff;
    border-radius: 50%; /* macht die Icons rund */
    font-size: 1.1rem;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
}

.team-contact a:hover {
    background-color: #fff;
    color: #161e32;
}



.team-contact a svg {
    width: 18px;
    height: 18px;
    fill: #ffffff;
}
.team-contact a:hover svg {
    fill: #161e32;
}







@media (max-width: 980px) {

.team-image img {

    height: 370px;

}
}





.angebot-content {
    position: absolute;
    bottom: 20px;
}
