/*
Theme Name: Life With Corli
Theme URI: https://lifewithcorli.com
Author: Life With Corli
Author URI: https://lifewithcorli.com
Description: Custom theme for Life With Corli - Wellness and Network Security solutions. A clean, modern theme with full control over styling.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: lifewithcorli
*/

/* ============================================
   RESET & 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;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

/* ============================================
   HOMEPAGE STYLES
   ============================================ */

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 20px;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 50px;
    opacity: 0.9;
}

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

.cta-btn {
    padding: 18px 45px;
    font-size: 1.1rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cta-btn.wellness {
    background: linear-gradient(135deg, #2fbefcff 0%, #10b981 100%);
    color: white;
}

.cta-btn.wellness:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(47, 190, 252, 0.4);
}

.cta-btn.netsec {
    background: linear-gradient(135deg, #7c3aed 0%, #8b5cf6 100%);
    color: white;
}

.cta-btn.netsec:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.4);
}

/* Services Section */
.services {
    padding: 100px 20px;
    background: #ffffff;
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #1a1a2e;
}

.services .subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 60px;
}

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

.service-card {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 40px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.service-card.wellness {
    background: linear-gradient(135deg, #e0f7ff 0%, #bae6fd 100%);
}

.service-card.netsec {
    background: linear-gradient(135deg, #f3e5f5 0%, #e1bee7 100%);
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-card p {
    color: #555;
    margin-bottom: 25px;
}

.service-card ul {
    list-style: none;
    margin-bottom: 30px;
}

.service-card ul li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-card .btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-card.wellness .btn {
    background: #2fbefcff;
    color: white;
}

.service-card.netsec .btn {
    background: #7c3aed;
    color: white;
}

.service-card .btn:hover {
    transform: translateX(5px);
}

/* About Section */
.about {
    padding: 80px 20px;
    background: #1a1a2e;
    color: white;
    text-align: center;
}

.about h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.about p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    opacity: 0.9;
}

/* ============================================
   WELLNESS PAGE STYLES
   ============================================ */

/* Wellness Hero */
.wellness-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: white;
    padding: 100px 20px;
    text-align: center;
}

.wellness-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.wellness-hero p {
    font-size: 1.4rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.wellness-hero .cta-btn {
    display: inline-block;
    padding: 18px 50px;
    background: #2fbefcff;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.wellness-hero .cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Section Styles */
section {
    padding: 80px 20px;
}

section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 20px;
}

section .subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 50px;
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #2fbefcff;
}

.feature-card ul {
    list-style: none;
}

.feature-card ul li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

.feature-card ul li:last-child {
    border-bottom: none;
}

/* Nutrition Section */
.nutrition {
    background: linear-gradient(135deg, #e0f7ff 0%, #bae6fd 100%);
}

/* Workout Section */
.workout {
    background: white;
}

/* Mental Health Section */
.mental-health {
    background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 100%);
}

.mental-health .warning {
    font-style: italic;
    font-size: 0.9rem;
    color: #666;
    text-align: center;
    margin-top: 30px;
    padding: 15px;
    background: rgba(255,255,255,0.5);
    border-radius: 10px;
}

/* Challenge Section */
.challenge {
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
    color: white;
}

.challenge h2, 
.challenge .subtitle {
    color: white;
}

.challenge .feature-card {
    text-align: center;
}

.challenge .feature-card .icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.challenge .feature-card h3 {
    color: #333;
}

.challenge .feature-card p {
    color: #333;
}

/* Weight Section */
.weight-tracking {
    background: white;
}

.weight-tracking .feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    list-style: none;
}

.weight-tracking .feature-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
}

/* Colored weight tracking items */
.weight-tracking .feature-list li.cyan {
    background: linear-gradient(135deg, #e0f7ff 0%, #bae6fd 100%);
    border-left: 4px solid #2fbefcff;
}

.weight-tracking .feature-list li.amber {
    background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 100%);
    border-left: 4px solid #f59e0b;
}

.weight-tracking .feature-list li.green {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border-left: 4px solid #10b981;
}

.weight-tracking .feature-list li.purple {
    background: linear-gradient(135deg, #f3e5f5 0%, #e1bee7 100%);
    border-left: 4px solid #8b5cf6;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    text-align: center;
    padding: 100px 20px;
}

.cta-section h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-section .cta-btn {
    display: inline-block;
    padding: 20px 60px;
    background: #2fbefcff;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    margin: 10px;
}

.cta-section .cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

/* ============================================
   NETSEC PAGE STYLES
   ============================================ */
:root {
    --netsec-primary: #2fbefc;
    --netsec-primary-dark: #1a9bd7;
    --netsec-dark: #0a1929;
    --netsec-muted: #64748b;
}

/* NetSec Top Nav */
.netsec-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 25, 41, 0.95);
    backdrop-filter: blur(8px);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.netsec-nav .back-link {
    color: #2fbefc;
    font-weight: 500;
}

.netsec-nav .logo-text {
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
}

/* NetSec Hero */
.netsec-hero {
    padding: 10rem 2rem 6rem;
    background: linear-gradient(135deg, #0a1929 0%, #0d2137 50%, #102a43 100%);
    color: white;
    text-align: center;
}

.netsec-hero .badge {
    display: inline-block;
    background: rgba(47, 190, 252, 0.15);
    color: #2fbefc;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(47, 190, 252, 0.3);
}

.netsec-hero h1 {
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.netsec-hero p {
    font-size: 1.15rem;
    color: #cfd8de;
    max-width: 750px;
    margin: 0 auto;
}

/* NetSec Sections */
.netsec-section {
    padding: 5rem 2rem;
    background: #0a1929;
    color: white;
}

.netsec-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: white;
    text-align: left;
}

.netsec-section p {
    color: #cfd8de;
    margin-bottom: 2rem;
}

/* Glass Card */
.glass {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 3rem;
}

/* NetSec Grid */
.netsec-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

/* NetSec Card */
.netsec-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.netsec-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(47, 190, 252, 0.1);
    border-color: rgba(47, 190, 252, 0.2);
}

.netsec-card h3 {
    color: #2fbefc;
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
}

.netsec-card p {
    font-size: 0.95rem;
    color: #cfd8de;
    margin: 0;
}

/* NetSec Compliance */
.netsec-compliance {
    background: linear-gradient(180deg, #0a1929 0%, #081321 100%);
    padding: 5rem 2rem;
    color: #cfd8de;
}

/* NetSec Contact Form */
.netsec-form input,
.netsec-form textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
}

.netsec-form input:focus,
.netsec-form textarea:focus {
    outline: none;
    border-color: #2fbefc;
    box-shadow: 0 0 0 3px rgba(47, 190, 252, 0.1);
}

.netsec-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #0a1929;
}

.netsec-form button {
    background: #2fbefc;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.netsec-form button:hover {
    background: #1a9bd7;
    transform: translateY(-2px);
}

/* ============================================
   PRIVACY POLICY STYLES
   ============================================ */
.privacy-header {
    background: linear-gradient(135deg, #2fbefc 0%, #1a9bd7 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.privacy-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.privacy-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.privacy-content {
    background: white;
    padding: 50px 20px;
}

.policy-section {
    margin-bottom: 40px;
}

.policy-section h2 {
    font-size: 1.5rem;
    color: #2fbefc;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e0f7fa;
    text-align: left;
}

.policy-section h3 {
    font-size: 1.2rem;
    color: #333;
    margin-top: 25px;
    margin-bottom: 15px;
}

.policy-section p {
    margin-bottom: 15px;
    color: #555;
}

.policy-section ul {
    margin-left: 20px;
    margin-bottom: 15px;
    list-style: disc;
}

.policy-section li {
    margin-bottom: 10px;
}

/* Data Table */
.data-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.data-table th,
.data-table td {
    border: 1px solid #ddd;
    padding: 15px;
    text-align: left;
}

.data-table th {
    background: #2fbefc;
    color: white;
}

.data-table tr:nth-child(even) {
    background: #f8f9fa;
}

/* Highlight Box */
.highlight-box {
    background: #e8f7ff;
    border-left: 4px solid #2fbefc;
    padding: 20px;
    margin: 20px 0;
    border-radius: 0 8px 8px 0;
}

.highlight-box.warning {
    background: #fff3e0;
    border-left-color: #ff9800;
}

/* ============================================
   FOOTER STYLES
   ============================================ */
.site-footer {
    background: #1a1a2e;
    color: white;
    padding: 30px 20px;
    text-align: center;
}

.site-footer a {
    color: #2fbefcff;
    text-decoration: none;
}

.site-footer p {
    margin-top: 15px;
    color: #888;
    font-size: 0.9rem;
}

/* Dark Footer Variant */
.site-footer.dark {
    background: #0f0f1a;
}

/* NetSec Footer */
.netsec-footer {
    background: #050e13;
    color: #cfd8de;
    padding: 4rem 2rem;
}

.netsec-footer strong {
    color: #2fbefc;
}

.netsec-footer a {
    color: #2fbefc;
    text-decoration: none;
}

.netsec-footer a:hover {
    text-decoration: underline;
}

/* ============================================
   MODAL STYLES
   ============================================ */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: white;
    padding: 40px 60px;
    border-radius: 20px;
    text-align: center;
    max-width: 400px;
    margin: 20px;
}

.modal-content h2 {
    color: #2fbefc;
    margin-bottom: 15px;
}

.modal-content p {
    color: #333;
    margin-bottom: 25px;
}

.modal-content button {
    background: #2fbefc;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1rem;
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .service-cards {
        grid-template-columns: 1fr;
    }

    .wellness-hero h1 {
        font-size: 2.2rem;
    }

    .wellness-hero p {
        font-size: 1.1rem;
    }

    section h2 {
        font-size: 1.8rem;
    }

    .netsec-hero {
        padding: 8rem 1.5rem 5rem;
    }

    .netsec-hero h1 {
        font-size: 2rem;
    }

    .netsec-section {
        padding: 4rem 1.5rem;
    }

    .glass {
        padding: 2rem;
    }

    .netsec-section h2 {
        font-size: 1.75rem;
    }

    .privacy-header h1 {
        font-size: 1.8rem;
    }

    .data-table {
        font-size: 0.9rem;
    }

    .data-table th,
    .data-table td {
        padding: 10px;
    }
}
