/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
    background-color: #F2F2F2;
    /* Background Gray */
    color: #1A2B3C;
    /* Dark Blue */
}

/* Hero Section */
.hero {
    position: relative;
    background-image: url("images/hero.png");
    background-size: cover;
    background-position: center;
    padding: 50px 20px;
    color: white;
    /* Ensures text remains bright */
    text-align: center;

    /* background-color: #2E4A6B;
    color: white;
    padding: 50px 20px; */
}

/* Add an overlay */
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    /* Adjust opacity here */
    z-index: 0;
    /* Ensures overlay stays behind everything */
}

/* Ensure text & buttons appear on top */
.hero * {
    position: relative;
    z-index: 1;
}

/* App Icon */
.app-icon {
    margin-bottom: 20px;
}

.app-icon img {
    width: 100px;
    height: 100px;
    border-radius: 20px;
    /* Rounded edges for app icon */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Buttons */
.hero .buttons {
    /* margin-top: 20px; */
    display: flex;
    flex-direction: column;
    /* Stack by default */
    align-items: center;
    /* Center on small screens */
    gap: 10px;
    /* Space between buttons */
}

.btn {
    display: inline-block;
    background-color: #F5A623;
    /* Accent Yellow */
    color: #1A2B3C;
    /* Dark Blue */
    padding: 12px 20px;
    text-decoration: none;
    border-radius: 5px;
    margin: 5px;
    font-weight: bold;
}

.btn:hover {
    background-color: #5A8ABC;
    /* Light Blue */
    color: white;
}

/* Sections */
.about,
.features,
.screenshots,
.cta {
    padding: 40px 20px;
}

/* Features Section */
.features-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.feature-item {
    width: 100%;
    max-width: 300px;
    text-align: center;
}

.feature-item img {
    width: 100%;
    max-width: 250px;
    height: auto;
    border-radius: 10px;
}

/* Screenshots Section */
.screenshots .images {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.screenshots img {
    width: 100%;
    max-width: 200px;
    height: auto;
    border-radius: 10px;
}

/* Call to Action */
.cta {
    background-color: #2E4A6B;
    /* Medium Blue */
    color: white;
    padding: 50px 20px;
}

/* Responsive Design */
@media (min-width: 768px) {
    .features-container {
        flex-direction: row;
        justify-content: space-around;
    }

    .feature-item {
        width: 30%;
    }

    .screenshots .images {
        flex-direction: row;
    }

    .screenshots img {
        max-width: 250px;
    }

    .hero .buttons {
        flex-direction: row !important;
        /* Force horizontal layout */
        justify-content: center;
        /* Center buttons horizontally */
    }

}