/*
Theme Name: 1 Jump 2
Theme URI: https://1j2.com
Author: Adam O'Connor
Author URI: https://1j2.com
Description: Custom WordPress theme using ACF and Classic Editor.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: 1jump2
Tags: custom, ACF, classic-editor
*/



/* Base Styles for 1 Jump 2 Theme */

/* Google Font: Inter */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
    background: #fff;
    color: #2a2a2a;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero {
    background: linear-gradient(135deg, #e9d6f5, #f5ebff);
    color: #3e176b;
    padding: 5rem 2rem;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero p {
    font-size: 1.25rem;
    max-width: 720px;
    margin: 0 auto 2rem;
}

.hero .btn {
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
    background: #a24ea6;
    color: white;
    border-radius: 999px;
    border: none;
    font-weight: 600;
    transition: background 0.3s;
}

.hero .btn:hover {
    background: #7e2f82;
}

.featured-themes {
    background: #fafafa;
    padding: 5rem 2rem;
}

.featured-themes h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #581c87;
    margin-bottom: 3rem;
}

.themes-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.theme-card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.2s ease;
}

.theme-card:hover {
    transform: translateY(-5px);
}

.theme-card img {
    max-width: 100%;
    border-radius: 12px;
    margin-bottom: 1rem;
}

.theme-card h3 {
    font-size: 1.5rem;
    margin: 0.5rem 0;
    color: #3e176b;
}

.theme-card p {
    font-size: 1rem;
    color: #555;
    min-height: 60px;
    margin-bottom: 1rem;
}

.theme-card .btn {
    background: #a24ea6;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
}

