/* style.css */
:root {
    --primary-color: #E30A17;
    --secondary-color: #333;
    --background-color: #fff;
    --text-color: #555;
    --main-bg-color: #eee;
    --footer-bg-color: #f8f8f8;
    --footer-text-color: #555;
    --footer-link-hover: #0292c7;
    --footer-border-color: #ccc;
    --footer-bottom-bg: #333;
    --footer-bottom-text: #fff;
}

* {
    box-sizing: border-box;
}


html, body {
    display: block;
    min-height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
    width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
    background-color: var(--background-color);
}

#wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    width: 100%;
    overflow-x: hidden;
    min-width: 320px;
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 64px 20px 40px;
    width: 100%;
    box-sizing: border-box;
}

.hero {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
    padding: 20px;
}

.hero h1 {
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 12px;
}

.hero p {
    font-size: 1.2rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

/* Apps Section */
#apps {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    padding: 10px;
    box-sizing: border-box;
}

.app-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #ccc;
    padding: 20px;
    margin: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    max-width: 100%;
    width: 400px;
    min-height: 500px;
    text-align: center;
    background-color: #f9f9f9;
    transition: transform 0.2s ease-in-out;
    box-sizing: border-box;
}

.app-container:hover {
    transform: scale(1.01);
}

.app-title {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #333;
}

.app-image {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
}

.app-description {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin: 10px 0;
    flex-grow: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    main {
        padding: 64px 10px 40px;
    }
    
    .app-container {
        max-width: 90%;
        min-height: 450px;
    }
    
    .app-title {
        font-size: 1.2em;
    }
    
    #apps {
        gap: 10px;
    }
}

@media (max-width: 480px) {
    main {
        padding: 64px 5px 40px;
    }
    
    .app-container {
        max-width: 100%;
        padding: 15px;
        min-height: 400px;
    }
    
    .app-title {
        font-size: 1em;
    }
    
    .download-badge img {
        height: 48px;
    }
}
