/* Landing Page Specific Styles */

:root {
    --landing-primary: var(--primary, #E6B4B4);
    --landing-secondary: var(--secondary, #D8C3A5);
    --landing-text: var(--dark, #5D5454);
    --landing-bg: var(--light, #FDF6F6);
    --landing-card-bg: #ffffff;
}

.landing-body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, sans-serif;
    line-height: 1.7;
    color: var(--landing-text);
    background-color: var(--landing-bg);
    margin: 0;
    padding: 0;
}

.landing-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.landing-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.landing-logo img {
    height: 50px;
}

.landing-nav {
    display: none; /* Hidden on mobile, shown on desktop */
}

.landing-nav a {
    margin: 0 15px;
    text-decoration: none;
    color: var(--landing-text);
    font-weight: 600;
    transition: color 0.3s ease;
}

.landing-nav a:hover {
    color: var(--landing-primary);
}

.right-nav {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.language-switcher-landing a {
    padding: 5px 10px;
    text-decoration: none;
    color: var(--landing-text);
    border-radius: 20px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.language-switcher-landing a.active,
.language-switcher-landing a:hover {
    background-color: var(--landing-primary);
    color: white;
}

.btn-landing {
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    color: white;
    background: var(--landing-primary);
    transition: all 0.3s ease;
    border: 1px solid var(--landing-primary);
    font-weight: 600;
}

.btn-landing:hover {
    background: white;
    color: var(--landing-primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.hero {
    text-align: center;
    padding: 80px 20px;
}

.hero h1 {
    font-size: 3.2rem;
    margin-bottom: 20px;
    color: var(--landing-text);
    font-weight: 700;
}

.hero .highlight {
    color: var(--landing-primary);
}

.hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 30px;
    color: #6c757d;
}

.section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    font-weight: 600;
}

.features-grid, .how-it-works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card, .step-card {
    background: var(--landing-card-bg);
    padding: 40px 30px;
    border-radius: var(--border-radius, 16px);
    box-shadow: var(--shadow, 0 10px 35px rgba(93, 84, 84, 0.1));
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.feature-card:hover, .step-card:hover {
    transform: translateY(-8px);
    border-color: var(--landing-primary);
}

.feature-card .icon, .step-card .icon {
    font-size: 3rem;
    color: var(--landing-primary);
    margin-bottom: 20px;
    display: inline-block;
}

.step-card .icon {
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    background-color: var(--landing-primary);
    color: white;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.step-image {
    display: block;
    width: 100%;
    max-width: 200px;
    margin: 20px auto;
    border-radius: var(--border-radius, 16px);
    box-shadow: var(--shadow, 0 10px 35px rgba(93, 84, 84, 0.1));
}

.feature-card h3, .step-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-pricing {
    margin: 15px 0;
    padding: 10px;
    background: linear-gradient(135deg, #fefbf0, #fdf6f0);
    border-left: 4px solid var(--landing-primary);
    border-radius: 8px;
}

.affiliate-section {
    background: linear-gradient(45deg, var(--landing-primary), var(--landing-secondary));
    color: white;
    padding: 60px 40px;
    border-radius: var(--border-radius, 16px);
    text-align: center;
}

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

.affiliate-section p {
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

.btn-affiliate {
    background: white;
    color: var(--landing-primary);
    border: 1px solid white;
}

.btn-affiliate:hover {
    background: transparent;
    color: white;
}

.landing-footer {
    text-align: center;
    padding: 40px 20px;
    margin-top: 40px;
    border-top: 1px solid rgba(93, 84, 84, 0.1);
    background-color: var(--landing-bg);
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, sans-serif;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 25px;
}

.footer-links a {
    color: var(--landing-text);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    padding: 8px 16px;
    border-radius: 16px;
    position: relative;
}

.footer-links a:hover {
    color: var(--landing-primary);
    background-color: rgba(230, 180, 180, 0.1);
    transform: translateY(-2px);
}

.footer-links a:before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--landing-primary);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    transform: translateX(-50%);
}

.footer-links a:hover:before {
    width: 100%;
}

.landing-footer p {
    color: var(--landing-text);
    opacity: 0.7;
    font-weight: 400;
}

@media (min-width: 768px) {
    .landing-nav {
        display: block;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .landing-footer {
        padding: 30px 15px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 20px;
    }
    
    .footer-links a {
        padding: 10px 20px;
        font-size: 1rem;
    }
}