/* ==========================================================================
   Dubbelbluf — cards.css
   Subtle-shadow cards (no border, soft shadow).
   ========================================================================== */

.card {
    background: var(--c-surface);
    border-radius: var(--r-md);
    box-shadow: 0 2px 12px rgba(18, 17, 16, 0.25);
    border: none;
    padding: var(--s-32);
    transition: box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.card:hover {
    box-shadow: 0 6px 24px rgba(18, 17, 16, 0.35);
    transform: translateY(-3px);
}

/* Card with image */
.card--image {
    padding: 0;
    overflow: hidden;
}

.card--image .card__image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card--image .card__body {
    padding: var(--s-24);
}

/* Card icon */
.card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: var(--r-sm);
    background: rgba(199, 103, 60, 0.1);
    color: var(--c-accent);
    margin-bottom: var(--s-16);
}

.card__icon svg {
    width: 24px;
    height: 24px;
}

/* Card title */
.card__title {
    font-family: var(--f-heading);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--c-white);
    margin-bottom: var(--s-12);
}

/* Card text */
.card__text {
    font-size: 0.9375rem;
    color: var(--c-text-dim);
    line-height: 1.65;
    margin-bottom: var(--s-16);
}

/* Card meta */
.card__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--s-12);
    font-size: 0.8125rem;
    color: var(--c-text-dim);
    margin-bottom: var(--s-12);
}

/* Card link */
.card__link {
    display: inline-flex;
    align-items: center;
    gap: var(--s-4);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--c-accent);
    transition: color var(--dur) var(--ease);
}

.card__link:hover {
    color: var(--c-accent-hover);
}

/* Card price / price hint */
.card__price {
    font-family: var(--f-body);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--c-accent);
}

/* Event card specifics */
.event-card {
    position: relative;
}

.event-card__date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: var(--c-accent);
    color: var(--c-white);
    border-radius: var(--r-sm);
    position: absolute;
    top: var(--s-16);
    left: var(--s-16);
}

.event-card__date-day {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1;
}

.event-card__date-month {
    font-size: 0.625rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Tournament card specifics */
.tournament-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--s-16);
}

.tournament-card__details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--s-8);
    margin-bottom: var(--s-16);
}

.tournament-card__detail {
    font-size: 0.8125rem;
    color: var(--c-text-dim);
}

.tournament-card__detail strong {
    color: var(--c-text);
}

/* Testimonial card */
.testimonial-card {
    display: flex;
    flex-direction: column;
    gap: var(--s-16);
}

.testimonial-card__header {
    display: flex;
    align-items: center;
    gap: var(--s-12);
}

.testimonial-card__name {
    font-weight: 600;
    color: var(--c-white);
    font-size: 0.9375rem;
}

.testimonial-card__quote {
    font-style: italic;
    color: var(--c-text);
    line-height: 1.65;
}

/* Zone card */
.zone-card {
    text-align: center;
    padding: var(--s-40) var(--s-32);
}

.zone-card .card__icon {
    margin-left: auto;
    margin-right: auto;
}

/* Highlight card (small, for kitchen section) */
.highlight-card {
    padding: var(--s-24);
}

.highlight-card__title {
    font-family: var(--f-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--c-white);
    margin-bottom: var(--s-8);
}

.highlight-card__text {
    font-size: 0.875rem;
    color: var(--c-text-dim);
    margin-bottom: var(--s-8);
}

/* Recap card */
.recap-card {
    padding: var(--s-24);
}

.recap-card__meta {
    font-size: 0.8125rem;
    color: var(--c-text-dim);
    margin-bottom: var(--s-8);
}

.recap-card__winner {
    font-weight: 600;
    color: var(--c-accent);
}
