/*
Theme Name: GLP-1 Muscle Project
Theme URI: https://example.com/glp1-muscle-project
Author: GLP-1 Muscle Project
Author URI: https://example.com
Description: Custom WordPress theme for the GLP-1 Muscle Protection Protocol landing page. A single-page sales page designed for users of GLP-1 medications.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: glp1-muscle
Tags: one-page, custom-colors, landing-page
*/

/* ============================================
   BASE STYLES
   ============================================ */

body {
    margin: 0;
    padding: 0;
    background-color: #F5F2EB;
    color: #222222;
}

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

.flex-row {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.flex-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.text-left {
    text-align: left;
}

.w-50 {
    flex: 1;
    min-width: 300px;
}

.mr-2 {
    margin-right: 1rem;
}

.ml-2 {
    margin-left: 1rem;
}

.mt-2 {
    margin-top: 1rem;
}

.mt-4 {
    margin-top: 2rem;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mb-3 {
    margin-bottom: 1.5rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.p-4 {
    padding: 2rem;
}

/* ============================================
   COLOR UTILITIES
   ============================================ */

.bg-white {
    background-color: #FFFFFF;
}

.bg-soft-cream {
    background-color: #F5F2EB;
}

.bg-glp-green {
    background-color: #27AE60;
}

.text-glp-blue {
    color: #0070D9;
}

.text-glp-green {
    color: #27AE60;
}

.text-charcoal {
    color: #222222;
}

.text-white {
    color: #FFFFFF;
}

.text-gray {
    color: #666666;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

.font-poppins {
    font-family: 'Poppins', sans-serif;
}

.font-lato {
    font-family: 'Lato', sans-serif;
}

.font-bold {
    font-weight: bold;
}

.text-small {
    font-size: 0.8rem;
}

.text-large {
    font-size: 1.8rem;
}

/* ============================================
   COMPONENTS
   ============================================ */

.navbar {
    padding: 1rem 0;
    border-bottom: 1px solid #ddd;
}

.brand-logo {
    font-size: 1.5rem;
}

.card-shadow {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 1.5rem;
}

.btn-cta {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.2rem;
    transition: transform 0.2s, background-color 0.2s;
}

.btn-cta:hover {
    transform: scale(1.05);
    background-color: #1e8749;
}

.btn-giant {
    font-size: 1.4rem;
    padding: 1.5rem 2.5rem;
}

.problem-item,
.module-card,
.audience-card,
.contrast-card {
    flex: 1;
    min-width: 300px;
}

.border-gray {
    border: 1px dashed #ccc;
}

.border-glp-green {
    border: 2px solid #27AE60;
}

.border-glp-blue {
    border: 2px solid #0070D9;
}

.mockup-placeholder {
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.book-mockup-img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.15));
    transition: transform 0.3s ease;
}

.book-mockup-img:hover {
    transform: scale(1.03);
}

.hero-mockup {
    display: flex;
    align-items: center;
    justify-content: center;
}

ul {
    list-style: none;
    padding: 0;
}

ul.benefits-list li,
.protocol-features li,
.specificity-points li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.audience-card ul li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.5rem;
}

.audience-card ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #0070D9;
}