/*
Theme Name: Photobooth Starter
Theme URI:
Description: Custom thema voor Photobooth vergelijkingsplatform
Version: 1.0.0
Author: Photobooth Huren
Text Domain: photobooth-starter
*/

/* ==============================================
   Reset & Base
   ============================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --pb-pink: #d4167d;
    --pb-pink-dark: #a81264;
    --pb-pink-light: #f8a4d0;
    --pb-gradient: linear-gradient(135deg, #d4167d 0%, #f197c4 50%, #fce4f0 100%);
    --pb-gradient-header: linear-gradient(135deg, #a81264 0%, #d4167d 30%, #f197c4 70%, #f8c8de 100%);
    --pb-dark: #1a1a2e;
    --pb-text: #333;
    --pb-text-light: #666;
    --pb-bg: #ffffff;
    --pb-bg-light: #fafafa;
    --pb-border: #f0e0ec;
    --pb-radius: 12px;
    --pb-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    --pb-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--pb-font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--pb-text);
    background: var(--pb-bg);
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--pb-pink);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--pb-pink-dark);
}

img {
    max-width: 100%;
    height: auto;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--pb-dark);
    line-height: 1.3;
    font-weight: 700;
}

/* ==============================================
   Layout
   ============================================== */
.pb-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.pb-section {
    padding: 4rem 0;
}

/* ==============================================
   Header
   ============================================== */
.pb-header {
    background: var(--pb-gradient-header);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(212, 22, 125, 0.15);
}

.pb-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}

.pb-header__logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
}

.pb-header__logo:hover {
    color: #fff;
    opacity: 0.9;
}

.pb-header__logo-icon {
    font-size: 1.4em;
}

/* Navigation */
.pb-nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.pb-nav a {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.5rem 1rem;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.2s ease;
    text-decoration: none;
}

.pb-nav a:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.pb-nav__icon {
    font-size: 1em;
}

.pb-nav__cta {
    background: #fff !important;
    color: var(--pb-pink) !important;
    font-weight: 600 !important;
    margin-left: 0.5rem;
}

.pb-nav__cta:hover {
    background: rgba(255, 255, 255, 0.9) !important;
    color: var(--pb-pink-dark) !important;
}

/* Mobile menu toggle */
.pb-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

/* Admin bar offset */
body.admin-bar .pb-header {
    top: 32px;
}

@media (max-width: 782px) {
    body.admin-bar .pb-header {
        top: 46px;
    }
}

/* ==============================================
   Hero Section
   ============================================== */
.pb-hero {
    background: var(--pb-gradient);
    padding: 4rem 0 3rem;
    text-align: center;
}

.pb-hero__title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--pb-dark);
    margin-bottom: 1rem;
}

.pb-hero__title em {
    font-style: normal;
    color: #fff;
    position: relative;
}

.pb-hero__subtitle {
    font-size: 1.1rem;
    color: rgba(0, 0, 0, 0.7);
    max-width: 650px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.pb-hero__buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.pb-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.75rem 1.75rem;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.pb-btn--primary {
    background: var(--pb-pink);
    color: #fff;
    border-color: var(--pb-pink);
}

.pb-btn--primary:hover {
    background: var(--pb-pink-dark);
    border-color: var(--pb-pink-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 22, 125, 0.3);
}

.pb-btn--outline {
    background: transparent;
    color: var(--pb-dark);
    border-color: var(--pb-dark);
}

.pb-btn--outline:hover {
    background: var(--pb-dark);
    color: #fff;
    transform: translateY(-2px);
}

/* Hero Stats */
.pb-hero__stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.pb-hero__stat {
    text-align: center;
}

.pb-hero__stat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    margin: 0 auto 0.5rem;
    font-size: 1.3rem;
}

.pb-hero__stat-number {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--pb-dark);
}

.pb-hero__stat-label {
    font-size: 0.8rem;
    color: rgba(0, 0, 0, 0.65);
}

/* ==============================================
   Search Bar
   ============================================== */
.pb-search {
    padding: 3rem 0;
    text-align: center;
    background: var(--pb-bg-light);
}

.pb-search__title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.pb-search__title em {
    font-style: normal;
    color: var(--pb-pink);
}

.pb-search__subtitle {
    color: var(--pb-text-light);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.pb-search__form {
    display: flex;
    max-width: 550px;
    margin: 0 auto;
    gap: 0;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--pb-shadow);
}

.pb-search__input {
    flex: 1;
    padding: 0.85rem 1.5rem;
    border: 2px solid #eee;
    border-right: none;
    font-size: 0.95rem;
    outline: none;
    border-radius: 30px 0 0 30px;
    font-family: var(--pb-font);
}

.pb-search__input:focus {
    border-color: var(--pb-pink);
}

.pb-search__btn {
    padding: 0.85rem 1.75rem;
    background: var(--pb-pink);
    color: #fff;
    border: none;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 0 30px 30px 0;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--pb-font);
    transition: background 0.2s ease;
}

.pb-search__btn:hover {
    background: var(--pb-pink-dark);
}

.pb-search__popular {
    margin-top: 0.75rem;
    font-size: 0.85rem;
    color: var(--pb-text-light);
}

.pb-search__popular a {
    color: var(--pb-pink);
    font-weight: 500;
}

/* ==============================================
   CTA Section
   ============================================== */
.pb-cta {
    background: var(--pb-bg-light);
    padding: 4rem 0;
    text-align: center;
}

.pb-cta__box {
    background: #fff;
    border-radius: 20px;
    padding: 3rem 2rem;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: var(--pb-shadow);
}

.pb-cta__title {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
}

.pb-cta__text {
    color: var(--pb-text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.pb-cta__buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ==============================================
   Footer
   ============================================== */
.pb-footer {
    background: var(--pb-gradient-header);
    color: #fff;
    padding-top: 3rem;
}

.pb-footer a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
}

.pb-footer a:hover {
    color: #fff;
}

.pb-footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 2rem;
    padding-bottom: 2rem;
}

.pb-footer__col-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.pb-footer__about p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.pb-footer__social {
    display: flex;
    gap: 0.6rem;
}

.pb-footer__social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.pb-footer__social a:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.pb-footer__links {
    list-style: none;
}

.pb-footer__links li {
    margin-bottom: 0.5rem;
}

.pb-footer__links a {
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.pb-footer__links a::before {
    content: '›';
    font-weight: 700;
    opacity: 0.5;
}

/* Footer bottom */
.pb-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding: 1.25rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.pb-footer__bottom-links {
    display: flex;
    gap: 1.5rem;
}

.pb-footer__bottom-links a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.pb-footer__tagline {
    text-align: center;
    padding: 0.75rem 0;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.pb-footer__tagline em {
    font-style: normal;
    color: rgba(255, 255, 255, 0.7);
}

/* ==============================================
   Page Content
   ============================================== */
.pb-page-content {
    padding: 2rem 0;
    min-height: 50vh;
}

/* ==============================================
   Responsive
   ============================================== */
@media (max-width: 900px) {
    .pb-footer__grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .pb-menu-toggle {
        display: block;
    }

    .pb-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #a81264, #d4167d);
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    }

    .pb-nav.is-open {
        display: flex;
    }

    .pb-nav a {
        width: 100%;
        justify-content: center;
        padding: 0.75rem 1rem;
    }

    .pb-nav__cta {
        margin-left: 0;
        margin-top: 0.5rem;
    }

    .pb-hero__title {
        font-size: 1.75rem;
    }

    .pb-hero__stats {
        gap: 1.5rem;
    }

    .pb-footer__grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .pb-footer__social {
        justify-content: center;
    }

    .pb-footer__bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .pb-hero {
        padding: 2.5rem 0 2rem;
    }

    .pb-hero__title {
        font-size: 1.5rem;
    }

    .pb-hero__buttons {
        flex-direction: column;
        align-items: center;
    }

    .pb-search__form {
        flex-direction: column;
        border-radius: 12px;
    }

    .pb-search__input {
        border-right: 2px solid #eee;
        border-radius: 12px 12px 0 0;
    }

    .pb-search__btn {
        border-radius: 0 0 12px 12px;
        justify-content: center;
    }
}
