/*
Theme Name: teststyling theme
Author: Your Name
Author URI: https://yourwebsite.com/
Description: A brief description of your theme.
Version: 1.0
License: GPL v2 or later
Text Domain: your-theme-textdomain
*/

/* Add missing CSS variables at the top */
    :root {
            --primary-color: #2C3E50; /* Deep navy */
            --secondary-color: #B7957A; /* Warm gold */
            --background: #F8F9FA; /* Soft white-gray */
            --text-color: #2D3436; /* Dark charcoal */
            --accent-color: #F1C40F; /* Rich gold */
        }
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        body {
            background: var(--background);
            color: var(--text-color);
            font-family: 'Montserrat', sans-serif;
            line-height: 1.6;
        }
        /* Navigation */
        .navbar {
            background: rgba(255, 255, 250, 0.97);
            backdrop-filter: blur(10px);
            padding: 1rem;
            position: fixed;
            top: 40px;
            width: 100%;
            z-index: 1001;
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
        }
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .nav-list {
            display: flex;
            gap: 2rem;
            list-style: none;
        }
        .nav-item a {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 500;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            transition: all 0.3s;
        }
        .nav-item a:hover {
            background: rgba(44, 62, 80, 0.05);
            color: var(--secondary-color);
        }
        .menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--primary-color);
            cursor: pointer;
        }
        .logo {
            font-size: 1.5rem;
            color: var(--primary-color);
            font-weight: 700;
            text-decoration: none;
        }
        /* Donation Banner */
        .donation-banner {
            background: var(--secondary-color);
            color: white;
            padding: 0.5rem 1rem;
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1002;
            display: flex;
            justify-content: space-between;
            align-items: center;
            min-height: 40px;
        }
        .donation-btn {
            background: white;
            color: var(--secondary-color);
            border: none;
            padding: 0.3rem 1rem;
            border-radius: 15px;
            cursor: pointer;
            font-weight: 700;
            white-space: nowrap;
            transition: all 0.3s;
        }
        .donation-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        }
        @media (max-width: 768px) {
            .nav-list {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                background: rgba(255, 255, 250, 0.97);
                width: 100%;
                padding: 1rem;
                box-shadow: 0 2px 15px rgba(0,0,0,0.1);
                flex-direction: column;
                gap: 1rem;
                z-index: 999;
            }
            .nav-list.active {
                display: flex;
            }
            .menu-toggle {
                display: block;
            }
        }
        @media (max-width: 480px) {
            .donation-banner {
                flex-direction: column;
                gap: 0.5rem;
                text-align: center;
                padding: 0.4rem 0.5rem;
            }
            .donation-btn {
                padding: 0.2rem 0.8rem;
                font-size: 0.8rem;
            }
        }
        a {
            color: var(--primary-color);
            text-decoration: none;
            transition: color 0.3s;
        }
        a:hover {
            color: var(--secondary-color);
        }
    /* Main Content */
        main {
            padding: 2rem 1rem;
            max-width: 1200px;
            margin: 0 auto;
        }
 /* Ads Section */
        .ads-section {
            margin: 2rem auto;
            max-width: 728px;
            text-align: center;
        }
        .ad-content {
            background: white;
            border: 2px solid #E5E7E9;
            border-radius: 12px;
            padding: 1.5rem;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            color: var(--text-color);
        }
        /* Hero Article Styles */
        .hero-article {
            padding: 5rem 1rem 3rem;
            background: linear-gradient(to bottom, var(--background) 60%, white 100%);
            text-align: center;
            margin-top: 40px;
        }
        .article-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .article-title {
            color: var(--primary-color);
            font-size: 2.5rem;
            margin-bottom: 1.2rem;
            font-family: 'Playfair Display', serif;
            position: relative;
            display: inline-block;
            padding-bottom: 0.5rem;
            line-height: 1.2;
        }
        .article-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 120px;
            height: 3px;
            background: var(--secondary-color);
        }
        .article-subtitle {
            color: #666;
            font-size: 1.3rem;
            margin-bottom: 3rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.5;
        }
        /* Feature Grid */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2.5rem;
            margin: 3rem 0;
        }
        .feature-card {
            background: white;
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            transition: transform 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.12);
        }
        .feature-icon {
            width: 60px;
            height: 60px;
            border-radius: 15px;
            margin: 0 auto 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            background: #2C3E5010;
            color: var(--primary-color);
            border: 2px solid #2C3E5030;
        }
        .feature-icon i {
            width: 100%;
            text-align: center;
        }
        .feature-link {
            color: var(--secondary-color) !important;
            font-weight: 700;
            text-decoration: none !important;
            display: inline-block;
            margin-top: 1rem;
            transition: color 0.3s;
        }
        .feature-link:hover {
            color: var(--primary-color) !important;
            text-decoration: underline !important;
        }
        /* Workflow Section */
        .workflow-section {
            margin: 5rem 0;
            padding: 0 1rem;
        }
        .section-title {
            text-align: center;
            color: var(--primary-color);
            margin-bottom: 2.5rem;
            font-size: 2rem;
            font-family: 'Playfair Display', serif;
            position: relative;
            padding-bottom: 0.5rem;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: var(--accent-color);
        }
        .section-title i {
            margin-right: 10px;
            color: var(--secondary-color);
        }
        .steps-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }
        .step-card {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
            position: relative;
            border: 2px solid #2C3E5020;
            transition: all 0.3s;
            height: 100%;
        }
        .step-card:hover {
            transform: translateY(-3px);
            border-color: var(--primary-color);
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        }
        .step-number {
            width: 40px;
            height: 40px;
            background: var(--primary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: -45px auto 1rem;
            font-weight: 700;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
            font-size: 1.2rem;
        }
        /* Inspiration Section */
        .inspiration-section {
            margin: 5rem 0;
            padding: 0 1rem;
        }
        .inspiration-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
        }
        .inspiration-card {
            padding: 1.5rem;
            border: 2px dashed var(--primary-color);
            border-radius: 12px;
            text-align: center;
            background: white;
            transition: all 0.3s;
            height: 100%;
        }
        .inspiration-card:hover {
            transform: scale(1.02);
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            border-style: solid;
        }
        .inspiration-text {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            margin: 1rem 0;
            color: var(--primary-color);
            letter-spacing: 1px;
            direction: ltr;
        }
        /* Style Showcase */
        .styles-showcase {
            margin: 5rem 0;
            padding: 0 1rem;
        }
        .style-categories {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2.5rem;
            background: #f8f9fa;
            padding: 2rem;
            border-radius: 12px;
        }
        .style-category {
            background: #fff;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
            text-align: center;
        }
        .style-examples {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-top: 1.5rem;
            font-family: 'Playfair Display', serif;
            font-size: 1.6rem;
            color: var(--primary-color);
            border: 2px solid #B7957A30;
            padding: 1.5rem;
            border-radius: 10px;
            min-height: 120px;
            justify-content: center;
        }
        /* FAQ Section */
        .faq-section {
            max-width: 1200px;
            margin: 4rem auto;
            padding: 0 1rem;
        }
        .faq-container {
            background: white;
            border-radius: 12px;
            padding: 2rem;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        }
        .faq-item {
            margin-bottom: 1.5rem;
            border-bottom: 1px solid #eee;
            padding-bottom: 1rem;
        }
        .faq-item:last-child {
            margin-bottom: 0;
            border-bottom: none;
            padding-bottom: 0;
        }
        .faq-question {
            color: var(--primary-color);
            font-weight: 700;
            margin-bottom: 0.5rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 1.1rem;
        }
        .faq-answer {
            color: #666;
            line-height: 1.6;
            padding-left: 1.5rem;
            display: none;
            margin-top: 0.5rem;
        }
        .faq-question i {
            color: var(--secondary-color);
            font-size: 1.2rem;
            min-width: 20px;
        }
        /* Promotional Section */
        .promo-section {
            background: linear-gradient(135deg, var(--primary-color), #1A252F);
            color: white;
            padding: 2rem 1rem;
            text-align: center;
        }
        .promo-content {
            max-width: 1200px;
            margin: 0 auto;
        }
        .promo-title {
            font-size: 1.8rem;
            margin-bottom: 0.5rem;
            font-family: 'Playfair Display', serif;
        }
        .promo-subtitle {
            font-size: 1.1rem;
            opacity: 0.9;
        }
        /* Footer */
        .main-footer {
            background: linear-gradient(135deg, var(--primary-color), #1A252F);
            color: white;
            padding: 3rem 1rem;
            margin-top: 4rem;
        }
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }
        .footer-section h4 {
            margin-bottom: 1rem;
            border-bottom: 2px solid var(--secondary-color);
            padding-bottom: 0.5rem;
            font-size: 1.2rem;
            font-weight: 600;
        }
        .footer-links {
            list-style: none;
            padding: 0;
        }
        .footer-links li {
            margin-bottom: 0.7rem;
        }
        .footer-links a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            transition: all 0.3s;
            display: inline-block;
        }
        .footer-links a:hover {
            color: white;
            padding-left: 0.5rem;
        }
        .copyright {
            text-align: center;
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.9rem;
        }
        /* Main Content */
        main {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .article-title {
                font-size: 2rem;
            }
            .article-subtitle {
                font-size: 1.1rem;
            }
            .section-title {
                font-size: 1.7rem;
            }
            .section-title::after {
                width: 60px;
            }
        }
        @media (max-width: 480px) {
            .article-title {
                font-size: 1.8rem;
            }
            .steps-grid, .inspiration-grid, .style-categories {
                grid-template-columns: 1fr;
            }
            .section-title {
                font-size: 1.5rem;
            }
            .inspiration-text {
                font-size: 1.5rem;
            }
            .style-examples {
                font-size: 1.4rem;
            }
        }