/*
Theme Name: Million Dollar Father
Theme URI: https://milliondollarfather.com
Author: MDF Team
Author URI: https://milliondollarfather.com
Description: Egyedi WordPress téma a Million Dollar Father weboldalhoz - modern apaság mozgalom
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mdf
*/

/* CSS Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --warm-beige: #F5EDE3;
    --deep-brown: #3A2F23;
    --gold: #C8A04F;
    --dark-gold: #A7843A;
    --white: #FFFFFF;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    background-color: var(--warm-beige);
    color: var(--deep-brown);
    line-height: 1.7;
}

body.mobile-menu-open {
    overflow: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Arial', 'Helvetica', sans-serif;
    font-weight: 600;
    color: var(--deep-brown);
    line-height: 1.2;
}

h1 { font-size: 3.5rem; margin-bottom: 1.5rem; }
h2 { font-size: 2.5rem; margin-bottom: 1.5rem; }
h3 { font-size: 1.8rem; margin-bottom: 1rem; }
h4 { font-size: 1.4rem; margin-bottom: 0.8rem; }
p { font-size: 1.1rem; margin-bottom: 1rem; }

/* Header */
header.site-header {
    position: sticky;
    top: 0;
    background-color: rgba(245, 237, 227, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(58, 47, 35, 0.1);
    z-index: 1000;
    padding: 1rem 0;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--deep-brown);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.main-navigation {
    display: flex;
    align-items: center;
}

.main-navigation .nav-menu {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.main-navigation .nav-menu li {
    margin: 0;
    padding: 0;
}

.main-navigation .nav-menu a,
.main-navigation a {
    color: var(--deep-brown);
    text-decoration: none;
    font-size: 0.95rem;
    font-family: 'Arial', sans-serif;
    transition: color 0.3s;
    font-weight: 500;
}

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

.header-cta {
    display: flex;
    gap: 1rem;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background-color: var(--deep-brown);
    transition: all 0.3s ease;
    border-radius: 3px;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Buttons */
.btn {
    padding: 0.75rem 1.8rem;
    font-size: 0.95rem;
    font-family: 'Arial', sans-serif;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    border-radius: 6px;
    font-weight: 500;
}

.btn-primary {
    background-color: var(--gold);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--dark-gold);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--deep-brown);
    border: 2px solid var(--deep-brown);
}

.btn-outline:hover {
    background-color: var(--deep-brown);
    color: var(--warm-beige);
}

.btn-secondary {
    background-color: var(--deep-brown);
    color: var(--warm-beige);
}

.btn-secondary:hover {
    background-color: #2A1F13;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 5rem 0;
}

/* Hero Section */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding-top: 2rem;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-text p {
    font-size: 1.3rem;
    color: rgba(58, 47, 35, 0.8);
    margin-bottom: 2.5rem;
    max-width: 550px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
}

.hero-image {
    background: linear-gradient(135deg, var(--gold) 0%, var(--dark-gold) 100%);
    border-radius: 20px;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

/* Info Banner */
.info-banner {
    background-color: rgba(200, 160, 79, 0.15);
    border-left: 4px solid var(--gold);
    padding: 1rem 1.5rem;
    margin-top: 3rem;
    border-radius: 6px;
}

.info-banner p {
    font-size: 0.95rem;
    margin: 0;
}

.info-banner a {
    color: var(--gold);
    font-weight: 600;
    text-decoration: none;
}

/* Value/Feature Grid */
.value-section,
.features-section {
    background-color: var(--white);
}

.value-grid,
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.value-card,
.feature-card {
    padding: 2rem;
    border-radius: 12px;
    background-color: var(--warm-beige);
    border: 2px solid rgba(58, 47, 35, 0.05);
}

.value-card h3,
.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--deep-brown);
}

.value-card p,
.feature-card p {
    font-size: 1rem;
    color: rgba(58, 47, 35, 0.8);
}

/* Dark Section */
.dark-section {
    background-color: var(--deep-brown);
    color: var(--warm-beige);
}

.dark-section h2,
.dark-section h3,
.dark-section h4 {
    color: var(--warm-beige);
}

.dark-section p {
    color: var(--warm-beige);
}

/* Gold Section */
.gold-section {
    background: linear-gradient(135deg, var(--gold) 0%, var(--dark-gold) 100%);
    color: var(--white);
}

.gold-section h2,
.gold-section h3,
.gold-section h4,
.gold-section p {
    color: var(--white);
}

/* Two Column Layout */
.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.column-image {
    background: linear-gradient(135deg, var(--warm-beige) 0%, rgba(200, 160, 79, 0.2) 100%);
    border-radius: 20px;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.column-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

/* Feature List */
.feature-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    align-items: start;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background-color: var(--gold);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    color: var(--white);
}

.feature-text h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.feature-text p {
    font-size: 0.95rem;
    color: rgba(58, 47, 35, 0.7);
}

.dark-section .feature-text p {
    color: rgba(245, 237, 227, 0.8);
}

/* Benefit Cards */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin: 3rem 0;
}

.benefit-card {
    background-color: var(--warm-beige);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
}

.dark-section .benefit-card {
    background-color: rgba(245, 237, 227, 0.1);
    border: 1px solid rgba(245, 237, 227, 0.2);
}

.gold-section .benefit-card {
    background-color: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background-color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

.dark-section .benefit-icon {
    background-color: var(--gold);
    color: var(--white);
}

.benefit-card h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.benefit-card p {
    font-size: 0.95rem;
    color: rgba(58, 47, 35, 0.7);
}

.dark-section .benefit-card p {
    color: var(--warm-beige);
}

/* Pricing Cards */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    background-color: var(--white);
    padding: 3rem 2rem;
    border-radius: 12px;
    border: 2px solid rgba(58, 47, 35, 0.1);
}

.pricing-card.featured {
    border: 3px solid var(--gold);
    position: relative;
}

.pricing-card .badge {
    background-color: var(--gold);
    color: var(--white);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    display: inline-block;
    margin-bottom: 1rem;
}

.pricing-card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.pricing-card .price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.pricing-card .price span {
    font-size: 1.2rem;
    color: var(--deep-brown);
}

.pricing-card ul {
    list-style: none;
    margin: 2rem 0;
}

.pricing-card li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(58, 47, 35, 0.1);
}

.pricing-card li:before {
    content: "✓ ";
    color: var(--gold);
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Content Box */
.content-box {
    background-color: var(--warm-beige);
    padding: 3rem;
    border-radius: 12px;
    margin: 3rem 0;
}

.dark-section .content-box {
    background-color: rgba(245, 237, 227, 0.1);
    border: 1px solid rgba(245, 237, 227, 0.2);
}

/* Blog/Resources Grid */
.blog-grid,
.resources-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.blog-card,
.resource-card {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid rgba(58, 47, 35, 0.05);
    transition: transform 0.3s;
}

.blog-card:hover,
.resource-card:hover {
    transform: translateY(-5px);
}

.blog-card img,
.resource-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-card-content,
.resource-card-content {
    padding: 2rem;
}

.blog-card h4,
.resource-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.blog-card p,
.resource-card p {
    font-size: 0.95rem;
    color: rgba(58, 47, 35, 0.7);
    margin-bottom: 1rem;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.85rem;
    color: rgba(58, 47, 35, 0.6);
    margin-bottom: 1rem;
}

.tag {
    background-color: var(--gold);
    color: var(--white);
    padding: 0.2rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    display: inline-block;
}

/* Footer */
footer.site-footer {
    background-color: var(--deep-brown);
    color: var(--warm-beige);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: var(--warm-beige);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--gold);
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.8rem;
    border: 1px solid rgba(245, 237, 227, 0.3);
    background-color: rgba(245, 237, 227, 0.1);
    color: var(--warm-beige);
    border-radius: 6px;
    font-size: 0.95rem;
}

.newsletter-form input::placeholder {
    color: rgba(245, 237, 227, 0.5);
}

.newsletter-form button {
    padding: 0.8rem 1.5rem;
}

.footer-bottom {
    border-top: 1px solid rgba(245, 237, 227, 0.2);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    color: var(--warm-beige);
    font-size: 1.3rem;
    transition: color 0.3s;
    text-decoration: none;
}

.social-links a:hover {
    color: var(--gold);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content,
    .two-column {
        grid-template-columns: 1fr;
    }

    .value-grid,
    .features-grid,
    .benefits-grid,
    .blog-grid,
    .resources-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-wrap: wrap;
        position: relative;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .main-navigation {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background-color: var(--warm-beige);
        border-bottom: 2px solid var(--gold);
        box-shadow: 0 5px 15px rgba(58, 47, 35, 0.1);
        z-index: 1000;
        padding: 1rem 0;
    }
    
    .main-navigation.mobile-active {
        display: flex;
    }
    
    .main-navigation .nav-menu {
        flex-direction: column;
        width: 100%;
        gap: 0;
        padding: 0 2rem;
    }
    
    .main-navigation .nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(58, 47, 35, 0.1);
    }
    
    .main-navigation .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .main-navigation .nav-menu a {
        display: block;
        padding: 1rem 0;
        font-size: 1.1rem;
    }
    
    .header-cta {
        width: 100%;
        margin-top: 1rem;
        justify-content: center;
    }
    
    .header-cta .btn {
        flex: 1;
        max-width: 300px;
        text-align: center;
    }

    .value-grid,
    .features-grid,
    .benefits-grid,
    .blog-grid,
    .resources-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    section {
        padding: 3rem 0;
    }
}

/* WordPress Specific */
.alignleft {
    float: left;
    margin-right: 1.5rem;
}

.alignright {
    float: right;
    margin-left: 1.5rem;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.wp-caption {
    max-width: 100%;
}

.wp-caption-text {
    font-size: 0.9rem;
    font-style: italic;
    color: rgba(58, 47, 35, 0.7);
}

/* Text Alignment */
.text-center {
    text-align: center;
}

.max-width-900 {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.max-width-800 {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Utility Classes */
.mb-3 {
    margin-bottom: 3rem;
}

.mt-3 {
    margin-top: 3rem;
}
