/* ===========================
   TROUWMUZIEK.BE - MAIN STYLESHEET
   assets/css/main.css
   =========================== */

/* RESET & BASE STYLES */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

a {
    color: #C41E3A;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #a01828;
}

/* CONTAINER */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===========================
   BUTTONS
   =========================== */
.btn {
    display: inline-block;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: #C41E3A;
    color: white;
}

.btn-primary:hover {
    background-color: #a01828;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(196, 30, 58, 0.3);
}

.btn-secondary {
    background-color: #2C3E50;
    color: white;
}

.btn-secondary:hover {
    background-color: #1a2332;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: #C41E3A;
    border: 2px solid #C41E3A;
}

.btn-outline:hover {
    background-color: #C41E3A;
    color: white;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 18px;
}

/* ===========================
   HERO SECTION
   =========================== */
.hero {
    position: relative;
    height: 600px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 40px;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===========================
   INTRO SECTION
   =========================== */
.intro-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #2C3E50;
}

.intro-content {
    max-width: 900px;
    margin: 0 auto 50px;
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

/* USP GRID */
.usp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.usp-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.usp-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.usp-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #C41E3A;
    color: white;
    border-radius: 50%;
    font-weight: bold;
    flex-shrink: 0;
}

.usp-item p {
    margin: 0;
    color: #333;
    font-weight: 500;
}

/* ===========================
   FORMULAS SECTION
   =========================== */
.formulas-section {
    padding: 80px 0;
    background-color: white;
}

.formulas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.formula-card {
    background: white;
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-top: 4px solid #C41E3A;
    display: flex;
    flex-direction: column;
}

.formula-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.formula-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.formula-title {
    font-size: 1.5rem;
    color: #2C3E50;
    margin-bottom: 5px;
}

.formula-subtitle {
    font-size: 0.9rem;
    color: #C41E3A;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.formula-description {
    font-size: 1rem;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.7;
}

.formula-details {
    flex-grow: 1;
    margin-bottom: 25px;
}

.formula-details h4 {
    font-size: 1rem;
    color: #2C3E50;
    margin-top: 15px;
    margin-bottom: 10px;
    font-weight: 600;
}

.formula-details ul {
    list-style: none;
    padding: 0;
    margin-bottom: 15px;
}

.formula-details li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #555;
    font-size: 0.95rem;
}

.formula-details li:before {
    content: "▸";
    position: absolute;
    left: 0;
    color: #C41E3A;
    font-weight: bold;
}

.formula-details p {
    color: #555;
    font-size: 0.95rem;
    margin: 0;
}

.formula-card .btn {
    align-self: flex-start;
}

/* ===========================
   TESTIMONIALS SECTION
   =========================== */
.testimonials-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8e8e8 100%);
}

.testimonials-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid #C41E3A;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.testimonial-placeholder {
    opacity: 0.7;
    background-color: #f5f5f5;
}

.testimonial-stars {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.testimonial-text {
    font-size: 1rem;
    color: #333;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.7;
}

.testimonial-author {
    font-weight: 600;
    color: #2C3E50;
    margin-bottom: 5px;
}

.testimonial-date {
    font-size: 0.9rem;
    color: #999;
}

/* ===========================
   FINAL CTA SECTION
   =========================== */
.final-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #C41E3A 0%, #a01828 100%);
    color: white;
    text-align: center;
}

.final-cta-section .section-title {
    color: white;
}

.cta-text {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.cta-buttons .btn-primary {
    background-color: white;
    color: #C41E3A;
}

.cta-buttons .btn-primary:hover {
    background-color: #f0f0f0;
}

.cta-buttons .btn-secondary {
    background-color: transparent;
    border: 2px solid white;
    color: white;
}

.cta-buttons .btn-secondary:hover {
    background-color: white;
    color: #C41E3A;
}

/* TRUST ELEMENTS */
.trust-elements {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.95);
}

.trust-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: white;
    color: #C41E3A;
    border-radius: 50%;
    font-weight: bold;
    flex-shrink: 0;
}

.trust-item p {
    margin: 0;
    font-size: 0.95rem;
}

/* ===========================
   PAGE TEMPLATE STYLES
   =========================== */
.page-header {
    background: linear-gradient(135deg, #2C3E50 0%, #34495e 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.page-title {
    color: white;
    font-size: 2.5rem;
}

.page-content {
    padding: 60px 0;
}

article {
    max-width: 800px;
    margin: 0 auto;
}

.post-thumbnail {
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
}

.post-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
}

.post-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.post-content p {
    margin-bottom: 1.5rem;
}

.post-meta {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
    font-size: 0.95rem;
    color: #999;
}

.no-content {
    text-align: center;
    padding: 60px 20px;
    color: #999;
}

/* ===========================
   UTILITY CLASSES
   =========================== */
.text-center {
    text-align: center;
}

.text-white {
    color: white;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mt-40 {
    margin-top: 40px;
}

.mb-40 {
    margin-bottom: 40px;
}