/*
body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #333;
    text-align: center;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.hero {
    background: url('img/hero.webp') center/cover no-repeat;
    color: white;
    padding: 100px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.2rem;
    max-width: 600px;
}

.download-buttons {
    margin-top: 20px;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    margin: 10px;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.app-store { background: #000; }
.play-store { background: #34A853; }

.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 40px 20px;
    flex-grow: 1;
}

.feature {
    width: 300px;
    margin: 20px;
    text-align: center;
}

.feature img {
    width: 80px;
    height: 80px;
    margin-bottom: 10px;
}

footer {
    background: #222;
    color: white;
    padding: 20px;
    margin-top: auto;
}
*/
body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #333;
    text-align: center;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.hero {
    position: relative;
    background: url('img/hero.webp') center/cover no-repeat;
    color: #4CAF50; /* Primary color from mobile app */
    padding: 150px 20px; /* Increased height */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay */
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.2rem;
    max-width: 600px;
}

.download-buttons {
    margin-top: 20px;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    margin: 10px;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.app-store { background: #000; }
.play-store { background: #34A853; }

.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 40px 20px;
    flex-grow: 1;
}

.feature {
    width: 300px;
    margin: 20px;
    text-align: center;
}

.feature img {
    width: 80px;
    height: 80px;
    margin-bottom: 10px;
}

footer {
    background: #222;
    color: white;
    padding: 20px;
    margin-top: auto;
}
