/* Global Styles */
:root {
    --primary-color: #2e9207;
    --secondary-color: #1a6105;
    --accent-color: #64b832;
    --dark-color: #333;
    --light-color: #f8f9fa;
    --gray-color: #6c757d;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--light-color);
}

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

h1, h2, h3 {
    margin-bottom: 0.75rem;
}

a {
    text-decoration: none;
    color: var(--primary-color);
}

section {
    padding: 60px 0;
}

/* Header */
header {
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    color: white;
    text-align: center;
    padding: 80px 0;
}

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

.hero h2 {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 20px;
}

.tagline {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.app-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.app-button {
    display: flex;
    align-items: center;
    background-color: black;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    transition: transform 0.2s;
}

.app-button:hover {
    transform: translateY(-2px);
}

.app-button i {
    font-size: 2rem;
    margin-right: 10px;
}

.app-button span {
    text-align: left;
    font-size: 0.9rem;
}

.app-button strong {
    font-size: 1.2rem;
}

/* Features */
.features {
    background-color: white;
    text-align: center;
}

.features h2 {
    margin-bottom: 40px;
    font-size: 2.2rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-item {
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.feature-item h3 {
    font-size: 1.3rem;
}

/* Screenshots */
.screenshots {
    background-color: var(--light-color);
    text-align: center;
}

.screenshots h2 {
    margin-bottom: 40px;
    font-size: 2.2rem;
}

.screenshot-gallery {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 20px;
    padding: 20px 0;
    justify-content: center;
}

.screenshot {
    flex: 0 0 auto;
    width: 220px;
    margin-bottom: 20px;
}

.screenshot img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 5px solid white;
}

.screenshot p {
    margin-top: 10px;
    font-weight: 500;
}

/* Description */
.description {
    background-color: white;
    text-align: center;
}

.description h2 {
    margin-bottom: 30px;
    font-size: 2.2rem;
}

.description p {
    max-width: 800px;
    margin: 0 auto 20px;
    font-size: 1.1rem;
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer-links {
    margin-bottom: 20px;
}

.footer-links a {
    color: white;
    margin: 0 15px;
    font-weight: 500;
}

.footer-links a:hover {
    text-decoration: underline;
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    header {
        padding: 60px 0;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero h2 {
        font-size: 1.8rem;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .screenshot-gallery {
        justify-content: flex-start;
    }
    
    .screenshot {
        width: 180px;
    }
} 