/* app.css */

/* ========== Design tokens ========== */
:root {
    --primary: #6366f1;
    --primary-dark: #4338ca;
    --border: #e0e7ff;
    --bg-soft: #f8fafc;
    --text-main: #1f2937;
}

/* Daarna gewoon al je bestaande CSS */
/* ========== Base / Reset ========== */
body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(180deg, #f8fafc 0%, #eef2ff 100%);
    margin: 0;
    padding: 0;
    font-size: 14px;
    color: #1f2937;
    overflow-x: hidden;
}

/* ========== Layout containers ========== */
.container {
    max-width: 1100px;
    padding: 0 24px;
    padding-top: 40px;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
    min-height: 100vh;
    margin: 0 auto;
}


/* ========== Header ========== */
.header-left {
    display: flex;
    align-items: center;
    gap: 16px;
    overflow: visible;
}
.logo-stack {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}
.logo {
    height: 70px;
    width: auto;
    max-height: 70px;
    object-fit: contain;
    background: transparent;
    border-radius: 0;
    padding: 0;
    margin-right: 14px;
    display: block;
}
.logo-stack .role-text {
    margin-top: 4px;
    font-size: 13px;
    color: #6b7280;
    font-weight: 500;
    padding: 4px 20px;
}
.header-right {
    display: flex;
    gap: 10px;
    margin-left: auto;
    justify-content: flex-end;
    align-items: center;
    padding-right: 48px;
}
.logout {
    padding: 7px 18px;
    background-color: transparent;
    color: #111827;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.16s, color 0.16s;
    border: 1px solid #d1d5db;
    outline: none;
}
.logout:hover,
.logout:focus {
    background-color: #f3f4f6;
    color: #6366f1;
    border-color: #6366f1;
}
.hamburger {
    display: none;
    font-size: 28px;
    background: none;
    border: none;
    color: #1f2937;
    cursor: pointer;
    padding: 0 10px 0 0;
    user-select: none;
}

/* ========== Section headers & buttons ========== */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0px 24px 10px 4px;
}
.section-header h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    color: #1f2937;
    letter-spacing: -0.01em;
}
.section-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
}
.btn-small {
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    border: none;
    font-size: 14px;
    transition: background 0.15s, color 0.15s, border 0.15s;
}
.btn-primary,
.btn-save {
    background: linear-gradient(90deg, var(--primary), #4f46e5);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 10px 18px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.btn-primary:hover,
.btn-save:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(99,102,241,0.25);
}
.btn-secondary {
    background: transparent;
    color: #1f2937;
    border: 1px solid #d1d5db;
}
.btn-secondary:hover,
.btn-secondary:focus {
    background: #f3f4f6;
    color: #6366f1;
    border-color: #6366f1;
}

/* Common action buttons (form pages) */
.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 18px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    background: transparent;
    color: #374151;
    border: 1px solid #d1d5db;
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.btn-back:hover,
.btn-back:focus {
    background: #f3f4f6;
    color: #4338ca;
    border-color: #6366f1;
}




/* ========== Filters inside table-card ========== */
.table-card {
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid var(--border);
    box-shadow: 0 10px 30px rgba(15,23,42,0.06);
    margin: 24px;
    padding: 18px;
    transition: box-shadow 0.2s ease, transform 0.15s ease;
}

.table-card:hover {
    box-shadow: 0 16px 40px rgba(15,23,42,0.08);
}

.table-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    letter-spacing: -0.01em;
}


/* === Grid based filters (overview_booking) === */




/* ========== Form group (label + input/select) ========== */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 0 10px 0px;
}

.form-group label {
    font-size: 13px;
    font-weight: 500;
    color: #6b7280;
    margin-bottom: 10px;
    line-height: 1.4;
    letter-spacing: 0.01em;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 11px 14px;
    border-radius: 10px;
    border: 1px solid #d1d5db;
    background: #ffffff;
    transition: border 0.15s ease, box-shadow 0.15s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(99,102,241,0.15);
}

.date-range {
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: nowrap;
}

.filters input[type="date"],
.filters select {
    appearance: none;
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid #d1d5db;
    background: #ffffff;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    color: #111827;
    transition: border 0.15s, box-shadow 0.15s;
    margin-right:20px;
  
}

.filters input[type="date"]:focus,
.filters select:focus {
    outline: none;
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99,102,241,0.15);
}

.filters select {
    background-image: linear-gradient(45deg, transparent 50%, #6b7280 50%),
                      linear-gradient(135deg, #6b7280 50%, transparent 50%);
    background-position: calc(100% - 16px) 50%, calc(100% - 12px) 50%;
    background-size: 4px 4px, 4px 4px;
    background-repeat: no-repeat;
    padding-right: 28px;
}



/* ========== Collapsible sections ========== */
.collapsible-content {
    display: none;
    overflow: hidden;
    transition: max-height 0.25s ease, opacity 0.2s ease;
}

.collapsible-content.open {
    display: block;
}

.collapsible-trigger {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.collapsible-trigger .arrow {
    transition: transform 0.2s ease;
    transform: rotate(-90deg); /* collapsed = arrow sideways */
}

.collapsible-trigger.active .arrow {
    transform: rotate(0deg); /* open = arrow pointing down */
}

/* ========== Tables ========== */

.bookings-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 14px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
}
.bookings-table th,
.bookings-table td {
    text-align: left;
    padding: 9px 16px;
    border-bottom: 1px solid #f3f4f6;
}
.bookings-table th {
    background-color: #f8fafc;
    font-weight: 600;
    color: #6b7280;
    font-size: 13px;
    letter-spacing: 0.02em;
}
.bookings-table tbody tr {
    background: #fff;
    transition: background 0.13s;
}
.bookings-table tbody tr:nth-child(even) {
    background: #f9fafb;
}
.bookings-table tbody tr:hover {
    background-color: #f3f4f6;
    cursor: pointer;
}
.bookings-table td .actions {
    display: flex;
    gap: 8px;
}
.mobile-booking-card.hidden {
    display: none;
}
tr.external-booking td {
    color: #6366f1;
}
tr.external-booking {
    border-left: 4px solid #6366f1;
    background-color: #f8fafc !important;
}
.extern-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f1f5f9;
    color: #6366f1;
    font-size: 12px;
    font-weight: 500;
    border-radius: 999px;
    padding: 2px 10px;
    margin-left: 8px;
    vertical-align: middle;
}
.extern-label svg {
    width: 13px;
    height: 13px;
    stroke: #6366f1;
}
.mobile-artist-card{
    display: none;
}

.mobile-booking-card{
    display: none;
}

.mobile-act-card{
    display: none;
}

.mobile-actions-card{
    display: none;
}



/* ========== Action table rows (actions.php) ========== */
.action-row {
    cursor: pointer;
    transition: background-color 0.15s ease, transform 0.05s ease;
}

.action-row:hover {
    background-color: #f9fafb;
}

.action-row:active {
    transform: scale(1.01);
}

.action-row td {
    vertical-align: middle;
}

.action-row td:first-child {
    font-weight: 500;
    color: #111827;
}

.action-row td:nth-child(2) {
    color: #374151;
}

/* ========== Modal (availability) ========== */
.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.45);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1200;
    backdrop-filter: blur(2px);
}

.modal {
    background: #ffffff;
    border-radius: 12px;
    max-width: 620px;
    width: 90%;
    padding: 24px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 20px 40px rgba(15,23,42,0.18);
    animation: modalFadeIn 0.18s ease;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}

.modal-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
}

.modal-close {
    background: transparent;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #6b7280;
    transition: color 0.15s ease, transform 0.1s ease;
}

.modal-close:hover {
    color: #111827;
    transform: scale(1.05);
}

.modal form select {
    width: 100%;
    margin-bottom: 16px;
}

.modal form .btn-primary {
    width: 100%;
}
.musician-overlay-list {
    margin-top: 14px;
    display: flex;
    flex-direction: column;
    max-height: 320px;
    overflow-y: auto;
}

.musician-overlay-item {
    padding: 8px 4px;
    font-size: 14px;
    border-bottom: 1px solid #f0f0f0;
}

.musician-overlay-item:last-child {
    border-bottom: none;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========== Subtle status styling ========== */
.status-bevestigd,
.status-optie {
    background: #f3f4f6;
    color: #374151;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
}

/* ========== Artists: Search & Delete button ========== */
.search-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.search-container input {
    padding: 10px 14px;
    border-radius: 8px;
    border: 1px solid #d1d5db;
    background: #ffffff;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    color: #111827;
    min-width: 240px;
    transition: border 0.15s ease, box-shadow 0.15s ease;
}

.search-container input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(99,102,241,0.15);
}

.btn-delete {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid #fecaca;
    background: #fee2e2;
    color: #b91c1c;
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.btn-delete:hover,
.btn-delete:focus {
    background: #fecaca;
    border-color: #fca5a5;
    color: #7f1d1d;
}


/* ========== Selected musicians list (form modes) ========== */
.selected-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 6px;
}

/* Horizontal compact styling */
.selected-list .selected-chip {
    padding: 6px 10px;
    font-size: 13px;
    border-radius: 999px;
    box-shadow: none;
    margin: 0;
}

/* Geen hover lift in form-weergave */
.selected-list .selected-chip:hover {
    transform: none;
    box-shadow: none;
}

.selected-chip {
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #ffffff;
    padding: 8px 14px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    flex: none;
    margin: 4px 8px 4px 0;
    box-shadow: 0 4px 12px rgba(99,102,241,0.15);
    transition: transform 0.1s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}

.selected-chip:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(99,102,241,0.22);
}

.selected-chip button {
    background: transparent;
    border: none;
    color: #ffffff;
    cursor: pointer;
    font-weight: 600;
    line-height: 1;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    opacity: 0.85;
    transition: opacity 0.15s ease;
}

.selected-chip button:hover {
    opacity: 1;
}

/* ========== Dropdown list (huisstijl) ========== */
.dropdown-list {
    position: relative;
    display: inline-block;
    min-width: 220px;
    font-family: 'Inter', sans-serif;
}

.dropdown-list select {
    appearance: none;
    width: 100%;
    padding: 10px 40px 10px 14px;
    border-radius: 10px;
    border: 1px solid #d1d5db;
    background: #ffffff;
    font-size: 14px;
    color: #111827;
    cursor: pointer;
    transition: border 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

/* Custom arrow */
.dropdown-list::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 14px;
    width: 6px;
    height: 6px;
    border-right: 2px solid #6b7280;
    border-bottom: 2px solid #6b7280;
    transform: translateY(-50%) rotate(45deg);
    pointer-events: none;
    transition: border-color 0.15s ease;
}

.dropdown-list select:hover {
    background: #f9fafb;
}

.dropdown-list select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(99,102,241,0.15);
}

.dropdown-list select:focus + .dropdown-list::after,
.dropdown-list select:focus ~ .dropdown-list::after {
    border-color: var(--primary-dark);
}




/* ==========================================================
   ========== Public Header (Pre-login) ==========
   ========================================================== */

.public-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #ffffff; /* volledig wit */
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    pointer-events: auto;
}

.public-header .header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.public-header .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 18px;
    text-decoration: none;
    color: var(--text-main);
}

.public-header .logo img {
    height: 52px;
    width: auto;
}

.public-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.public-nav a {
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    color: #4b5563;
    position: relative;
    transition: color 0.15s ease;
}

.public-nav a:hover {
    color: var(--primary);
}

.public-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.2s ease;
}

.public-nav a:hover::after {
    width: 100%;
}

.public-nav a.active {
    color: var(--primary);
}

.public-nav a.active::after {
    width: 100%;
}

.public-login-btn {
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    color: #4b5563;
    transition: color 0.15s ease;
}

.public-login-btn:hover {
    color: var(--primary);
}

.updates-hero {
    padding: 142px 24px 48px;
    background:
        radial-gradient(circle at top right, rgba(99,102,241,0.14), transparent 24%),
        radial-gradient(circle at 12% 22%, rgba(14,165,233,0.1), transparent 22%),
        linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.updates-shell {
    max-width: 1160px;
    margin: 0 auto;
}

.updates-hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    gap: 28px;
    align-items: end;
}

.updates-hero-copy {
    max-width: 720px;
}

.updates-eyebrow {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(99,102,241,0.1);
    color: var(--primary-dark);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
    margin-bottom: 18px;
}

.updates-hero h1 {
    margin: 0 0 16px;
    font-size: clamp(38px, 6vw, 64px);
    line-height: 0.98;
    color: #111827;
    letter-spacing: -0.04em;
}

.updates-hero p {
    margin: 0;
    max-width: 640px;
    font-size: 18px;
    line-height: 1.7;
    color: #4b5563;
}

.updates-hero-panel {
    padding: 22px 22px 20px;
    border-radius: 24px;
    background: rgba(255,255,255,0.86);
    border: 1px solid rgba(99,102,241,0.12);
    backdrop-filter: blur(8px);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.07);
}

.updates-hero-panel-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #6366f1;
    margin-bottom: 14px;
}

.updates-hero-stats {
    display: grid;
    gap: 14px;
}

.updates-stat {
    padding: 14px 0;
    border-top: 1px solid #e5e7eb;
}

.updates-stat:first-child {
    border-top: none;
    padding-top: 0;
}

.updates-stat strong {
    display: block;
    font-size: 22px;
    line-height: 1.1;
    color: #111827;
    margin-bottom: 4px;
}

.updates-stat span,
.updates-hero-panel-text {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.6;
}

.updates-hero-panel-text {
    margin: 16px 0 0;
}

.updates-section {
    padding: 0 24px 96px;
}

.updates-featured,
.updates-archive {
    margin-top: 26px;
}

.updates-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.updates-section-label {
    display: inline-flex;
    align-items: center;
    margin-bottom: 10px;
    color: #6366f1;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.updates-section-head h2 {
    margin: 0;
    font-size: 28px;
    line-height: 1.1;
    color: #111827;
}

.update-featured-card,
.update-list-card,
.updates-empty-state {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid rgba(99,102,241,0.12);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
}

.update-featured-card,
.updates-empty-state {
    border-radius: 30px;
    padding: 30px;
}

.update-featured-meta,
.update-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
    color: #6b7280;
    font-size: 13px;
}

.update-featured-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 240px;
    gap: 28px;
    align-items: start;
}

.update-pill {
    display: inline-flex;
    align-items: center;
    padding: 7px 12px;
    border-radius: 999px;
    background: #eef2ff;
    color: var(--primary-dark);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.update-featured-card h3,
.update-list-card h3,
.updates-empty-state h2 {
    margin: 0 0 12px;
    font-size: 30px;
    line-height: 1.15;
    color: #111827;
}

.update-list-card h3 {
    font-size: 24px;
}

.update-featured-summary,
.update-summary,
.updates-empty-state p {
    margin: 0 0 16px;
    color: #4b5563;
    font-size: 16px;
    line-height: 1.6;
}

.update-content {
    color: #374151;
    font-size: 15px;
    line-height: 1.8;
}

.update-content-featured {
    font-size: 16px;
    max-width: 720px;
}

.update-content-compact {
    color: #4b5563;
}

.update-featured-side {
    display: grid;
    gap: 14px;
}

.featured-side-block {
    padding: 18px;
    border-radius: 20px;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
}

.featured-side-label {
    display: block;
    margin-bottom: 8px;
    font-size: 12px;
    font-weight: 700;
    color: #6366f1;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.featured-side-block strong {
    font-size: 18px;
    line-height: 1.4;
    color: #111827;
}

.updates-list {
    display: grid;
    gap: 18px;
}

.update-list-card {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 24px;
    border-radius: 26px;
    padding: 24px;
}

.update-list-date {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 4px;
    padding-top: 4px;
    color: #111827;
}

.update-list-date span {
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
}

.update-list-date small {
    color: #6b7280;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.update-list-body {
    position: relative;
}

.update-cta-subtle {
    background: transparent;
    color: #111827;
    border: 1px solid #d1d5db;
    box-shadow: none;
}

.update-cta-subtle:hover {
    background: #ffffff;
    color: #4338ca;
    border-color: #c7d2fe;
    box-shadow: none;
}

.update-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 24px;
    padding: 12px 18px;
    border-radius: 14px;
    background: #111827;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

.update-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(67, 56, 202, 0.22);
}

.updates-empty-state {
    max-width: 760px;
    text-align: left;
}

@media (max-width: 768px) {
    .updates-hero {
        padding: 124px 18px 40px;
    }

    .updates-section {
        padding: 0 18px 72px;
    }

    .updates-hero-layout,
    .update-featured-layout,
    .update-list-card {
        grid-template-columns: 1fr;
    }

    .update-featured-card,
    .update-list-card,
    .updates-empty-state {
        border-radius: 22px;
        padding: 22px;
    }

    .updates-section-head h2 {
        font-size: 24px;
    }

    .updates-hero-panel {
        padding: 20px;
    }

    .update-list-date {
        padding-top: 0;
        gap: 2px;
    }

    .update-card-top {
        align-items: flex-start;
        flex-direction: column;
    }

    .update-featured-card h3,
    .update-list-card h3,
    .updates-empty-state h2 {
        font-size: 24px;
    }

    .updates-hero p,
    .update-featured-summary,
    .update-summary,
    .updates-empty-state p {
        font-size: 16px;
    }
}

/* ==========================================================
   ========== Public Website Sections (Pre-login) ==========
   ========================================================== */

/* ==========================================================
   ========== Hero Visual Layout (Landing) ==========
   ========================================================== */

.hero {
    position: relative;
    padding: 90px 16px 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    overflow: hidden;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 30%, rgba(255,255,255,0.08), transparent 40%);
    pointer-events: none; /* IMPORTANT: prevent overlay from blocking clicks */
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    padding: 120px 46px 60px;
}

.hero-left {
    flex: 1;
    color: #ffffff;
}

.hero-logo {
    max-width: 260px;
    height: auto;
    margin-bottom: 30px;
}

.hero-left h1 {
    font-size: 40px;
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-left p {
    font-size: 18px;
    line-height: 1.6;
    max-width: 520px;
    margin-bottom: 30px;
    color: rgba(255,255,255,0.9);
}

.hero-buttons {
    display: flex;
    gap: 16px;
    align-items: center;
}


.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 22px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    background: #ffffff;
    color: var(--primary-dark);
    border: none;
    transition: all 0.2s ease;
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.22);
}

.cta-secondary {
    display: inline-flex;
    align-items: center;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    color: rgba(255,255,255,0.9);
    padding: 10px 4px;
    transition: opacity 0.15s ease, transform 0.1s ease;
}

.cta-secondary:hover {
    opacity: 1;
    transform: translateX(2px);
    text-decoration: underline;
}

.hero-right {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mockup-desktop img {
    width: 100%;
    max-width: 720px;
    border-radius: 14px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.25);
}

.mockup-mobile {
    position: absolute;
    bottom: -40px;
    right: 40px;
}

.mockup-mobile img {
    width: 240px;
    border-radius: 26px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}


/* ========== Features section ========== */
.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding: 100px 20px;
    background: #ffffff;
}

.feature {
    background: linear-gradient(135deg, #ffffff 0%, var(--bg-soft) 100%);
    border-radius: 16px;
    border: 1px solid var(--border);
    box-shadow: 0 6px 20px rgba(15,23,42,0.04);
    padding: 32px;
    width: 280px;
    text-align: center;
    transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.feature:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: 0 12px 28px rgba(99,102,241,0.12);
}

.feature svg {
    width: 48px;
    height: 48px;
    stroke: var(--primary);
    margin-bottom: 20px;
}

.feature h3 {
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 600;
    color: var(--text-main);
}

.feature p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.5;
}

/* ========== CTA section ========== */
.cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #ffffff;
    text-align: center;
    padding: 100px 20px;
}

.cta h2 {
    margin-bottom: 20px;
    font-size: 32px;
    font-weight: 600;
}

/* ========== About section ========== */
.about {
    background: #ffffff;
    padding: 100px 20px;
    text-align: center;
}

.about h2 {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 20px;
    font-weight: 600;
}

.about p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 16px;
    color: #4b5563;
    line-height: 1.6;
}

/* ========== Contact section ========== */
.contact {
    background: var(--bg-soft);
    padding: 100px 20px;
    text-align: center;
}

.contact h2 {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 20px;
    font-weight: 600;
}

.contact p {
    max-width: 700px;
    margin: 0 auto 16px;
    font-size: 16px;
    color: #4b5563;
}

.contact a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.15s ease;
}

.contact a:hover {
    opacity: 0.8;
}

/* ==========================================================
   ========== Public Forms (Registration / Login) ==========
   ========================================================== */

.public-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 40px 20px 100px;
}

.public-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 30px;
    color: var(--text-main);
    text-align: center;
}

.public-card {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 10px 30px rgba(15,23,42,0.06);
    margin-bottom: 24px;
}

.public-card--highlight {
    border: 2px solid var(--primary);
    box-shadow: 0 15px 40px rgba(99,102,241,0.15);
}

.public-muted {
    font-size: 14px;
    color: #6b7280;
    margin-top: 6px;
    line-height: 1.5;
}

.public-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.public-form label {
    font-size: 13px;
    font-weight: 500;
    color: #6b7280;
}

.public-form input[type="text"],
.public-form input[type="email"],
.public-form input[type="password"],
.public-form select {
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid #d1d5db;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    transition: border 0.15s ease, box-shadow 0.15s ease;
}

.public-form input:focus,
.public-form select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(99,102,241,0.15);
}

.public-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: #374151;
}

.public-checkbox input {
    margin-top: 3px;
}

.public-alert {
    padding: 14px 18px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
}

.public-alert--error {
    background: #fee2e2;
    border: 1px solid #fecaca;
    color: #b91c1c;
}

/* ========== Public footer ========== */
footer {
    text-align: center;
    padding: 24px 20px;
    font-size: 14px;
    color: #6b7280;
    background: #ffffff;
    border-top: 1px solid var(--border);
}


/* ==========================================================
   ========== Pricing / Packages (options.php) ==========
   ========================================================== */

.packages-hero {
    position: relative;
    overflow: hidden;
    padding: 130px 24px 80px;
    background:
        radial-gradient(circle at top right, rgba(99,102,241,0.12), transparent 34%),
        linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.packages-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at bottom left, rgba(99,102,241,0.08), transparent 28%),
        radial-gradient(circle at top right, rgba(139,92,246,0.10), transparent 34%);
}

.packages-hero-container {
    position: relative;
    z-index: 1;
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 460px);
    gap: 48px;
    align-items: center;
}

.packages-hero-copy h1 {
    font-size: clamp(42px, 5vw, 68px);
    line-height: 0.98;
    letter-spacing: -0.05em;
    margin: 0 0 24px;
    color: #0f172a;
    max-width: 720px;
}

.packages-hero-copy p {
    font-size: 18px;
    line-height: 1.75;
    color: #4b5563;
    margin: 0 0 18px;
    max-width: 640px;
}

.packages-hero-actions {
    display: flex;
    align-items: center;
    gap: 22px;
    margin: 36px 0 40px;
}

.public-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 17px 28px;
    border-radius: 16px;
    background: linear-gradient(135deg, #6366f1 0%, #4338ca 100%);
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border: 1px solid transparent;
    box-shadow: 0 18px 36px rgba(99,102,241,0.22);
    transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

.public-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 44px rgba(99,102,241,0.28);
}

.public-cta-btn-secondary {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    color: #4338ca;
    border-color: rgba(99,102,241,0.18);
    box-shadow: 0 14px 30px rgba(15,23,42,0.08);
}

.public-cta-link {
    color: #4338ca;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
}

.packages-hero-points {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.packages-hero-point {
    display: flex;
    align-items: center;
    gap: 16px;
}

.packages-hero-point-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: linear-gradient(180deg, #f5f3ff 0%, #ede9fe 100%);
    box-shadow: 0 10px 25px rgba(99,102,241,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4338ca;
    font-size: 22px;
    font-weight: 700;
}

.packages-hero-point strong {
    display: block;
    color: #111827;
    font-size: 17px;
    margin-bottom: 4px;
}

.packages-hero-point span {
    color: #6b7280;
    font-size: 15px;
}

.packages-hero-visual {
    position: relative;
}

.pricing-preview-card {
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(99,102,241,0.14);
    border-radius: 28px;
    padding: 32px;
    box-shadow: 0 30px 80px rgba(15,23,42,0.14);
}

.pricing-preview-label {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(99,102,241,0.10);
    color: #4338ca;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}

.pricing-preview-step {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 18px 0;
    border-top: 1px solid rgba(148,163,184,0.18);
}

.pricing-preview-step:first-of-type {
    border-top: none;
    padding-top: 0;
}

.pricing-preview-step strong {
    display: block;
    font-size: 18px;
    color: #111827;
    margin-bottom: 6px;
}

.pricing-preview-step p {
    margin: 0;
    color: #6b7280;
    font-size: 15px;
    line-height: 1.6;
}

.pricing-preview-dot {
    width: 14px;
    height: 14px;
    margin-top: 7px;
    border-radius: 999px;
    flex: 0 0 14px;
    background: linear-gradient(135deg, #c7d2fe 0%, #818cf8 100%);
    box-shadow: 0 0 0 5px rgba(99,102,241,0.08);
}

.pricing-preview-step.is-active .pricing-preview-dot {
    background: linear-gradient(135deg, #6366f1 0%, #4338ca 100%);
}

.packages {
    padding: 20px 20px 100px;
    background: linear-gradient(180deg, #f8fafc 0%, #eef2ff 100%);
}

.packages-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.packages-heading {
    max-width: 760px;
    margin: 0 auto 52px;
    text-align: center;
}

.packages-title {
    text-align: center;
    font-size: 42px;
    font-weight: 600;
    margin: 0 0 18px;
    color: var(--text-main);
    letter-spacing: -0.03em;
}

.packages-intro {
    font-size: 17px;
    line-height: 1.7;
    color: #4b5563;
    margin: 0;
}

.packages-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    align-items: stretch;
    justify-items: center;
}




.package-card {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    text-align: left;
    box-shadow: 0 15px 40px rgba(15,23,42,0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    position: relative;
}

.package-card-top {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.package-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-top-left-radius: 18px;
    border-top-right-radius: 18px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%);
    opacity: 0.6;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(99,102,241,0.18);
    border-color: var(--primary);
}

/* Featured (Professional) stronger highlight */
.package-card-featured {
    border: 2px solid var(--primary);
    box-shadow: 0 30px 70px rgba(99,102,241,0.22);
}

.package-card-featured::before {
    opacity: 1;
}

.package-card-badge {
    position: absolute;
    top: -14px;
    right: 22px;
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: linear-gradient(135deg, #6366f1 0%, #4338ca 100%);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.02em;
    box-shadow: 0 14px 30px rgba(99,102,241,0.24);
}

.package-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 18px;
    padding: 10px 18px;
    border-radius: 999px;
    border: 2px solid var(--primary);
    background: linear-gradient(90deg, rgba(99,102,241,0.08) 0%, rgba(99,102,241,0.15) 100%);
    display: inline-block;
    letter-spacing: 0.02em;
}

.package-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    margin: 12px 0 4px;
}

.package-sub {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 6px;
}

.package-highlight {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 20px;
}

/* Trial badge (14 dagen gratis) */
.package-trial-badge {
    display: inline-block;
    margin: 10px 0 18px;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(99,102,241,0.25);
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 20px 0 28px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.package-features li {
    font-size: 14px;
    color: #374151;
    line-height: 1.5;
    position: relative;
    padding-left: 18px;
}

.package-features li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
}

.package-footer {
    margin-top: auto;
    padding-top: 24px;
    width: 90%;
}

.package-footer .cta-btn {
    width: 90%;
    text-align: center;
}

.package-footer .public-cta-btn {
    width: 100%;
    box-sizing: border-box;
}

.packages-note {
    margin: 42px auto 0;
    max-width: 860px;
    padding: 22px 24px;
    border-radius: 20px;
    background: rgba(255,255,255,0.7);
    border: 1px solid rgba(99,102,241,0.12);
    box-shadow: 0 18px 40px rgba(15,23,42,0.06);
    color: #4b5563;
    font-size: 15px;
    line-height: 1.7;
    text-align: center;
}

.packages-note strong {
    color: #111827;
}


/* ==========================================================
   ========== More Page – Info Section Styling ==========
   ========================================================== */

.more-hero {
    position: relative;
    overflow: hidden;
    padding: 128px 24px 88px;
    background:
        radial-gradient(circle at top right, rgba(99,102,241,0.12), transparent 34%),
        linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.more-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at bottom left, rgba(99,102,241,0.08), transparent 28%),
        radial-gradient(circle at top right, rgba(139,92,246,0.10), transparent 34%);
}

.more-hero-container {
    position: relative;
    z-index: 1;
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 520px);
    gap: 56px;
    align-items: center;
}

.more-hero-copy h1 {
    font-size: clamp(42px, 5vw, 68px);
    line-height: 0.98;
    letter-spacing: -0.05em;
    margin: 0 0 24px;
    color: #0f172a;
    max-width: 760px;
}

.more-hero-copy p {
    font-size: 18px;
    line-height: 1.75;
    color: #4b5563;
    margin: 0 0 18px;
    max-width: 650px;
}

.more-hero-actions {
    display: flex;
    align-items: center;
    gap: 22px;
    margin: 36px 0 40px;
}

.more-hero-points {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.more-hero-point {
    display: flex;
    align-items: center;
    gap: 16px;
}

.more-hero-point-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: linear-gradient(180deg, #f5f3ff 0%, #ede9fe 100%);
    box-shadow: 0 10px 25px rgba(99,102,241,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4338ca;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.more-hero-point strong {
    display: block;
    color: #111827;
    font-size: 17px;
    margin-bottom: 4px;
}

.more-hero-point span {
    color: #6b7280;
    font-size: 15px;
}

.more-hero-visual {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.more-hero-visual-card {
    width: 100%;
    background: rgba(255,255,255,0.82);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(99,102,241,0.14);
    border-radius: 30px;
    padding: 14px;
    box-shadow: 0 32px 80px rgba(15,23,42,0.14);
}

.more-hero-visual-card img {
    width: 100%;
    display: block;
    border-radius: 22px;
}

.more-hero-floating-card {
    position: absolute;
    max-width: 230px;
    padding: 16px 18px;
    border-radius: 20px;
    background: rgba(255,255,255,0.92);
    border: 1px solid rgba(99,102,241,0.12);
    box-shadow: 0 18px 44px rgba(15,23,42,0.10);
}

.more-hero-floating-card strong {
    display: block;
    color: #111827;
    font-size: 15px;
    margin-bottom: 4px;
}

.more-hero-floating-card span {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.6;
}

.more-hero-floating-card-top {
    top: 20px;
    right: -22px;
}

.more-hero-floating-card-bottom {
    left: -30px;
    bottom: 34px;
}

.public-section {
    padding: 20px 20px;
    background: linear-gradient(180deg, #f8fafc 0%, #eef2ff 100%);
}

.public-section .container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.info-block {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    padding: 60px 70px;
    border-radius: 20px;
    border: 1px solid var(--border);
    box-shadow: 0 20px 50px rgba(15,23,42,0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.info-block:hover {
    transform: translateY(-6px);
    border-color: var(--primary);
    box-shadow: 0 30px 70px rgba(99,102,241,0.15);
}

.info-block h2 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-main);
}

.info-block p {
    font-size: 16px;
    line-height: 1.7;
    color: #4b5563;
    max-width: 760px;
}

.highlight-block {
    border: 2px solid var(--primary);
    box-shadow: 0 30px 80px rgba(99,102,241,0.18);
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px 30px;
}

.feature-list li {
    position: relative;
    padding-left: 26px;
    font-size: 15px;
    line-height: 1.6;
    color: #374151;
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 700;
    color: var(--primary);
}

.public-section-more {
    padding-top: 20px;
    padding-bottom: 100px;
}

.more-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.more-feature-card {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid rgba(99,102,241,0.12);
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 18px 44px rgba(15,23,42,0.06);
}

.more-feature-kicker {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(99,102,241,0.08);
    color: #4338ca;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.03em;
    margin-bottom: 18px;
}

.more-feature-card h3 {
    font-size: 28px;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: #111827;
    margin: 0 0 16px;
}

.more-feature-card p {
    margin: 0 0 22px;
    color: #4b5563;
    font-size: 16px;
    line-height: 1.8;
}

.more-feature-list {
    gap: 12px 22px;
}

.more-story-block {
    padding: 48px 52px;
}

.more-story-grid {
    display: grid;
    grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
    gap: 48px;
    align-items: start;
}

.more-story-grid h2 {
    margin: 0;
}

.more-audience-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 28px;
}

.more-audience-item {
    padding: 18px 20px;
    border-radius: 18px;
    background: rgba(255,255,255,0.82);
    border: 1px solid rgba(99,102,241,0.10);
    box-shadow: 0 8px 24px rgba(15,23,42,0.04);
    color: #374151;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.5;
}

.more-cta-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 34px 36px;
    border-radius: 28px;
    background:
        radial-gradient(circle at top right, rgba(255,255,255,0.12), transparent 30%),
        linear-gradient(135deg, #4f46e5 0%, #4338ca 100%);
    box-shadow: 0 30px 80px rgba(79,70,229,0.22);
}

.more-cta-copy .story-label {
    background: rgba(255,255,255,0.14);
    color: #ffffff;
}

.more-cta-copy h2 {
    margin: 0 0 16px;
    color: #ffffff;
    font-size: 40px;
    line-height: 1.06;
    letter-spacing: -0.04em;
}

.more-cta-copy p {
    margin: 0;
    max-width: 760px;
    color: rgba(255,255,255,0.84);
    font-size: 16px;
    line-height: 1.8;
}

.more-cta-actions {
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-width: 220px;
}

    /* ==========================================================
   ========== Pricing – Mobile Optimization ==========
   ========================================================== */

@media (max-width: 980px) {
    .more-hero-container,
    .more-story-grid,
    .more-feature-grid {
        grid-template-columns: 1fr;
    }

    .more-hero-copy {
        text-align: center;
    }

    .more-hero-copy p {
        margin-left: auto;
        margin-right: auto;
    }

    .more-hero-actions {
        justify-content: center;
    }

    .more-hero-point {
        justify-content: center;
        text-align: left;
    }

    .more-cta-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .packages-hero-container {
        grid-template-columns: 1fr;
    }

    .packages-hero-copy {
        text-align: center;
    }

    .packages-hero-copy p {
        margin-left: auto;
        margin-right: auto;
    }

    .packages-hero-actions {
        justify-content: center;
    }

    .packages-hero-point {
        justify-content: center;
        text-align: left;
    }
}

@media (max-width: 700px) {
    .more-hero {
        padding: 96px 20px 58px;
    }

    .more-hero-copy h1 {
        font-size: 40px;
        line-height: 1.04;
    }

    .more-hero-copy p {
        font-size: 16px;
    }

    .more-hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
    }

    .more-hero-visual {
        min-height: auto;
    }

    .more-hero-floating-card {
        position: static;
        max-width: none;
        margin-top: 14px;
    }

    .more-feature-card {
        padding: 24px;
    }

    .more-feature-card h3 {
        font-size: 24px;
    }

    .more-story-block {
        padding: 28px 20px;
    }

    .more-audience-grid {
        grid-template-columns: 1fr;
    }

    .more-cta-card {
        padding: 26px 22px;
        border-radius: 22px;
    }

    .more-cta-copy h2 {
        font-size: 30px;
    }

    .more-cta-actions {
        width: 100%;
    }

    .packages-hero {
        padding: 96px 20px 58px;
    }

    .packages-hero-copy h1 {
        font-size: 40px;
        line-height: 1.04;
    }

    .packages-hero-copy p,
    .packages-intro {
        font-size: 16px;
    }

    .packages-hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
    }

    .public-cta-btn {
        width: 100%;
        box-sizing: border-box;
    }

    .public-cta-link {
        text-align: center;
    }

    .packages-title {
        font-size: 30px;
    }

    .package-card {
        max-width: 100%;
        padding: 28px 20px;
        border-radius: 16px;
        transform: none !important;
    }

    .package-card:hover {
        transform: none;
        box-shadow: 0 18px 40px rgba(15,23,42,0.12);
    }

    .package-card-badge {
        position: static;
        margin-bottom: 16px;
        align-self: flex-start;
    }

    .package-price {
        font-size: 26px;
    }

    .package-features {
        gap: 8px;
    }

    .package-footer {
        width: 100%;
        padding-top: 18px;
    }

    .pricing-preview-card {
        padding: 24px;
        border-radius: 22px;
    }

    .packages-note {
        padding: 18px 18px;
        text-align: left;
    }
}



/* ==========================================================
   ========== Contact Form (Hero Right) ==========
   ========================================================== */

.contact-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 40px 36px;
    border: 1px solid var(--border);
    box-shadow: 0 25px 60px rgba(15,23,42,0.18);
    width: 100%;
    max-width: 520px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-form .form-group {
    padding: 0;
}

.contact-form label {
    font-size: 13px;
    font-weight: 500;
    color: #6b7280;
    margin-bottom: 6px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    margin-right: 0;
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.form-success {
    padding: 18px 20px;
    border-radius: 14px;
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    color: #065f46;
    font-weight: 500;
    font-size: 14px;
}

.form-error {
    padding: 14px 16px;
    border-radius: 12px;
    background: #fee2e2;
    border: 1px solid #fecaca;
    color: #b91c1c;
    font-size: 14px;
    margin-bottom: 10px;
}

.contact-hero {
    position: relative;
    overflow: hidden;
    padding: 128px 24px 88px;
    background:
        radial-gradient(circle at top right, rgba(99,102,241,0.12), transparent 34%),
        linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.contact-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at bottom left, rgba(99,102,241,0.08), transparent 28%),
        radial-gradient(circle at top right, rgba(139,92,246,0.10), transparent 34%);
}

.contact-hero-container {
    position: relative;
    z-index: 1;
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
    gap: 56px;
    align-items: start;
}

.contact-hero-copy h1 {
    font-size: clamp(42px, 5vw, 68px);
    line-height: 0.98;
    letter-spacing: -0.05em;
    margin: 0 0 24px;
    color: #0f172a;
    max-width: 720px;
}

.contact-hero-copy p {
    font-size: 18px;
    line-height: 1.75;
    color: #4b5563;
    margin: 0 0 18px;
    max-width: 640px;
}

.contact-hero-points {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 34px;
}

.contact-hero-point {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-hero-point-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: linear-gradient(180deg, #f5f3ff 0%, #ede9fe 100%);
    box-shadow: 0 10px 25px rgba(99,102,241,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4338ca;
    font-size: 18px;
    font-weight: 700;
}

.contact-hero-point strong {
    display: block;
    color: #111827;
    font-size: 17px;
    margin-bottom: 4px;
}

.contact-hero-point span {
    color: #6b7280;
    font-size: 15px;
}

.contact-card-modern {
    max-width: none;
    border-radius: 28px;
    padding: 34px 32px;
    box-shadow: 0 30px 80px rgba(15,23,42,0.14);
    background: rgba(255,255,255,0.88);
    backdrop-filter: blur(12px);
}

.contact-submit-btn {
    width: 100%;
}

.contact-alert-success {
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    color: #065f46;
}

.contact-section {
    padding-top: 20px;
    padding-bottom: 100px;
}

.contact-topic-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.contact-topic-card {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid rgba(99,102,241,0.12);
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 18px 44px rgba(15,23,42,0.06);
}

.contact-topic-card h3 {
    font-size: 26px;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: #111827;
    margin: 0 0 14px;
}

.contact-topic-card p {
    margin: 0;
    color: #4b5563;
    font-size: 16px;
    line-height: 1.8;
}

.contact-expectation-block {
    padding: 48px 52px;
}



/* ========== Mobile menu ========== */

.public-hamburger {
    display: none;
    font-size: 26px;
    background: none;
    border: none;
    cursor: pointer;
}

/* Slide-in menu */
.public-mobile-menu {
    position: fixed;
    top: 0;
    left: -260px;
    right: auto;
    width: 260px;
    height: 100vh;
    background: #ffffff;
    box-shadow: -2px 0 12px rgba(0,0,0,0.08);
    padding: 80px 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: left 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1200;
    visibility: hidden;
}

.public-mobile-menu.open {
    left: 0;
    visibility: visible;
}

.public-mobile-menu a {
    text-decoration: none;
    font-size: 16px;
    color: #374151;
    font-weight: 500;
    padding: 10px 0;
}

.public-mobile-menu .mobile-login {
    margin-top: 20px;
    padding: 10px 14px;
    border-radius: 8px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #ffffff;
    text-align: center;
    border-top: 1px solid #e5e7eb;
    padding-top: 16px;
}

/* Backdrop */
.public-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.2);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 1100;
}

.public-backdrop.open {
    opacity: 1;
    pointer-events: auto;
}

/* MOBILE VANAF HIER!!!! */
@media (max-width: 900px) {

    /* ===== Layout fixes mobile ===== */
.container {
    padding: 20px 20px 100px;
}


body {
    padding-top: 100px; /* prevent header overlap */
}

.hero {
    padding: 60px 16px 40px;
}   


    /* === Hero mobile layout: image floating with text wrapping === */

    .hero-container {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
        padding-top: 0px;
    }

    .hero-left {
        position: relative;
        padding-top: 0px;
    }

    /* Float image inside text */
    .hero-right {
        pointer-events: none; /* prevent blocking text/buttons */
    }

    .info-block {
        padding: 20px 20px 20px;
    }

    .mockup-mobile {
        position: relative;
        right: 0;
        bottom: 0;
    }

    .mockup-mobile img {
        width: 100%;
        max-width: 300px;
        border-radius: 18px;
        box-shadow: 0 12px 30px rgba(0,0,0,0.25);
    }

    /* Give text space so it wraps nicely around image */
    .hero-left h1 {
        padding-top: 0px;
        font-size: 36px;
    }
    .hero-left p {
        display: block;
        
    }

    /* Buttons full width below everything */
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 10px;
        margin-top: 20px;
    }

    .cta-btn,
    .cta-secondary {
        text-align: center;
    }

    .contact-card {
        max-width: 80%;
}

    .mockup-desktop {
        display: none; /* mobiel mockup weghalen → cleaner */
    }

  .table-card.acts{
    display: none;
}

@media (max-width: 980px) {
    .contact-hero-container,
    .contact-topic-grid {
        grid-template-columns: 1fr;
    }

    .contact-hero-copy {
        text-align: center;
    }

    .contact-hero-copy p {
        margin-left: auto;
        margin-right: auto;
    }

    .contact-hero-point {
        justify-content: center;
        text-align: left;
    }
}

@media (max-width: 700px) {
    .contact-hero {
        padding: 96px 20px 58px;
    }

    .contact-hero-copy h1 {
        font-size: 40px;
        line-height: 1.04;
    }

    .contact-hero-copy p {
        font-size: 16px;
    }

    .contact-card-modern {
        padding: 24px 20px;
        border-radius: 22px;
    }

    .contact-topic-card {
        padding: 24px;
    }

    .contact-topic-card h3 {
        font-size: 24px;
    }

    .contact-expectation-block {
        padding: 28px 20px;
    }
}
.mobile-booking-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: none;
    border: 1px solid #e5e7eb;
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    cursor: pointer;
    transition: border-color 0.15s;
    margin: 12px 12px 12px 12px;
}
.mobile-booking-card:hover {
    border-color: #6366f1;
}
.mobile-booking-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 15px;
    color: #1f2937;
}
.mobile-booking-header .status {
    background: #f3f4f6;
    color: #374151;
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 500;
}
.mobile-booking-body div {
    font-size: 14px;
    color: #374151;
    line-height: 1.4;
}
.mobile-booking-body strong {
    font-weight: 600;
    color: #111827;
}
.mobile-booking-card.external-booking {
    border-left: 4px solid #6366f1;
    background-color: #f8fafc;
}
.extern-label {
    margin-left: 0;
    margin-top: 0px;
    display: inline-flex;
}

.public-header .header-inner {
        padding: 14px 18px;
    }

    .public-nav {
        display: none;
    }

    /* Toon hamburger, verberg login knop */
.public-hamburger {
    display: block;
}

.public-login-btn {
    display: none;
}

.packages {
    padding-top: 20px;
}
}
