/* General Styles */
body {
    font-family: 'Lato', sans-serif;
    margin: 0;
    background-color: #121212;
    color: #fff;
}

a {
    color: #BB86FC;
    text-decoration: none;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 100px 20px;
}

.hero-content h1 {
    font-family: 'Lora', serif;
    font-size: 3em;
    margin-bottom: 20px;
}

.cta-button {
    background-color: #BB86FC;
    color: #121212;
    padding: 15px 30px;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #3700B3;
    color: #fff;
}

/* Features Section */
.features {
    padding: 80px 20px;
    text-align: center;
}

.features h2 {
    font-family: 'Lora', serif;
    font-size: 2.5em;
    margin-bottom: 40px;
}

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

.feature-item h3 {
    font-family: 'Lora', serif;
    font-size: 1.5em;
    margin-bottom: 10px;
}

/* Screenshots Section */
.screenshots {
    padding: 80px 20px;
    background-color: #1F1F1F;
    text-align: center;
}

.screenshots h2 {
    font-family: 'Lora', serif;
    font-size: 2.5em;
    margin-bottom: 40px;
}

.screenshot-gallery {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.screenshot-gallery img {
    max-width: 300px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Download Section */
.download {
    padding: 80px 20px;
    text-align: center;
}

.download h2 {
    font-family: 'Lora', serif;
    font-size: 2.5em;
    margin-bottom: 20px;
}

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

.app-store-button, .google-play-button {
    padding: 15px 30px;
    border: 2px solid #BB86FC;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.app-store-button:hover, .google-play-button:hover {
    background-color: #BB86FC;
    color: #121212;
}

/* Footer */
footer {
    background-color: #1F1F1F;
    padding: 40px 20px;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-links {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}
