/*
Theme Name: Acne Review Theme
Description: Professional acne review website theme for acnereviewtips.com. Features responsive design, SEO optimization, and acne-focused content layout with custom post types for product reviews.
Author: Manus AI
Version: 1.0.0
Tags: acne, reviews, health, responsive, seo, custom-post-types
Text Domain: acne-review-theme
*/

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* Header Styles */
.site-header {
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #e5e7eb;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
}

.site-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #059669;
    font-size: 24px;
    font-weight: bold;
}

.site-logo svg {
    width: 32px;
    height: 32px;
    margin-right: 8px;
}

/* Navigation */
.main-navigation {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    margin: 0;
}

.nav-menu a {
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #059669;
}

.cta-button {
    background: #059669;
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background: #047857;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #ecfdf5 0%, #dbeafe 100%);
    padding: 80px 20px;
    text-align: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: #d1fae5;
    color: #065f46;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 16px;
}

.hero-title {
    font-size: clamp(32px, 5vw, 64px);
    font-weight: bold;
    color: #111827;
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero-title .highlight {
    color: #059669;
}

.hero-description {
    font-size: 20px;
    color: #6b7280;
    margin-bottom: 32px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-bottom: 64px;
}

.btn-primary {
    background: #059669;
    color: white;
    padding: 12px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background: #047857;
}

.btn-secondary {
    background: transparent;
    color: #059669;
    padding: 12px 32px;
    border: 2px solid #059669;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 18px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #059669;
    color: white;
}

/* Stats Section */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    margin-top: 64px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 36px;
    font-weight: bold;
    color: #059669;
    display: block;
}

.stat-label {
    color: #6b7280;
    font-size: 16px;
}

/* Services Section */
.services-section {
    padding: 80px 20px;
    background: #fff;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
}

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

.section-title {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: bold;
    color: #111827;
    margin-bottom: 16px;
}

.section-description {
    font-size: 20px;
    color: #6b7280;
    max-width: 800px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.service-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 32px;
    transition: box-shadow 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.service-icon {
    width: 48px;
    height: 48px;
    color: #059669;
    margin-bottom: 16px;
}

.service-title {
    font-size: 24px;
    font-weight: bold;
    color: #111827;
    margin-bottom: 8px;
}

.service-description {
    color: #6b7280;
    margin-bottom: 16px;
}

.service-features {
    list-style: none;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    color: #374151;
}

.service-features .checkmark {
    width: 16px;
    height: 16px;
    color: #10b981;
}

/* Trust Section */
.trust-section {
    padding: 80px 20px;
    background: #f9fafb;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.trust-item {
    text-align: center;
}

.trust-icon {
    width: 64px;
    height: 64px;
    color: #059669;
    margin: 0 auto 16px;
}

.trust-title {
    font-size: 20px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 8px;
}

.trust-description {
    color: #6b7280;
}

/* Reviews Section */
.reviews-section {
    padding: 80px 20px;
    background: #fff;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.review-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    transition: box-shadow 0.3s ease;
}

.review-card:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.review-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-icon.green { background: #d1fae5; }
.review-icon.blue { background: #dbeafe; }
.review-icon.purple { background: #e9d5ff; }

.review-icon svg {
    width: 40px;
    height: 40px;
}

.review-icon.green svg { color: #059669; }
.review-icon.blue svg { color: #2563eb; }
.review-icon.purple svg { color: #7c3aed; }

.review-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 4px;
}

.review-title.green { color: #059669; }
.review-title.blue { color: #2563eb; }
.review-title.purple { color: #7c3aed; }

.review-subtitle {
    color: #6b7280;
    margin-bottom: 16px;
}

.review-rating {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 4px;
}

.review-rating.green { color: #059669; }
.review-rating.blue { color: #2563eb; }
.review-rating.purple { color: #7c3aed; }

.review-metric {
    font-size: 24px;
    font-weight: bold;
    color: #10b981;
    margin-bottom: 4px;
}

.review-label {
    color: #6b7280;
    font-size: 14px;
    margin-bottom: 16px;
}

.review-stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 16px;
}

.star {
    width: 20px;
    height: 20px;
    color: #fbbf24;
}

.review-button {
    width: 100%;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    color: white;
    transition: opacity 0.3s ease;
}

.review-button:hover {
    opacity: 0.9;
}

.review-button.green { background: #059669; }
.review-button.blue { background: #2563eb; }
.review-button.purple { background: #7c3aed; }

/* CTA Section */
.cta-section {
    padding: 80px 20px;
    background: #059669;
    color: white;
    text-align: center;
}

.cta-title {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: bold;
    margin-bottom: 16px;
}

.cta-description {
    font-size: 20px;
    opacity: 0.9;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.btn-white {
    background: white;
    color: #059669;
    padding: 12px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 18px;
    transition: background-color 0.3s ease;
}

.btn-white:hover {
    background: #f3f4f6;
}

.btn-outline-white {
    background: transparent;
    color: white;
    padding: 12px 32px;
    border: 2px solid white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 18px;
    transition: all 0.3s ease;
}

.btn-outline-white:hover {
    background: white;
    color: #059669;
}

/* Footer */
.site-footer {
    background: #111827;
    color: white;
    padding: 48px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-bottom: 32px;
}

.footer-brand {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.footer-brand svg {
    width: 32px;
    height: 32px;
    color: #10b981;
    margin-right: 8px;
}

.footer-brand-name {
    font-size: 24px;
    font-weight: bold;
}

.footer-description {
    color: #9ca3af;
}

.footer-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 32px;
    text-align: center;
    color: #9ca3af;
}

/* Content Styles */
.content-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.page-title {
    font-size: 48px;
    font-weight: bold;
    color: #111827;
    margin-bottom: 24px;
    text-align: center;
}

.page-content {
    font-size: 18px;
    line-height: 1.8;
    color: #374151;
}

.page-content h2 {
    font-size: 32px;
    font-weight: bold;
    color: #111827;
    margin: 32px 0 16px;
}

.page-content h3 {
    font-size: 24px;
    font-weight: 600;
    color: #111827;
    margin: 24px 0 12px;
}

.page-content p {
    margin-bottom: 16px;
}

.page-content ul, .page-content ol {
    margin-bottom: 16px;
    padding-left: 24px;
}

.page-content li {
    margin-bottom: 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-container {
        padding: 0 16px;
    }
    
    .main-navigation {
        display: none;
    }
    
    .hero-section {
        padding: 60px 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        padding: 24px;
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* WordPress Specific Styles */
.wp-block-group {
    margin: 0;
}

.alignwide {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
}

.alignfull {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
}

