/* Main Styles for Royalhands Cooperatives */

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

body {
    font-family: 'Inter', sans-serif;
    background: #fff;
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #2D5F3E 0%, #1E3A2F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-link {
    font-weight: 500;
    color: #2D3748 !important;
    transition: all 0.3s;
    margin: 0 0.5rem;
}

.nav-link:hover {
    color: #2D5F3E !important;
}

.btn-login {
    background: transparent;
    border: 2px solid #2D5F3E;
    color: #2D5F3E;
    padding: 8px 24px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-login:hover {
    background: #2D5F3E;
    color: white;
}

.btn-join {
    background: linear-gradient(135deg, #2D5F3E 0%, #1E3A2F 100%);
    color: white;
    padding: 8px 28px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-join:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(45, 95, 62, 0.2);
    color: white;
}

/* Hero Section */
.hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #F8FBF9 0%, #F0F5F2 100%);
    position: relative;
    overflow: hidden;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-title span {
    background: linear-gradient(135deg, #2D5F3E 0%, #1E3A2F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #4A5568;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.btn-member {
    background: linear-gradient(135deg, #2D5F3E 0%, #1E3A2F 100%);
    color: white;
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    margin-right: 1rem;
}

.btn-member:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(45, 95, 62, 0.3);
    color: white;
}

.btn-learn {
    background: transparent;
    border: 2px solid #2D5F3E;
    color: #2D5F3E;
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

.btn-learn:hover {
    background: #2D5F3E;
    color: white;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item h3 {
    font-size: 2rem;
    font-weight: 800;
    color: #2D5F3E;
    margin-bottom: 0;
}

.stat-item p {
    color: #718096;
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #1A202C;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid #E2E8F0;
    margin-bottom: 30px;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: transparent;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(45, 95, 62, 0.1) 0%, rgba(30, 58, 47, 0.1) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.feature-icon i {
    font-size: 2.5rem;
    color: #2D5F3E;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1A202C;
}

.feature-card p {
    color: #718096;
    line-height: 1.6;
}

/* How It Works */
.how-it-works {
    background: #F8FBF9;
    padding: 80px 0;
}

.step-card {
    text-align: center;
    padding: 30px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2D5F3E 0%, #1E3A2F 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

/* Plans Section */
.plans {
    padding: 80px 0;
    background: white;
}

.plan-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    border: 2px solid #E2E8F0;
    transition: all 0.3s;
    position: relative;
    margin-bottom: 30px;
}

.plan-card.featured {
    border-color: #2D5F3E;
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #2D5F3E;
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.plan-price {
    font-size: 3rem;
    font-weight: 800;
    color: #2D5F3E;
    margin: 20px 0;
}

.plan-price span {
    font-size: 1rem;
    font-weight: 400;
    color: #718096;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.plan-features li {
    padding: 8px 0;
    color: #4A5568;
}

.plan-features i {
    color: #2D5F3E;
    margin-right: 8px;
}

/* Footer */
footer {
    background: #1A202C;
    color: white;
    padding: 60px 0 20px;
    margin-top: 50px;
}

.footer-brand {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    display: inline-block;
    text-decoration: none;
}

.footer-brand:hover {
    color: #2D5F3E;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #A0AEC0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.social-links a {
    display: inline-block;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 36px;
    color: white;
    margin-right: 10px;
    transition: all 0.3s;
}

.social-links a:hover {
    background: #2D5F3E;
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .plan-card.featured {
        transform: scale(1);
    }
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .feature-card {
        padding: 30px 20px;
    }
    footer {
        text-align: center;
    }
    .social-links {
        text-align: center;
    }
}