/*
Theme Name: DIY Home Hub Theme
Theme URI: https://diyhomehub24.com
Description: Custom WordPress theme for DIY Home Hub 24 funnel pages - clean, minimal, mobile-first design
Version: 1.0
Author: DIY Home Hub 24
Author URI: https://diyhomehub24.com
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: diyhomehub
Tags: custom, funnel, woodworking, minimal
*/

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #3D1F1F;
    color: #2C2C2C;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 500px;
    margin: 0 auto;
    padding: 20px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card {
    background: #FEFEFE;
    border-radius: 30px;
    padding: 40px 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    width: 100%;
}

.header {
    text-align: center;
    margin-bottom: 10px;
}

.logo-text {
    font-size: 18px;
    font-weight: 700;
    color: #2C2C2C;
    margin-bottom: 0;
}

.logo-text::before {
    content: "🔨 ";
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    padding: 4px 0;
}

.badge {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 6px;
    flex: 1;
}

.badge-icon {
    font-size: 16px;
    display: inline-block;
    margin-bottom: 0;
    flex-shrink: 0;
}

.badge-title {
    font-size: 8px;
    font-weight: 700;
    color: #2C2C2C;
    text-transform: uppercase;
    margin-bottom: 0;
    white-space: nowrap;
}

.badge-value {
    font-size: 8px;
    color: #666;
    line-height: 1.3;
}

/* Hero Image */
.hero-image {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.18);
    margin-bottom: 10px;
    display: block;
}

/* Headings */
.headline {
    font-size: 32px;
    font-weight: 700;
    color: #563232;
    text-align: center;
    margin-bottom: 15px;
    line-height: 1.2;
}

.subheadline {
    font-size: 18px;
    font-weight: 600;
    color: #2C2C2C;
    text-align: center;
    margin-bottom: 30px;
}

.question-number {
    font-size: 36px;
    font-weight: 700;
    color: #59423D;
    text-align: center;
    margin-bottom: 20px;
}

.question-text {
    font-size: 20px;
    font-weight: 600;
    color: #2C2C2C;
    text-align: center;
    margin-bottom: 30px;
}

/* Buttons */
.cta-button,
.quiz-button {
    display: block;
    width: 100%;
    background: #563232;
    color: white;
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 20px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.cta-button:hover,
.quiz-button:hover {
    background: #4A3632;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(89, 66, 61, 0.3);
}

.cta-button:active,
.quiz-button:active {
    transform: translateY(0);
}

.quiz-button:last-of-type {
    margin-bottom: 0;
}

/* Content */
.content-text {
    font-size: 16px;
    color: #2C2C2C;
    text-align: left;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Email Form */
.email-form {
    margin-bottom: 25px;
}

.email-input {
    width: 100%;
    padding: 18px 20px;
    font-size: 16px;
    border: 2px solid #ddd;
    border-radius: 12px;
    margin-bottom: 20px;
    font-family: inherit;
}

.email-input:focus {
    outline: none;
    border-color: #59423D;
}

.email-input::placeholder {
    color: #999;
}

/* Price */
.price-text {
    font-size: 14px;
    font-weight: 600;
    color: #2C2C2C;
    text-align: center;
    margin-bottom: 10px;
}

.security-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    color: #666;
    margin-bottom: 20px;
    text-align: center;
}

.security-note::before {
    content: "🔒";
}

/* Footer */
.footer {
    margin-top: 20px;
    text-align: center;
    font-size: 6px;
    color: #666;
    line-height: 1.6;
}

.footer-links {
    margin-bottom: 10px;
}

.footer-links a {
    color: #2C2C2C;
    text-decoration: none;
    margin: 0 5px;
}

.footer-disclaimer {
    color: #888;
    margin-bottom: 5px;
    font-size: 6px;
}

.footer-contact {
    margin-top: 10px;
}

/* Responsive */
@media (min-width: 768px) {
    .container {
        padding: 40px;
    }

    .card {
        padding: 50px 40px;
        padding-bottom: 15px;
    }

    .logo-text {
        font-size: 28px;
    }

    .headline,
    .question-number {
        font-size: 40px;
    }

    .subheadline,
    .question-text {
        font-size: 22px;
    }

    .badge-title {
        font-size: 8px;
    }

    .badge-value {
        font-size: 8px;
    }

    .content-text {
        font-size: 18px;
    }
}