/*
Theme Name: ClickCulture
Theme URI: https://clickculture.com
Author: ClickCulture
Description: Modern Living, Intelligently Delivered.
Version: 1.0
Requires at least: 6.4
Requires PHP: 8.0
Text Domain: clickculture
*/

:root {
    --primary: #0F172A;
    --accent: #2563EB;
    --highlight: #F97316;
    --light: #CBD5E1;
    --white: #FFFFFF;
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    background: var(--white);
    color: var(--primary);
    margin: 0;
    line-height: 1.6;
}

.container {
    width: 92%;
    max-width: 1280px;
    margin: auto;
}

header {
    border-bottom: 1px solid #e5e7eb;
    padding: 20px 0;
}

header h1 {
    font-weight: 800;
    margin: 0;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    padding: 0;
}

nav a {
    color: var(--primary);
    font-weight: 600;
}

.hero-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    margin-top: 40px;
}

.hero-large img {
    width: 100%;
    height: auto;
}

.hero-small {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.trend-grid,
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.trend-card,
.category-card {
    border: 1px solid #e5e7eb;
    padding: 15px;
    background: #fff;
    transition: 0.2s ease;
}

.trend-card:hover {
    transform: translateY(-4px);
}

.sidebar {
    position: sticky;
    top: 100px;
}

.ad-slot {
    border: 1px dashed #ccc;
    padding: 20px;
    text-align: center;
    margin: 30px 0;
}

.newsletter-box {
    background: var(--primary);
    color: #fff;
    padding: 40px;
    text-align: center;
    margin: 60px 0;
}

.newsletter-box input {
    padding: 12px;
    width: 300px;
    max-width: 100%;
    margin-right: 10px;
}

.newsletter-box button {
    padding: 12px 20px;
    background: var(--highlight);
    border: none;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
}

footer {
    border-top: 1px solid #e5e7eb;
    padding: 40px 0;
    margin-top: 60px;
}

.cc-paywall {
    padding: 60px;
    text-align: center;
    background: #f5f5f5;
    border: 1px solid #ddd;
}

.cc-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 24px;
    background: #111;
    color: #fff;
    text-decoration: none;
}

/* ==============================
   GLOBAL BASE
============================== */

body {
    font-family: 'Inter', sans-serif;
    background: #f5f5f7;
    margin: 0;
    color: #111;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

/* ==============================
   CONTAINER
============================== */

.cc-container {
    width: 92%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 40px 0;
}

/* ==============================
   SECTIONS
============================== */

.cc-section {
    margin-bottom: 60px;
}

.cc-section-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 25px;
    border-left: 4px solid #ff3c00;
    padding-left: 12px;
}

/* ==============================
   TREND GRID
============================== */

.trend-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

/* ==============================
   CATEGORY POSTS GRID
============================== */

.cc-post-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 25px;
}

.cc-post-card {
    background: #ffffff;
    border-radius: 6px;
    padding: 15px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.05);
    transition: transform 0.2s ease;
}

.cc-post-card:hover {
    transform: translateY(-4px);
}

.cc-post-card h3 {
    font-size: 18px;
    margin-top: 12px;
}

/* ==============================
   BUTTONS
============================== */

.cc-btn {
    display: inline-block;
    background: #ff3c00;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.2s ease;
}

.cc-btn:hover {
    background: #e53400;
}

/* ==============================
   HERO SECTION
============================== */

.cc-hero {
    background: #111;
    color: #ffffff;
    padding: 100px 20px;
    text-align: center;
}

.cc-hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

/* ==============================
   RESPONSIVE
============================== */

@media (max-width: 768px) {
    .cc-section-title {
        font-size: 22px;
    }

    .cc-hero h1 {
        font-size: 30px;
    }
}

/* ==============================
   CONVERSION HERO
============================== */

.cc-hero-conversion {
    background: linear-gradient(135deg, #111 0%, #1e293b 100%);
    color: #fff;
    text-align: center;
    padding: 120px 20px;
}

.cc-hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
}

.cc-hero-content p {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto 30px auto;
}

.cc-btn-hero {
    display: inline-block;
    background: #ff3c00;
    padding: 16px 32px;
    font-weight: 700;
    border-radius: 6px;
    color: #fff;
    font-size: 18px;
    transition: 0.3s ease;
}

.cc-btn-hero:hover {
    background: #e53400;
}

/* ==============================
   PREMIUM SECTION
============================== */

.cc-premium-highlight {
    background: #111;
    color: #fff;
    padding: 60px;
    text-align: center;
    border-radius: 8px;
}

/* ==============================
   HEADER
============================== */

.cc-header {
    background: #ffffff;
    border-bottom: 1px solid #eee;
}

.cc-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.cc-site-title {
    font-size: 24px;
    font-weight: 800;
}

/* ==============================
   FOOTER
============================== */

.cc-footer {
    background: #111;
    color: #fff;
    padding: 60px 0 20px;
    margin-top: 80px;
}

.cc-footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-widget h4 {
    margin-bottom: 15px;
}

.cc-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}