/*
Theme Name: Afrikaanse Muziek & Workshops
Theme URI: https://jouwwebsite.nl
Author: Jouw Naam
Description: Een levendig en warm WordPress thema in goud en paars voor Afrikaanse zang- en djembe workshops en koorleiding.
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: afrikaanse-muziek
*/

/* CSS Reset & Variabelen */
:root {
    --bg-dark: #0f051d;
    --bg-card: #1b0c33;
    --color-gold: #ffd700;
    --color-gold-dark: #ccac00;
    --color-pink: #ec4899;
    --color-purple: #a855f7;
    --color-purple-dark: #6b21a8;
    --text-light: #f3f4f6;
    --text-muted: #9ca3af;
    --font-main: 'Poppins', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

/* Structuur & Layout */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

/* Typografie */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
}

h3, .gradient-text {
    background: linear-gradient(135deg, var(--color-gold), var(--color-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Header & Navigatie */
.site-header {
    background-color: rgba(15, 5, 29, 0.9);
    backdrop-filter: blur(10px);
    width: 100%;
    border-bottom: 1px solid rgba(236, 72, 153, 0.2);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 80px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.nav-menu {
    list-style: none;
    gap: 5px 30px;
    display:flex;
}

.nav-menu  li {
	flex: 0 0 auto;
}

.nav-menu a {
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu .current-menu-item a {
    color: var(--color-gold);
}

/* Hero Sectie (Overal zichtbaar) */
.hero {
    position: relative;
    background: radial-gradient(circle at top right, rgba(168, 85, 247, 0.2), transparent), 
                radial-gradient(circle at bottom left, rgba(236, 72, 153, 0.15), transparent);
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 40px;
}

/* Knoppen */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-gold), var(--color-pink));
    color: var(--bg-dark);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(236, 72, 153, 0.3);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--color-purple);
    color: var(--text-light);
    margin-left: 15px;
}

.btn-secondary:hover {
    background: var(--color-purple);
    transform: translateY(-2px);
}

/* Front Page: Grid met Posts */
h3 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    position: relative;
}

h3::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--color-gold);
    margin: 15px auto 0;
    border-radius: 2px;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.post-card {
    background-color: var(--bg-card);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(168, 85, 247, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(15, 5, 29, 0.5);
    border-color: rgba(236, 72, 153, 0.3);
}

.post-card-image {
    height: 220px;
    background-size: cover;
    background-position: center;
}

.post-card-content {
    padding: 30px;
}

.post-card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.post-card-content p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

/* Single Post Pagina */
article {
    background-color: var(--bg-card);
    border-radius: 20px;
    border: 1px solid rgba(236, 72, 153, 0.2);
    padding: 40px;
    margin-bottom: 50px;
}

.single-post-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 30px;
}

article {
    font-size: 1.1rem;
    line-height: 1.8;
}

article p {
    margin-bottom: 20px;
}

/* Agenda Sectie */
.agenda-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.filter-btn {
    background: rgba(27, 12, 51, 0.6);
    border: 1px solid rgba(168, 85, 247, 0.3);
    color: var(--text-light);
    padding: 8px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active, .filter-btn:hover {
    background: var(--color-purple);
    border-color: var(--color-pink);
}

.agenda-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.agenda-item {
    background: var(--bg-card);
    border-left: 4px solid var(--color-gold);
    border-radius: 0 10px 10px 0;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.agenda-item.workshops,.agenda-item.in-opdracht {
    border-left-color: var(--color-pink);
}

.agenda-date {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-gold);
    min-width: 230px;
}

.agenda-details {
	width:100%;
}

.agenda-details h4 {
    font-size: 1.25rem;
    margin-bottom: 5px;
}

.agenda-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
	max-width:220px;
	flex:1;
	display: flex;
  	justify-content: flex-start;
}

.badge-openbaar, .badge-kerkdienst-vrije-toegang{
    background-color: rgba(255, 215, 0, 0.15);
    color: var(--color-gold);
	max-width:220px;
	flex: 1;
	text-align:center;
  display: flex;
  justify-content: flex-end;
}

.badge-opdracht,.badge-in-opdracht {
    background-color: rgba(236, 72, 153, 0.15);
    color: var(--color-pink);
	flex: 1;
	text-align:center;
  display: flex;
  justify-content: flex-end;
}

/* Mobiel Responsiveness */
@media (max-width: 768px) {
    .nav-menu {
        flex-direction: column;
        height: auto;
        padding: 15px 0;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    .agenda-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}

img.alignnone{
	background-color: white;
	padding:5px;
}

/* social */
.social-container {
      display: flex;
      gap: 16px;
      align-items: center;
      padding: 20px;
    }

    .social-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      color: #ffffff;
      font-size: 22px;
      text-decoration: none;
      transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
    }

    .social-btn:hover {
      transform: translateY(-4px);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
      opacity: 0.9;
    }

    /* Brand Colors */
    .social-btn.youtube {
      background-color: #FF0000;
    }

    .social-btn.instagram {
      background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    }

    .social-btn.tiktok {
      background-color: #000000;
      /* Optional subtle TikTok dual glow effect */
      box-shadow: -2px 2px 0px #00f2fe, 2px -2px 0px #fe2c55;
    }

    .social-btn.tiktok:hover {
      box-shadow: -3px 3px 6px #00f2fe, 3px -3px 6px #fe2c55;
    }

	.social-btn.facebook {
		background-color: #1877F2;
	}
