/**
 * CSS für die Getränkekarte des Red Rabbit Clubs
 */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.9));
}
/* ============== Kategorie-Navigation ============== */
.categories-nav {
    margin-bottom: 40px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 10px;
}

.categories-slider {
    display: flex;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    min-width: min-content;
}

.category-tab {
    padding: 12px 25px;
    font-weight: 500;
    color: var(--light);
    position: relative;
    text-align: center;
    white-space: nowrap;
    transition: var(--transition);
}

.category-tab::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.category-tab:hover {
    color: var(--primary-light);
}

.category-tab.active {
    color: var(--primary);
    font-weight: 600;
}

.category-tab.active::after {
    transform: scaleX(1);
}

/* ============== Getränkeliste ============== */
.drinks-container {
    margin-bottom: 50px;
}

.subcategory-heading {
    margin: 30px 0 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.subcategory-heading h3 {
    font-size: 1.6rem;
    margin-bottom: 0;
    color: var(--primary);
}

.drinks-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

@media (min-width: 576px) {
    .drinks-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .drinks-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1200px) {
    .drinks-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.drink-item {
    background-color: rgba(26, 26, 26, 0.5);
    padding: 20px;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    /* Eckige Gestaltung */
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 0);
}

.drink-item:hover {
    background-color: rgba(26, 26, 26, 0.8);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.drink-item.featured::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 50px 50px 0;
    border-color: transparent var(--primary) transparent transparent;
    z-index: 1;
}

.drink-name {
    font-size: 1.2rem;
    margin-bottom: 10px;
    padding-right: 30px; /* Platz für Badge */
    position: relative;
    hyphens: auto;
    word-break: break-word;
}

.featured-badge {
    position: absolute;
    top: 0;
    right: 0;
    color: #fff;
    z-index: 2;
    font-size: 14px;
}

.drink-description {
    margin-bottom: 15px;
    font-size: 0.9rem;
    opacity: 0.8;
}

.drink-notes {
    font-size: 0.85rem;
    font-style: italic;
    margin-bottom: 15px;
    opacity: 0.7;
}

.drink-meta {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: auto;
}

.drink-volume {
    font-size: 0.9rem;
    color: var(--gray);
}

.drink-price {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--light);
}

.drink-price-bottle {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-top: 5px;
    text-align: right;
}

/* ============== Specials-Bereich ============== */
.specials-section {
    background-color: rgba(26, 26, 26, 0.3);
    padding: 40px 0;
    margin-top: -60px;
    position: relative;
    z-index: 1;
}

.specials-slider {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.special-card {
    flex: 1;
    min-width: 280px;
    background: linear-gradient(135deg, rgba(230, 0, 0, 0.2), rgba(26, 26, 26, 0.8));
    padding: 25px;
    border-left: 3px solid var(--primary);
    transition: var(--transition);
    /* Eckige Gestaltung */
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 0);
}

.special-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(230, 0, 0, 0.2);
}

.special-title {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.special-description {
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.special-time, .special-discount {
    display: flex;
    align-items: center;
    margin-top: 10px;
    font-size: 0.9rem;
}

.special-time i, .special-discount i {
    margin-right: 8px;
    font-size: 0.85rem;
    color: var(--primary-light);
}

.special-time span {
    margin-left: 5px;
    opacity: 0.8;
}

/* ============== Empfohlene Cocktails ============== */
.featured-cocktails {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.7)), url('../images/cocktails-bg.jpg') center/cover no-repeat;
    padding: 80px 0;
}

.cocktails-slider {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 40px;
}

.cocktail-card {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    background-color: rgba(26, 26, 26, 0.8);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    /* Eckige Gestaltung */
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 0);
}

.cocktail-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.cocktail-image {
    height: 200px;
    overflow: hidden;
}

.cocktail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.cocktail-card:hover .cocktail-image img {
    transform: scale(1.1);
}

.cocktail-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.cocktail-name {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--light);
}

.cocktail-description {
    font-size: 0.9rem;
    margin-bottom: 15px;
    opacity: 0.8;
    flex-grow: 1;
}

.cocktail-price {
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: auto;
    align-self: flex-end;
}

/* ============== Team-Bereich ============== */
.team-section {
    background-color: var(--secondary);
    padding: 80px 0;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
    justify-content: center;
}

.team-member {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background-color: rgba(10, 10, 10, 0.5);
    overflow: hidden;
    transition: var(--transition);
    /* Eckige Gestaltung */
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 0);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.member-image {
    height: 300px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.05);
}

.member-content {
    padding: 25px;
    text-align: center;
}

.member-name {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.member-position {
    color: var(--primary);
    font-size: 0.9rem;
    margin-bottom: 15px;
    font-weight: 500;
}

.member-description {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Responsives Design für verschiedene Bildschirmgrößen */
@media (max-width: 991px) {
    .drink-item {
        padding: 15px;
    }
    
    .drink-name {
        font-size: 1.1rem;
    }
    
    .cocktail-card {
        min-width: 220px;
    }
    
    .cocktail-image {
        height: 180px;
    }
}

@media (max-width: 767px) {
    .subcategory-heading h3 {
        font-size: 1.4rem;
    }
    
    .special-card {
        flex: 1 1 100%;
    }
    
    .team-member {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .categories-slider {
        justify-content: flex-start;
    }
    
    .category-tab {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    
    .drink-name {
        font-size: 1rem;
    }
    
    .cocktail-content {
        padding: 15px;
    }
    
    .cocktail-name {
        font-size: 1.2rem;
    }
}

/* CSS für die Admin-Ansicht der Getränkeverwaltung */
.admin-content .drinks-table th:nth-child(5),
.admin-content .drinks-table th:nth-child(6),
.admin-content .drinks-table th:nth-child(7) {
    width: 100px;
}

.admin-content .drinks-table th:nth-child(8),
.admin-content .drinks-table th:nth-child(9) {
    width: 80px;
}

.status-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.1);
    color: var(--gray);
}

.status-icon.featured {
    background-color: rgba(230, 0, 0, 0.2);
    color: var(--primary);
}
/* Zusatzstoffe Legende Styling */
.additives-legend {
    margin-top: 40px;
    padding: 25px;
    background-color: rgba(26, 26, 26, 0.5);
    border-left: 3px solid var(--primary);
    /* Eckige Gestaltung */
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 0);
}

.legend-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.legend-items {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
}

@media (min-width: 576px) {
    .legend-items {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .legend-items {
        grid-template-columns: repeat(4, 1fr);
    }
}

.legend-item {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

.legend-symbol {
    font-weight: bold;
    margin-right: 10px;
    min-width: 20px;
    display: inline-block;
    color: var(--primary-light);
}

.legend-description {
    opacity: 0.9;
}