/* 
 * Tablet CSS für The Root Wellness
 * Wird zusätzlich zu mobile.css geladen für Geräte mit min-width: 768px
 */

/* Body Padding für fixiertes Header anpassen */
body {
    padding-top: 100px; /* Angepasst für Tablet-Header-Höhe */
}

/* Header und Navigation verbessern */
header {
    padding: 1.5rem 0; /* Kein seitliches Padding mehr */
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    max-width: 1100px; /* Angepasst an main content-box Breite */
    width: 100%; /* Volle Breite bis zur max-width */
    background-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 0 0 12px 12px; /* Abgerundete untere Ecken */
}

/* Logo und Navigation Container für Tablet */
.header-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
    padding: 0 5vw; /* Angepasst an content-box Padding */
    box-sizing: border-box; /* Wichtig für korrekte Breitenberechnung mit Padding */
}

.logo-container {
    margin: 0;
    text-align: center;
}

.logo {
    max-width: 35px;
    height: auto;
}

nav {
    margin: 0;
}

nav ul {
    justify-content: center;
    gap: 1rem;
}

/* Main Content Bereiche */
main {
    padding: 2rem;
}

/* Produkt-Hero-Bereich zweispaltig */
#product-hero {
    flex-direction: row;
    align-items: flex-start;
    gap: 2rem;
}

.product-image-container {
    flex: 0 0 45%;
    margin-bottom: 0;
}

.product-info {
    flex: 1;
}

/* Trinity Pack Produktgitter zweispaltig */
.product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

/* Responsive Anpassungen für den Podcast-Bereich */
#podcast {
    padding: 2rem;
}

/* KI-Chat Layout verbessern */
#chat-interface {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
}

#questionInput {
    flex: 1;
    margin: 0;
}

#sendQuestion {
    width: auto;
    margin-bottom: 0;
}

#answerOutput {
    width: 100%;
    margin-top: 1.5rem;
}

.affiliate-text {
    font-size: 13px;
    text-align: left;
}

.dropdown-menu a:hover {
    background-color: #f0f0f0;
}

/* Pakete-Überschrift hervorheben */
.dropdown-menu a strong {
    color: #2e7d32;
    font-weight: 700;
}

/* Eingerückte Pakete-Links */
.dropdown-menu a[href*="pack.html"]:not([href="trinity-pack.html"]:first-of-type) {
    padding-left: 20px;
    font-size: 0.9em;
    color: #555;
}

.dropdown-menu a[href*="pack.html"]:not([href="trinity-pack.html"]:first-of-type):hover {
    background-color: #e8f5e8;
} 