:root {
    --bg-color: #fff9f5;
    --primary-peach: #ffb38a;
    --soft-purple: #9d8db5;
    --honey-yellow: #ffda79;
    --mint-green: #b8e994;
    --text-color: #2d3436;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #fff9f5 0%, #fff0e6 100%);
    color: var(--text-color);
    margin: 0;
    display: flex;
    min-height: 100vh;
}

/* Layout Elementen */
.content-wrapper {
    flex: 1;
    padding: 40px;
    max-width: 1000px;
}

/* Navigatie Sidebar */
.sidebar-right {
    width: 300px;
    background: #ffffff;
    border-left: 2px solid #f0f0f0;
    padding: 25px;
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 0;
    height: 100vh;
}

.logo-container img {
    width: 250px;
    height: 250px;
    object-fit: cover;
    margin-bottom: 40px;
    border-radius: 12px;
}

.nav-group h3 {
    font-size: 0.9rem;
    color: #a0a0a0;
    margin-bottom: 15px;
}

.nav-group ul {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.nav-group li {
    margin-bottom: 12px;
}

.nav-group a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-group a:hover {
    color: var(--primary-peach);
}

/* Speciale styling voor links in de tekst (met onderstreping effect) */
.content-wrapper p a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    position: relative;
    padding: 0 2px;
    z-index: 1;
}

.content-wrapper p a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background-color: var(--primary-peach);
    opacity: 0.4;
    z-index: -1;
    transition: height 0.2s ease, opacity 0.2s ease;
}

.content-wrapper p a:hover::after {
    height: 100%;
    opacity: 0.6;
}

/* Beweging: Inschuif-animatie */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.content-wrapper > section {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Grid en Secties */
.hero-section {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 60px;
}

.feature-row {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
}

.feature-row.reverse {
    flex-direction: row-reverse;
}

.text-content {
    flex: 1;
}

.visual-content {
    flex: 1;
}

/* Blokken en Kaarten met schaduwen */
.color-block, .info-card {
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}

.color-block:hover, .info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Specifieke Kleurblokken */
.yellow { background-color: var(--honey-yellow); }
.purple { background-color: var(--soft-purple); color: white; }
.mint-block { background-color: var(--mint-green); padding: 50px; }
.info-blue { background-color: #e3f2fd; padding: 30px; border-radius: 20px; }
.info-orange { background-color: #fff3e0; padding: 30px; border-radius: 20px; }

/* Speciale Fles-blok Layout */
.bottle-block {
    background-color: #fce4ec;
    border-radius: 50% 20% 50% 20%;
    padding: 40px;
    text-align: center;
}

.bottle-image {
    width: 80%;
    border-radius: 15px;
}

/* Afbeeldingen */
.image-block img, .image-card img, .rounded-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.image-block img:hover, .image-card img:hover, .rounded-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.icon {
    font-size: 2rem;
    margin-bottom: 10px;
}


/* Aanvullende CSS voor Homepage uitbreiding */

/* Paragraaf spacing voor long-form content */
.content-wrapper p {
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.05rem;
    color: #4a4a4a;
}

/* Actie-links (Lees meer knoppen / opvallende links) */
.action-link {
    display: inline-block;
    margin-top: 15px;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-color);
    text-decoration: none;
    border-bottom: 2px solid var(--primary-peach);
    padding-bottom: 3px;
    transition: all 0.3s ease;
}

.action-link:hover {
    color: var(--primary-peach);
    transform: translateX(5px); /* Subtiele schuif naar rechts */
}

/* Speciale kleur overriding voor actie-links in donkere blokken */
.purple .action-link {
    color: #ffffff;
    border-bottom-color: var(--mint-green);
}

.purple .action-link:hover {
    color: var(--mint-green);
}

/* 4-koloms grid voor theesoorten (Teaser sectie) */
.teaser-section {
    margin-top: 80px;
    margin-bottom: 60px;
    padding-top: 40px;
    border-top: 2px dashed #f0f0f0;
}

.grid-4-cols {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.teaser-card {
    text-decoration: none;
    color: var(--text-color);
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.teaser-card h3 {
    margin-top: 0;
    margin-bottom: 10px;
}

.teaser-card p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0;
}

.teaser-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.teaser-card.purple {
    color: white; /* Tekstkleur fix voor paarse kaart */
}

/* ==========================================================================
   Kleurrijke Footer Styling
   ========================================================================== */

.site-footer {
    background: linear-gradient(135deg, var(--primary-peach) 0%, var(--honey-yellow) 100%);
    border-radius: 24px;
    padding: 40px;
    margin-top: 60px;
    color: var(--text-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-disclaimer h2, .footer-menu h2 {
    font-size: 1.2rem;
    margin-top: 0;
    margin-bottom: 15px;
    color: var(--text-color);
}

.footer-disclaimer p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
    color: rgba(0, 0, 0, 0.75);
}

.footer-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 10px;
}

.footer-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.footer-menu a:hover {
    opacity: 0.6;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 25px;
}

.footer-logo img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.footer-logo img:hover {
    transform: scale(1.05);
}

.footer-legal {
    text-align: right;
    font-size: 0.85rem;
}

.footer-legal p {
    margin: 0 0 8px 0;
    font-weight: 700;
}

.legal-links a {
    color: var(--text-color);
    text-decoration: none;
    margin-left: 10px;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.legal-links a:hover {
    opacity: 0.6;
    text-decoration: underline;
}

/* Responsiveness voor de footer */
@media (max-width: 800px) {
    .footer-top {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    .footer-legal {
        text-align: center;
    }
    .legal-links a {
        margin: 0 5px;
    }
}

/* ==========================================================================
   Promo Blok Thee.be
   ========================================================================== */

.promo-block {
    display: flex;
    align-items: center;
    gap: 40px;
    margin: 60px 0;
    padding: 40px;
    background: linear-gradient(135deg, #ffffff 0%, #fff9f5 100%);
    border: 4px solid var(--primary-peach); /* Opvallende, kleurrijke rand */
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(255, 179, 138, 0.2); /* Subtiele perzik-schaduw */
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.promo-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(255, 179, 138, 0.35);
}

.promo-visual {
    flex: 1;
}

.promo-visual img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.promo-content {
    flex: 1.5;
}

.promo-content h2 {
    color: var(--text-color);
    margin-top: 0;
    font-size: 1.8rem;
}

.promo-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #4a4a4a;
}

/* Opvallende actieknop voor de promo */
.promo-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-peach) 0%, #ff9a66 100%);
    color: #ffffff !important;
    text-decoration: none;
    padding: 16px 32px;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px; /* Mooie ronde pill-vorm */
    box-shadow: 0 8px 20px rgba(255, 179, 138, 0.4);
    transition: all 0.3s ease;
}

.promo-btn:after {
    display: none; /* Verwijdert de standaard link-underline uit onze basis CSS */
}

.promo-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(255, 179, 138, 0.6);
    color: #ffffff;
}

/* Responsiveness voor kleinere schermen */
@media (max-width: 768px) {
    .promo-block {
        flex-direction: column;
        padding: 30px;
        text-align: center;
    }
}