/*
Theme Name: Tattoo Professioneel Thema
Theme URI: https://example.com
Author: Jouw Naam
Description: Een modern, professioneel WordPress thema met een uitklapmenu en iconen.
Version: 1.0
Text Domain: tattoosite
*/

/* 
  Bestand: css/style.css
  Doel: De centrale styling van het gehele thema. 
  Bevat de vormgeving van de header, hero, diensten-grid, standaardpagina's en de footer.
*/

/* ==========================================================================
   1. Algemene basisinstellingen (Reset & Fonts)
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f8f9fa;
    color: #333;
}

a {
    text-decoration: none;
    color: inherit;
}





/* ==========================================================================
   3. Hero Sectie (Homepage Binnenkomer)
   ========================================================================== */
.hero-section {
    background: linear-gradient(135deg, #f0f4ff 0%, #f8f9fa 100%);
    padding: 80px 20px;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    width: 100%;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    color: #1e293b;
    margin-bottom: 20px;
    font-weight: 800;
}

.hero-content .highlight {
    color: #2563eb;
}

.hero-content p {
    font-size: 18px;
    line-height: 1.6;
    color: #64748b;
    margin-bottom: 30px;
}

/* Knoppen binnen de hero */
.hero-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #2563eb;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #ffffff;
    color: #4b5563;
    border: 1px solid #d1d5db;
}

.btn-secondary:hover {
    background-color: #f3f4f6;
    color: #1f2937;
    transform: translateY(-2px);
}

/* De vliegende raket */
.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-icon {
    font-size: 180px;
    color: #2563eb;
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}


/* ==========================================================================
   4. Diensten Sectie (Het 3-Koloms Grid)
   ========================================================================== */
.services-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
}

.services-header {
    text-align: center;
    margin-bottom: 50px;
}

.services-header h2 {
    font-size: 36px;
    color: #1e293b;
    margin-bottom: 15px;
    font-weight: 700;
}

.services-header p {
    font-size: 16px;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

/* Grid layout */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: #f8f9fa;
    padding: 40px 30px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    background-color: #ffffff;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.1);
    border-color: #bfdbfe;
}

.service-icon-box {
    width: 60px;
    height: 60px;
    background-color: #eff6ff;
    color: #2563eb;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon-box {
    background-color: #2563eb;
    color: #ffffff;
}

.service-card h3 {
    font-size: 22px;
    color: #1e293b;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #64748b;
    margin-bottom: 20px;
}

.service-link {
    font-size: 14px;
    font-weight: 600;
    color: #2563eb;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.2s ease;
}

.service-card:hover .service-link {
    gap: 8px;
}


/* ==========================================================================
   5. Standaard Pagina Template (page.php)
   ========================================================================== */
/* 1. Algemene Layout & Wrapper (Zorgt voor uitlijning met de fixed header) */
.page-main {
    width: 100%;
    padding-top: 290px; /* Ruimte om onder de fixed main-header te vallen */
    background-color: #ffffff;
}

.page-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 80px 20px;
}

/* 2. Grote Pagina Kop (Exact dezelfde stijl als 'My Story:' en 'Contact:') */
.page-default-header h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 64px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 0.9;
    margin: 0 0 60px 0;
    letter-spacing: 1px;
    color: #000000;
}

/* 3. Editor Content Styling (Alles wat uit WordPress the_content() komt) */
.page-content-container {
    max-width: 800px; /* Houdt tekstregels prettig leesbaar (niet te breed) */
    font-family: 'Raleway', sans-serif;
    font-size: 15px;
    line-height: 1.8;
    color: #444444;
}

/* Styling voor paragrafen in de content */
.page-content-container p {
    margin: 0 0 25px 0;
}

/* Styling voor koppen DIE JE IN DE TEXT TYPT (H2, H3, H4) via de editor */
.page-content-container h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    color: #111111;
    margin: 40px 0 20px 0;
    letter-spacing: 1px;
}

.page-content-container h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    color: #111111;
    margin: 30px 0 15px 0;
    letter-spacing: 1px;
}

/* Strakke styling voor linkjes in de lopende tekst */
.page-content-container a {
    color: #111111;
    text-decoration: none;
    border-bottom: 1px solid #111111; /* Strakke onderstreping */
    transition: opacity 0.2s ease;
}

.page-content-container a:hover {
    opacity: 0.6;
}

/* Strakke, minimalistische blockquote (indien gebruikt in editor) */
.page-content-container blockquote {
    margin: 40px 0;
    padding: 10px 0 10px 30px;
    border-left: 3px solid #111111; /* Dikke zwarte lijn links */
    font-style: italic;
    color: #555555;
}

/* Standaard lijsten (bulletpoints) */
.page-content-container ul, 
.page-content-container ol {
    margin: 0 0 25px 0;
    padding-left: 20px;
}

.page-content-container li {
    margin-bottom: 10px;
}

/* ==========================================================================
   Standaard Pagina Template (page.php) RESPONSIVE LAYOUT (Mobiel)
   ========================================================================== */
@media (max-width: 768px) {
    .page-main {
        padding-top: 110px;
    }
    
    .page-default-header h1 {
        font-size: 48px;
        margin-bottom: 40px;
    }
    
    .page-content-container {
        font-size: 14px; /* Iets compacter op mobiel */
    }
}