/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2D3436;
    background: #FFF5E6;
}

/* Navigation */
nav {
    background: white;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

nav .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav .logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

nav .logo img {
    width: 50px;
    height: 50px;
    border-radius: 12px;
}

nav .logo span {
    font-size: 24px;
    font-weight: bold;
    color: #FF6B6B;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

nav ul li a {
    text-decoration: none;
    color: #2D3436;
    font-weight: 500;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #FF6B6B;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, #FFF5E6 0%, #FFE5B4 100%);
}

.hero h1 {
    font-size: 56px;
    color: #2D3436;
    margin-bottom: 20px;
    font-weight: 800;
}

.hero .subtitle {
    font-size: 24px;
    color: #636E72;
    margin-bottom: 40px;
}

.hero .cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary {
    background: #FF6B6B;
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.5);
}

.btn-secondary {
    background: white;
    color: #FF6B6B;
    border: 2px solid #FF6B6B;
}

.btn-secondary:hover {
    background: #FF6B6B;
    color: white;
}

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

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

.features h2 {
    text-align: center;
    font-size: 42px;
    color: #2D3436;
    margin-bottom: 60px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    text-align: center;
    padding: 30px;
    background: #FFF5E6;
    border-radius: 20px;
    transition: transform 0.3s;
}

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

.feature-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 24px;
    color: #2D3436;
    margin-bottom: 15px;
}

.feature-card p {
    color: #636E72;
    font-size: 16px;
}

/* Screenshots Section */
.screenshots {
    padding: 80px 20px;
    background: linear-gradient(135deg, #FFF5E6 0%, #FFE5B4 100%);
}

.screenshots h2 {
    text-align: center;
    font-size: 42px;
    color: #2D3436;
    margin-bottom: 60px;
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.screenshot-card {
    background: white;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.screenshot-card img {
    width: 100%;
    height: auto;
    border-radius: 15px;
}

/* CTA Section */
.cta-section {
    padding: 80px 20px;
    background: #FF6B6B;
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* Footer */
footer {
    background: #2D3436;
    color: white;
    padding: 40px 20px;
    text-align: center;
}

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

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

footer .footer-links a:hover {
    opacity: 0.7;
}

/* Content Pages */
.content-page {
    padding: 80px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.content-page h1 {
    font-size: 48px;
    color: #2D3436;
    margin-bottom: 30px;
}

.content-page h2 {
    font-size: 32px;
    color: #FF6B6B;
    margin-top: 40px;
    margin-bottom: 20px;
}

.content-page h3 {
    font-size: 24px;
    color: #4ECDC4;
    margin-top: 30px;
    margin-bottom: 15px;
}

.content-page p {
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 1.8;
}

.content-page ul {
    margin: 20px 0;
    padding-left: 30px;
}

.content-page ul li {
    margin-bottom: 10px;
    font-size: 18px;
}

.contact-box {
    background: #FFF5E6;
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
}

.contact-box a {
    color: #4ECDC4;
    font-weight: bold;
    text-decoration: none;
}

.contact-box a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 36px;
    }

    .hero .subtitle {
        font-size: 18px;
    }

    nav ul {
        gap: 15px;
    }

    nav ul li a {
        font-size: 14px;
    }

    .features h2,
    .screenshots h2 {
        font-size: 32px;
    }

    .features-grid,
    .screenshots-grid {
        grid-template-columns: 1fr;
    }
}
