/*
Theme Name: Workflow Automations
Theme URI: https://example.com/workflow-automations
Author: Custom Theme Developer
Description: A clean, modern one-page theme for Workflow Automations.
Version: 1.1 (Updated)
License: GNU General Public License v2 or later
Text Domain: workflow-automations
*/

/* =========================================
   1. VARIABLES & RESET
   ========================================= */
:root {
    --color-bg: #ffffff;
    --color-text-main: #222222;
    --color-text-light: #555555;
    --color-primary: #0b85e9;
    --color-secondary: #20c9b7;
    --color-light-gray: #f2f7fb; /* Slightly tinted white for alternating sections */
    --color-light-blue-accent: rgba(11, 133, 233, 0.1); /* Light blue background for emphasis */
    --color-dark-bg: #111;
    --font-main: 'Inter', sans-serif;
    --max-width: 1200px;
    --header-height: 80px;
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--color-bg);
    color: var(--color-text-main);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--color-text-main);
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center; /* Center section headings for better visual appeal */
}

p {
    margin-bottom: 1.5rem;
    color: var(--color-text-light);
}

a {
    text-decoration: none;
    color: var(--color-primary);
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* =========================================
   2. UTILITIES & COMPONENTS
   ========================================= */
.container {
    width: 90%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 15px;
}

/* Gradient Text Class */
.text-gradient {
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

/* Primary Button Styling */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    text-align: center;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(11, 133, 233, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 6px 20px rgba(11, 133, 233, 0.5);
    transform: translateY(-2px);
    color: #fff;
}

.btn-secondary {
    background: var(--color-light-blue-accent);
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
    box-shadow: none;
}
.btn-secondary:hover {
    background: var(--color-primary);
    color: #fff;
    transform: translateY(-2px);
}

.btn-text {
    background: transparent;
    color: var(--color-text-main);
    text-decoration: underline;
}

.btn-text:hover {
    color: var(--color-primary);
}

/* Section Spacing */
section {
    padding: 100px 0; /* Increased spacing */
}

/* =========================================
   3. HERO SECTION (ADJUSTED FOR SMALL BANNER)
   ========================================= */
#hero {
    position: relative;
    padding-top: 50px; /* Reduced top padding */
    padding-bottom: 100px;
    background-color: var(--color-light-blue-accent); /* Added light blue background for visual interest */
}

.hero-header {
    text-align: center;
    margin-bottom: 40px;
}

.hero-banner-image {
    max-width: 643px; /* Ensure the image doesn't stretch too much */
    height: auto;
    margin: 0 auto;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.brand-label {
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    font-weight: 700;
    margin-bottom: 1rem;
    display: block;
    color: var(--color-primary); /* Use primary color for the label */
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.35rem;
    margin-bottom: 2.5rem;
    color: var(--color-text-main);
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

/* =========================================
   4. SERVICE SECTION
   ========================================= */
#service {
    background-color: var(--color-bg); /* White background */
}

.service-content {
    max-width: 800px;
    margin: 0 auto;
}

.benefits-list {
    list-style: none;
    margin: 2rem 0;
    padding-left: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.benefits-list li {
    padding: 1rem 1.5rem;
    position: relative;
    font-weight: 500;
    background-color: var(--color-light-gray);
    border-radius: var(--border-radius);
}

.benefits-list li::before {
    content: "✓";
    position: absolute;
    left: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-weight: bold;
    color: var(--color-secondary);
}
.benefits-list li {
    padding-left: 3rem;
}

.service-cta-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
    font-weight: 500;
    text-align: center;
}
.service-cta-button {
    text-align: center;
}

/* =========================================
   5. EXAMPLES GRID
   ========================================= */
#examples {
    background-color: var(--color-light-gray); /* Alternating section color */
}

.grid-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.card {
    background: #fff;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-top: 4px solid var(--color-primary); /* Blue top border */
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.card h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

/* =========================================
   6. SOCIAL PROOF
   ========================================= */
#social-proof {
    background-color: var(--color-bg);
}

.quote-card {
    background: var(--color-light-gray); /* Lighter card background */
    padding: 2rem;
    border-left: 4px solid var(--color-secondary);
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    border-radius: var(--border-radius);
}

.quote-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #333;
}

.quote-author {
    font-weight: 700;
    display: block;
    color: #111;
}

.quote-role {
    font-size: 0.9rem;
    color: var(--color-text-light);
}

/* =========================================
   7. CONTACT / CALENDAR SECTION (Updated)
   ========================================= */
#contact {
    background-color: var(--color-light-gray); /* Alternating section color */
    text-align: center;
}

/* Voeg toe aan style.css */
#contact .calendly-inline-widget {
    /* Gebruikt de breedte en centrering die we eerder hadden voor de wrapper */
    max-width: 700px;
    margin: 0 auto 2rem;
    
    /* Zorg dat de Calendly's eigen height wordt gerespecteerd (700px) */
    width: 100%; 
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-radius: var(--border-radius);
    overflow: hidden; /* Zorgt voor nette hoeken rondom de widget */
}
.calendar-wrapper {
    max-width: 700px;
    margin: 0 auto 2rem;
    background: #fff;
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.calendar-placeholder {
    width: 100%;
    height: 600px; /* Standard height for a calendar widget */
    border: 1px solid #ddd;
    border-radius: 4px;
}

/* =========================================
   8. TEAM SECTION
   ========================================= */
#team {
    background-color: var(--color-bg);
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.team-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--color-light-gray);
    transition: box-shadow 0.3s;
}
.team-card:hover {
    box-shadow: 0 5px 15px rgba(11, 133, 233, 0.1);
}

.photo-placeholder {
    object-fit: cover;
    width: 100px;
    height: 100px;
    background-color: var(--color-light-blue-accent); /* Slightly more colorful placeholder */
    border-radius: 50%;
    margin-bottom: 1.5rem;
    flex-shrink: 0;
    border: 3px solid var(--color-primary);
}

.team-photo {
    object-fit: cover; /* Zorgt ervoor dat de afbeelding de cirkel vult zonder uitgerekt te worden */
    width: 100px;
    height: 100px;
}

.team-name {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.team-role {
    font-size: 0.85rem;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.linkedin-link {
    display: inline-flex;
    align-items: center;
    margin-top: auto;
    font-weight: 600;
    font-size: 0.9rem;
}

/* =========================================
   9. FOOTER (Updated for White Text)
   ========================================= */
#footer {
    background-color: var(--color-dark-bg);
    color: #fff;
    padding: 40px 0;
    text-align: center;
}

#footer h4 {
    color: #fff; /* Ensure H4 is white */
}
/* This specific class is used for the gradient text in the logo/wordmark area */
#footer .text-gradient {

}


.footer-nav {
    margin: 1.5rem 0;
}

.footer-nav a {
    color: #ccc;
    margin: 0 10px;
    font-size: 0.9rem;
}

.footer-nav a:hover {
    color: #fff;
}

.footer-copy {
    color: #666;
    font-size: 0.8rem;
}

/* =========================================
   10. RESPONSIVE QUERIES
   ========================================= */
@media (min-width: 768px) {
    .hero-title { font-size: 3.5rem; }
    
    .grid-3 { grid-template-columns: repeat(3, 1fr); }
    .grid-2 { grid-template-columns: repeat(2, 1fr); }
    
    .team-card { flex-direction: row; align-items: flex-start; gap: 1.5rem; }
    .photo-placeholder { margin-bottom: 0; }
    
    .benefits-list { grid-template-columns: repeat(2, 1fr); }
}