/*
Theme Name: Tijd Met Thijmen
Theme URI: https://tijdmetthijmen.nl
Author: Thijmen
Description: Custom theme for Tijd Met Thijmen
Version: 1.0
Text Domain: tijd-met-thijmen
*/

.tmt-page {
    padding: 40px 20px 80px;
}

.tmt-container {
    max-width: 1200px;
    margin: 0 auto;
}

.tmt-page-hero {
    margin-bottom: 32px;
    padding: 28px;
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 28px;
    background: rgba(15,23,42,0.82);
    color: #fff;
}

.tmt-eyebrow {
    margin: 0 0 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #93c5fd;
}

.tmt-page-hero h1 {
    margin: 0 0 12px;
    font-size: 40px;
}

.tmt-page-intro {
    margin: 0;
    max-width: 700px;
    color: rgba(255,255,255,0.85);
}
.tmt-merch-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

.tmt-merch-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.10);
    background: rgba(15,23,42,0.82);
    color: white;
    min-width: 0;
    height: 100%;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.tmt-merch-card:hover {
    transform: translateY(-4px);
    border-color: rgba(147,197,253,0.45);
    box-shadow: 0 14px 30px rgba(0,0,0,0.20);
}

.tmt-merch-card.is-active {
    border-color: #93c5fd;
    box-shadow: 0 0 0 2px rgba(147,197,253,0.18);
    transform: translateY(-2px);
}

.tmt-merch-card-image-wrap {
    position: relative;
    width: 100%;
    height: 260px;
    overflow: hidden;
    background: rgba(255,255,255,0.04);
    flex-shrink: 0;
}

.tmt-merch-card-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.tmt-merch-card-placeholder {
    width: 100%;
    height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    background: rgba(255,255,255,0.04);
}

.tmt-merch-card-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
    flex: 1;
}

.tmt-merch-card-content h2 {
    margin: 0;
    font-size: 22px;
    line-height: 1.2;
}

.tmt-merch-card-content p {
    margin: 0;
    color: rgba(255,255,255,0.88);
    line-height: 1.5;
}

.tmt-merch-form-section {
    margin-top: 8px;
}

.tmt-merch-content {
    padding: 28px;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.10);
    background: rgba(15,23,42,0.82);
    color: white;
}

.tmt-merch-content {
    padding: 28px;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.10);
    background: rgba(15,23,42,0.82);
    color: white;
}

.tmt-merch-content .wpcf7 form {
    display: grid;
    gap: 18px;
}

.tmt-merch-content .wpcf7 p {
    margin: 0;
}

.tmt-merch-content label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #e5e7eb;
}

.tmt-merch-content input,
.tmt-merch-content select,
.tmt-merch-content textarea {
    width: 100%;
    margin-top: 8px;
    padding: 13px 14px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.05);
    color: white;
    font-size: 15px;
    box-sizing: border-box;
}

.tmt-merch-content textarea {
    min-height: 140px;
    resize: vertical;
}

.tmt-merch-content input:focus,
.tmt-merch-content select:focus,
.tmt-merch-content textarea:focus {
    outline: none;
    border-color: rgba(147,197,253,0.8);
    box-shadow: 0 0 0 3px rgba(147,197,253,0.18);
}

.tmt-merch-content input[readonly] {
    background: rgba(255,255,255,0.08);
}

.tmt-merch-content .wpcf7-submit {
    width: auto;
    min-width: 190px;
    padding: 14px 22px;
    border: none;
    border-radius: 999px;
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
    color: white;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
}


/* FAQ page */
.tmt-faq-page {
    padding: 3rem 0 5rem;
}

.tmt-faq-hero {
    max-width: 800px;
    margin: 0 auto 2.5rem;
    text-align: center;
}

.tmt-faq-hero h1 {
    margin-bottom: 1rem;
}

.tmt-page-intro {
    font-size: 1.05rem;
    line-height: 1.7;
    opacity: 0.9;
}

.tmt-faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 1rem;
}

.tmt-faq-item {
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    overflow: hidden;
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(6px);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.tmt-faq-item:hover {
    transform: translateY(-2px);
    border-color: rgba(255,255,255,0.15);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.tmt-faq-question {
    width: 100%;
    border: none;
    background: transparent;
    color: inherit;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    text-align: left;
    font: inherit;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
}

.tmt-faq-question span:first-child {
    flex: 1;
}

.tmt-faq-icon {
    font-size: 1.6rem;
    line-height: 1;
    flex-shrink: 0;
}

.tmt-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.28s ease;
}

.tmt-faq-answer-inner {
    padding: 0 1.5rem 1.4rem;
}

.tmt-faq-answer p {
    margin: 0;
    line-height: 1.75;
    opacity: 0.92;
}

.tmt-faq-item.is-open {
    border-color: rgba(255,255,255,0.18);
}

.tmt-faq-extra-content {
    max-width: 900px;
    margin: 3rem auto 0;
}

@media (max-width: 768px) {
    .tmt-faq-page {
        padding: 2rem 0 4rem;
    }

    .tmt-faq-question {
        padding: 1rem 1rem;
        font-size: 1rem;
    }

    .tmt-faq-answer-inner {
        padding: 0 1rem 1.1rem;
    }
}

/* default page styles */
/* =========================
   TMT PAGE BASE
========================= */

.tmt-page {
    padding: 3rem 0 5rem;
}

.tmt-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =========================
   HERO
========================= */

.tmt-page-hero {
    max-width: 750px;
    margin: 0 auto 2.5rem;
    text-align: center;
}

.tmt-eyebrow {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.6;
    margin-bottom: 0.5rem;
}

.tmt-page-hero h1 {
    font-size: 2.4rem;
    margin-bottom: 1rem;
}

.tmt-page-intro {
    font-size: 1.05rem;
    line-height: 1.7;
    opacity: 0.85;
}

/* =========================
   CONTENT
========================= */

.tmt-page-content {
    max-width: 850px;
    margin: 0 auto;
}

.tmt-content-inner {
    line-height: 1.8;
    font-size: 1.05rem;
}

/* headings */
.tmt-content-inner h2 {
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    font-size: 1.6rem;
}

.tmt-content-inner h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.6rem;
}

/* paragraphs */
.tmt-content-inner p {
    margin-bottom: 1.2rem;
}

/* links */
.tmt-content-inner a {
    color: var(--accent, #2563eb);
    text-decoration: none;
}

.tmt-content-inner a:hover {
    text-decoration: underline;
}

/* lists */
.tmt-content-inner ul {
    padding-left: 1.2rem;
    margin-bottom: 1.2rem;
}

.tmt-content-inner li {
    margin-bottom: 0.4rem;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {
    .tmt-page {
        padding: 2rem 0 3rem;
    }

    .tmt-page-hero h1 {
        font-size: 2rem;
    }
}