/* public/css/landing-page.css */

:root {
    --primary-color: #4a90e2;
    --secondary-color: #50e3c2;
    --text-color: #333;
    --background-color: #f9f9f9;
    --white-color: #fff;
    --footer-background: #333;
    --footer-text-color: #ccc;
}

/* General Body Styles */
body.landing-page {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    margin: 0;
    padding: 0;
}

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

/* Header */
.landing-header {
    background: var(--white-color);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.landing-header .nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.landing-header .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    text-decoration: none;
}

.landing-header .nav-links a {
    margin-left: 20px;
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
}

.landing-header .nav-links .btn {
    margin-left: 20px;
}

/* Main Content */
.landing-main {
    padding: 4rem 0;
}

/* Hero Section */
.hero-section {
    text-align: center;
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white-color);
}

.hero-section h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Features Section */
.features-section {
    padding: 4rem 0;
    background: var(--white-color);
}

.features-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    border: 1px solid #eee;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.feature-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

/* Pricing Section */
.pricing-section {
    padding: 4rem 0;
}

.pricing-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.pricing-card {
    background: var(--white-color);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    max-width: 400px;
    margin: 0 auto;
    text-align: center;
}

.pricing-card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.pricing-card .price {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.pricing-card .price span {
    font-size: 1rem;
    font-weight: normal;
    color: #777;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.pricing-card ul li {
    margin-bottom: 1rem;
}

/* Footer */
.landing-footer {
    background: var(--footer-background);
    color: var(--footer-text-color);
    text-align: center;
    padding: 2rem 0;
}
