/* Positive 4 You - Main Stylesheet */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Main Colors */
    --primary-teal: #218589;
    --navy-blue: #1f4172;
    --dark-blue: #00008b;
    --white: #ffffff;
    --bright-yellow: #ffef00;
    
    /* Secondary Colors */
    --bright-blue: #007bff;
    --slate-blue: #2e697b;
    --green: #009970;
    --medium-blue: #27518e;
    --darker-yellow: #d7d700;
    
    /* Purple Accent Colors */
    --purple-light: #667eea;
    --purple-dark: #764ba2;
    
    /* Text Colors */
    --text-black: #000000;
    --text-dark-gray: #333333;
    --text-medium-gray: #666666;
    --text-secondary: #7a7a7a;
    
    /* Background/Border Colors */
    --bg-light-gray: #f5f5f5;
    --border-gray: #ebebeb;
    --form-bg: #f7f8f9;
    --hover-white: #fefefe;
}

body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    line-height: 1.6;
    color: var(--text-medium-gray);
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: var(--slate-blue);
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 10px;
    z-index: 1001;
}

.logo img {
    height: 50px;
    width: auto;
}

.logo-text {
    font-size: 28px;
    font-weight: bold;
    color: var(--white);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 16px;
}

.nav-links a:hover {
    color: var(--bright-yellow);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--slate-blue) 100%);
    padding: 60px 0;
    color: var(--white);
}

.hero-with-image {
    padding: 80px 0;
}

.hero-header {
    text-align: center;
    margin-bottom: 50px;
}

.hero-header h1 {
    font-size: 56px;
    margin-bottom: 0;
    font-weight: bold;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text {
    text-align: left;
}

.hero-image {
    position: relative;
    height: 350px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero h1 {
    font-size: 56px;
    margin-bottom: 20px;
    font-weight: bold;
}

.hero p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 16px 40px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    border-radius: 4px;
    font-weight: bold;
}

.btn-primary {
    background: var(--bright-yellow);
    color: var(--text-black);
}

.btn-primary:hover {
    background: var(--darker-yellow);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-teal);
}

/* Value Props */
.value-props {
    padding: 80px 0;
    background: var(--white);
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    text-align: center;
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--navy-blue);
    font-weight: bold;
}

.value-item p {
    color: var(--text-medium-gray);
    line-height: 1.8;
}

/* Categories Section */
.categories {
    padding: 80px 0;
    background: var(--bg-light-gray);
}

.section-title {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: var(--text-dark-gray);
    font-weight: bold;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.category-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    border: 1px solid var(--border-gray);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(33,133,137,0.2);
    border-color: var(--primary-teal);
}

.category-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.category-card h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: var(--navy-blue);
    font-weight: bold;
}

.category-card p {
    color: var(--text-medium-gray);
    margin-bottom: 20px;
    line-height: 1.7;
}

.category-card ul {
    list-style: none;
    margin-bottom: 25px;
    color: var(--text-secondary);
    font-size: 14px;
}

.category-card ul li {
    margin-bottom: 8px;
}

.category-card a {
    color: var(--primary-teal);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.category-card a:hover {
    color: var(--green);
}

/* Spiritual Growth Card - Purple Theme */
.category-card.spiritual {
    background: linear-gradient(135deg, var(--purple-light) 0%, var(--purple-dark) 100%);
    color: var(--white);
    border: none;
}

.category-card.spiritual h3,
.category-card.spiritual p,
.category-card.spiritual ul,
.category-card.spiritual ul li {
    color: var(--white);
}

.category-card.spiritual a {
    color: var(--bright-yellow);
}

.category-card.spiritual a:hover {
    color: var(--white);
}

.category-card.spiritual:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(102, 126, 234, 0.4);
}

/* Mindful Living Card - Teal Theme */
.category-card.mindful {
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--slate-blue) 100%);
    color: var(--white);
    border: none;
}

.category-card.mindful h3,
.category-card.mindful p,
.category-card.mindful ul,
.category-card.mindful ul li {
    color: var(--white);
}

.category-card.mindful a {
    color: var(--bright-yellow);
}

.category-card.mindful a:hover {
    color: var(--white);
}

.category-card.mindful:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(33, 133, 137, 0.4);
}

/* Wellness Essentials Card - Green Theme */
.category-card.wellness {
    background: linear-gradient(135deg, var(--green) 0%, #007055 100%);
    color: var(--white);
    border: none;
}

.category-card.wellness h3,
.category-card.wellness p,
.category-card.wellness ul,
.category-card.wellness ul li {
    color: var(--white);
}

.category-card.wellness a {
    color: var(--bright-yellow);
}

.category-card.wellness a:hover {
    color: var(--white);
}

.category-card.wellness:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 153, 112, 0.4);
}

/* Clothing Section */
.clothing-section {
    background: var(--navy-blue);
    padding: 80px 0;
    color: var(--white);
}

.clothing-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.clothing-text h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: bold;
}

.clothing-text h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--bright-yellow);
}

.clothing-text p {
    margin-bottom: 25px;
    line-height: 1.8;
    font-size: 18px;
}

.clothing-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

.clothing-features li {
    list-style: none;
    padding-left: 25px;
    position: relative;
}

.clothing-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    font-weight: bold;
    color: var(--bright-yellow);
}

.clothing-image {
    background: rgba(255,255,255,0.1);
    height: 320px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    border: 2px solid rgba(255,255,255,0.2);
}

/* Digital Products */
.digital-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--purple-light) 0%, var(--purple-dark) 100%);
    color: var(--white);
}

.digital-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.digital-image {
    background: rgba(255, 255, 255, 0.15);
    height: 320px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.digital-text h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--white);
    font-weight: bold;
}

.digital-text p {
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.8;
    opacity: 0.95;
}

.digital-products-list {
    list-style: none;
    margin-bottom: 30px;
}

.digital-products-list li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
}

.digital-products-list li:before {
    content: "✓";
    color: var(--bright-yellow);
    font-weight: bold;
    margin-right: 10px;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: var(--bg-light-gray);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    border-left: 4px solid var(--primary-teal);
}

.stars {
    color: var(--bright-yellow);
    margin-bottom: 15px;
    font-size: 20px;
}

.testimonial-text {
    color: var(--text-medium-gray);
    margin-bottom: 15px;
    line-height: 1.7;
    font-style: italic;
}

.testimonial-author {
    color: var(--navy-blue);
    font-weight: bold;
}

/* Newsletter */
.newsletter {
    padding: 80px 0;
    background: var(--primary-teal);
    color: var(--white);
    text-align: center;
}

.newsletter h2 {
    font-size: 38px;
    margin-bottom: 20px;
    font-weight: bold;
}

.newsletter-benefits {
    list-style: none;
    margin-bottom: 30px;
}

.newsletter-benefits li {
    margin-bottom: 10px;
}

.newsletter-benefits li:before {
    content: "✓";
    color: var(--bright-yellow);
    font-weight: bold;
    margin-right: 10px;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 16px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
}

.newsletter-form button {
    background: var(--bright-yellow);
    color: var(--text-black);
    border: none;
    padding: 16px 30px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: background 0.3s;
}

.newsletter-form button:hover {
    background: var(--darker-yellow);
}

/* Footer */
footer {
    background: var(--navy-blue);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-logo {
    text-align: center;
    margin-bottom: 40px;
}

.footer-logo img {
    height: 150px;
    width: auto;
    margin-bottom: 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    margin-bottom: 20px;
    color: var(--bright-yellow);
    font-weight: bold;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
    opacity: 0.9;
}

.footer-section a:hover {
    color: var(--bright-yellow);
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.2);
    opacity: 0.8;
}

.footer-bottom a {
    color: var(--white);
    text-decoration: none;
}

.footer-bottom a:hover {
    color: var(--bright-yellow);
}

/* Responsive */
@media (max-width: 768px) {
    .logo img {
        height: 40px;
    }

    .logo-text {
        font-size: 20px;
    }

    /* Show hamburger menu on mobile */
    .mobile-menu-toggle {
        display: flex;
    }

    /* Hide nav links by default on mobile */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background: var(--primary-teal);
        flex-direction: column;
        padding: 80px 30px 30px;
        gap: 20px;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0,0,0,0.3);
    }

    /* Show nav links when active */
    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 15px 0;
        font-size: 18px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 18px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Image first on mobile, then text */
    .hero-image {
        height: 300px;
        order: -1;
    }

    .hero-text {
        text-align: center;
        order: 1;
    }

    .cta-buttons {
        justify-content: center;
    }

    .clothing-content,
    .digital-content {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .section-title {
        font-size: 32px;
    }
}

/* Positive 4 Brand Badge */
.brand-badge {
    display: inline-block;
    background: var(--bright-yellow);
    color: var(--text-black);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 20px;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
}

.modal-content {
  background: #fff;
  margin: 5% auto;
  padding: 20px;
  border-radius: 8px;
  width: 90%;
  max-width: 1000px;
  position: relative;
}

.close {
  position: absolute;
  top: 10px; right: 15px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

/* Target only the scrollable modal content */
.modal-content {
  background: #fff;
  margin: 5% auto;
  padding: 20px;
  border-radius: 8px;
  width: 90%;
  max-width: 1000px;
  position: relative;

  max-height: 90vh;     /* keep modal within viewport */
  overflow-y: auto;     /* scroll inside modal */
}

/* Custom scrollbar styles */
.modal-content::-webkit-scrollbar {
  width: 10px;              /* scrollbar width */
}

.modal-content::-webkit-scrollbar-track {
  background: #f0f0f0;      /* track color */
  border-radius: 8px;
}

.modal-content::-webkit-scrollbar-thumb {
  background-color: teal;   /* your brand color */
  border-radius: 8px;
  border: 2px solid #f0f0f0; /* adds spacing effect */
}

.modal-content::-webkit-scrollbar-thumb:hover {
  background-color: #006666; /* darker teal on hover */
}

.modal-content {
  scrollbar-width: thin;                /* slim scrollbar */
  scrollbar-color: teal #f0f0f0;        /* thumb color + track color */
}