:root {
    --primary-pink: #ec4899;
    --primary-danger: #ef4444;
    --vanilla-cream: #fff8e7;
    --soft-rose: #fce7f3;
    --soft-yellow: #fef3c7;
    --soft-blue: #e0f2fe;
    --chocolate: #6b3a2a;
    --text-dark: #1f2937;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
    overscroll-behavior-x: none;
    touch-action: pan-y pinch-zoom;
}

body {
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    color: var(--text-dark);
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

form,
main,
section,
.container,
.container-fluid,
.row,
.col,
[class*="col-"] {
}

img,
svg,
iframe,
video {
    max-width: 100%;
    height: auto;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
}

.brand-font {
    font-family: 'Pacifico', cursive;
}

.navbar {
    transition: all 0.3s ease;
    background-color: #ffffff !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-weight: 700;
    text-decoration: none;
    margin-right: 1.5rem;
}

.nav-link {
    font-weight: 500;
    color: #6b7280 !important;
    transition: color 0.3s ease;
    word-break: break-word;
}

.nav-link:hover {
    color: var(--primary-pink) !important;
}

.navbar-nav {
    gap: 0.4rem;
}

.card,
.menu-card,
.event-plan,
.pricing-banner,
.promo-note,
.event-callout {
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover,
.menu-card:hover,
.event-plan:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(180, 60, 60, 0.14) !important;
}

.btn-danger {
    background-color: var(--primary-danger);
    border-color: var(--primary-danger);
    transition: all 0.3s ease;
}

.btn-danger:hover {
    background-color: #dc2626;
    border-color: #dc2626;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(239, 68, 68, 0.3);
}

.btn-outline-danger {
    color: var(--primary-danger);
    border-color: var(--primary-danger);
}

.btn-outline-danger:hover {
    background-color: var(--primary-danger);
    border-color: var(--primary-danger);
}

.badge {
    font-family: 'Pacifico', cursive;
    font-size: 0.65rem;
    padding: 0.35rem 0.65rem;
}

.form-control,
.form-select {
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-danger);
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.progress {
    background-color: #e5e7eb;
    border-radius: 9999px;
}

.progress-bar {
    background-color: var(--primary-danger);
}

.text-danger {
    color: var(--primary-danger) !important;
}

.bg-danger {
    background-color: var(--primary-danger) !important;
}

.bg-dark {
    background-color: #ffffff !important;
}

.border-danger {
    border-color: var(--primary-danger) !important;
}

.rounded-4 {
    border-radius: 1.5rem;
}

.rounded-5 {
    border-radius: 2rem;
}

.shadow-lg {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.min-vh-100 {
    min-height: 100vh;
}

.sticky-top {
    position: sticky;
    top: 0;
    z-index: 1020;
}

a {
    color: var(--primary-danger);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #dc2626;
}

footer {
    background-color: #ffffff;
    color: #374151;
}

footer a {
    color: #374151;
}

footer a:hover {
    color: var(--primary-danger);
}

.alert {
    border-radius: 1rem;
    border: none;
}

.alert-success {
    background-color: #d1fae5;
    color: #065f46;
}

.alert-danger {
    background-color: #fee2e2;
    color: #991b1b;
}

.alert-warning {
    background-color: #fef3c7;
    color: #92400e;
}

.alert-info {
    background-color: #dbeafe;
    color: #0c2d6b;
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.z-1 {
    position: relative;
    z-index: 1;
}

.hero-section {
    position: relative;
}

.hero-home {
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-image:
        linear-gradient(rgba(255, 248, 231, 0.42), rgba(252, 231, 243, 0.55)),
        url('../afbeeldingen/ijskar.png');
    background-size: cover;
    background-position: center;
}

.hero-home-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(244, 114, 182, 0.2), transparent 30%),
        radial-gradient(circle at bottom left, rgba(167, 243, 208, 0.2), transparent 30%);
}

.hero-home-content {
    padding: 3rem 2rem;
}

.product-card {
    overflow: hidden;
    background: #ffffff;
}

.product-image-wrap {
    padding: 1.5rem 1.5rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 220px;
}

.product-image {
    max-height: 180px;
    width: auto;
    object-fit: contain;
}

.flavor-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.flavor-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(180, 60, 60, 0.14) !important;
}

.smaken-page {
    background: linear-gradient(180deg, var(--vanilla-cream) 0%, #ffffff 100%);
}

.smaken-subtitle {
    font-size: 1.2rem;
}

.smaken-intro {
    max-width: 760px;
}

.pricing-banner {
    background: linear-gradient(135deg, var(--soft-rose) 0%, var(--soft-yellow) 100%);
}

.price-tile {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 1rem;
    padding: 1rem;
    text-align: center;
}

.price-tile strong {
    display: block;
    font-size: 1.5rem;
    color: var(--primary-danger);
}

.price-count {
    display: block;
    margin-bottom: 0.35rem;
    color: #4b5563;
}

.menu-card {
    background: #ffffff;
}

.flavor-pill {
    background: linear-gradient(135deg, var(--soft-rose) 0%, #fff1f2 100%);
    border-radius: 999px;
    padding: 0.9rem 1rem;
    font-weight: 600;
    text-align: center;
    min-height: 100%;
}

.flavor-pill-cool {
    background: linear-gradient(135deg, var(--soft-blue) 0%, #f0f9ff 100%);
}

.menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu-list li {
    padding: 0.85rem 0;
    border-bottom: 1px solid #f1f5f9;
    font-weight: 500;
}

.menu-list li:last-child {
    border-bottom: none;
}

.coupe-item {
    height: 100%;
    padding: 1rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, #fff7ed 0%, #ffffff 100%);
    border: 1px solid #fde68a;
}

.coupe-item strong {
    display: block;
    margin-bottom: 0.35rem;
    color: var(--chocolate);
}

.coupe-item span {
    color: #4b5563;
    display: block;
}

.promo-note {
    background: linear-gradient(135deg, #fee2e2 0%, #fff7ed 100%);
}

.evenementen-hero {
    background: linear-gradient(180deg, #fff7ed 0%, #ffffff 100%);
}

.event-callout {
    background: linear-gradient(135deg, var(--soft-yellow) 0%, var(--soft-rose) 100%);
}

.event-badge-box {
    background: rgba(255, 255, 255, 0.75);
    border-radius: 1rem;
    padding: 1.25rem;
    text-align: center;
    font-weight: 700;
    color: var(--primary-danger);
}

.event-plan {
    background: #ffffff;
    text-align: center;
}

.event-plan-icon {
    width: 84px;
    height: 84px;
    margin: 0 auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--soft-rose) 0%, var(--soft-yellow) 100%);
    color: var(--primary-danger);
    font-size: 1.5rem;
    font-weight: 700;
}

.event-price {
    margin-top: 1rem;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-danger);
}

.contact-page {
    background: linear-gradient(180deg, var(--vanilla-cream) 0%, #ffffff 100%);
}

.contact-card {
    background: #ffffff;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, #fff7ed 0%, #ffffff 100%);
    border: 1px solid #fde68a;
    height: 100%;
}

.contact-method-icon {
    width: 3rem;
    height: 3rem;
    flex-shrink: 0;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--soft-rose) 0%, var(--soft-yellow) 100%);
    color: var(--primary-danger);
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .display-4 {
        font-size: 2rem;
    }

    .display-5 {
        font-size: 1.75rem;
    }

    .lead {
        font-size: 1rem;
    }

    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .navbar-brand span:last-child {
        font-size: 1rem !important;
    }

    .navbar-brand {
        margin-right: 0;
    }

    .navbar .container {
        justify-content: space-between !important;
    }

    .navbar-collapse {
        width: 100%;
    }

    .price-tile strong {
        font-size: 1.3rem;
    }

    .hero-home-content {
        padding: 2rem 1.25rem;
    }
}

@media print {
    .navbar,
    footer,
    .btn {
        display: none;
    }
}
