/* Global Styles */
:root {
    --primary-bg: #1C1D1F;
    --secondary-bg: #3B3C3E;
    --accent-green: #9FA582;
    --accent-yellow: #A9F00F;
    --text-light: #E1E5CD;
    --text-muted: #C2C4B5;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Bitter', serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
.fw-bold {
    font-family: 'Outfit', sans-serif;
}

/* Navigation */
.navbar {
    background-color: var(--primary-bg) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    padding: 1rem 0;
}

.navbar-brand {
    font-size: 1.8rem;
    color: var(--text-light) !important;
    font-weight: 800;
}

.navbar-logo {
    height: 40px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s;
}

.navbar-brand:hover .navbar-logo {
    transform: scale(1.1);
}

.nav-link {
    color: var(--text-muted) !important;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--accent-yellow) !important;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary-bg) 0%, #2A2C20 100%);
    background-image: url('../images/image-1-1.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(28, 29, 31, 0.8);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-logo {
    max-width: 300px;
    margin: 0 auto;
    display: block;
}

.logo-image {
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
}

.social-links .btn {
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s;
}

.social-links .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(169, 240, 15, 0.4);
}

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

.bg-dark {
    background-color: var(--primary-bg) !important;
}

.bg-secondary {
    background-color: var(--secondary-bg) !important;
}

.text-light {
    color: var(--text-light) !important;
}

.text-muted {
    color: var(--text-muted) !important;
}

.text-light-emphasis {
    color: rgba(225, 229, 205, 0.9) !important;
}

.text-success,
.btn-success {
    background-color: var(--accent-green) !important;
    border-color: var(--accent-green) !important;
    color: white !important;
}

.text-success {
    background-color: transparent !important;
    color: var(--accent-yellow) !important;
}

/* Cards */
.wellness-card,
.community-card,
.join-step {
    transition: transform 0.3s, box-shadow 0.3s;
    border: none;
    border-radius: 15px;
    overflow: hidden;
}

.wellness-card:hover,
.community-card:hover,
.join-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(169, 240, 15, 0.3);
}

.wellness-icon,
.community-icon,
.step-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Activity Boxes */
.activity-box {
    transition: all 0.3s;
}

.activity-box:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(169, 240, 15, 0.2);
}

.activity-box ul li {
    padding: 5px 0;
    color: var(--text-muted);
}

.activity-box ul li::before {
    content: "• ";
    color: var(--accent-green);
    font-weight: bold;
    margin-right: 5px;
}

/* Testimonials */
.testimonial-box,
.testimonial-card {
    border-left: 4px solid var(--accent-yellow);
}

.testimonial-box {
    background-color: rgba(169, 240, 15, 0.1) !important;
}

.testimonial-card {
    background-color: var(--secondary-bg) !important;
}

/* Stats */
.stat-box {
    padding: 30px 15px;
    transition: transform 0.3s;
}

.stat-box:hover {
    transform: translateY(-5px);
}

.stat-box h3 {
    color: var(--accent-yellow);
}

/* Benefits Section */
.benefits-section ul li {
    font-size: 1.1rem;
    padding: 10px 0;
}

.benefits-section .fa-check-circle {
    font-size: 1.3rem;
}

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

.rounded {
    border-radius: 15px !important;
}

.shadow {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
}

/* Buttons */
.btn {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    border-radius: 50px;
    padding: 12px 35px;
    transition: all 0.3s;
}

.btn-success {
    background-color: var(--accent-green) !important;
    border-color: var(--accent-green) !important;
}

.btn-success:hover {
    background-color: var(--accent-yellow) !important;
    border-color: var(--accent-yellow) !important;
    color: var(--primary-bg) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(169, 240, 15, 0.4);
}

.btn-outline-light:hover {
    background-color: var(--accent-yellow) !important;
    border-color: var(--accent-yellow) !important;
    color: var(--primary-bg) !important;
}

/* Alert */
.alert-success {
    background-color: rgba(159, 165, 130, 0.2) !important;
    border-color: var(--accent-green) !important;
    color: var(--primary-bg);
}

/* Footer */
footer {
    background-color: var(--primary-bg) !important;
    border-top: 3px solid var(--accent-green);
}

footer a {
    transition: color 0.3s;
}

footer a:hover {
    color: var(--accent-yellow) !important;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
    }

    .display-2 {
        font-size: 3rem;
    }

    .display-3 {
        font-size: 2.5rem;
    }

    .display-4 {
        font-size: 2rem;
    }

    .display-5 {
        font-size: 1.75rem;
    }

    section {
        padding: 50px 0;
    }

    .hero-logo {
        max-width: 200px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Card Backgrounds */
.card.bg-secondary {
    background-color: var(--secondary-bg) !important;
}

.card.bg-light {
    background-color: #f8f9fa !important;
}

/* List Styles */
.list-unstyled li {
    margin-bottom: 0.5rem;
}

/* Spacing Utilities */
.mb-5 {
    margin-bottom: 3rem !important;
}

.py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

/* Text Alignment */
.text-end {
    text-align: right;
}

/* Background Light */
.bg-light {
    background-color: #f8f9fa !important;
}

/* Icon Colors */
.fa-heart,
.fa-shield-alt,
.fa-hands-helping,
.fa-user-plus,
.fa-calendar-alt,
.fa-users {
    color: var(--accent-green);
}

/* Highlight Effect */
.bg-success.rounded {
    background-color: rgba(159, 165, 130, 0.2) !important;
}