/* General Body Styling */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

/* Remove focus outlines from all elements */
*:focus {
    outline: none;
    border: none;
    box-shadow: none;
}

/* Center the homepage container with flexbox */
.homepage-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 80vh;
    text-align: center;
}

/* Logo Styling: Adds margin to space the logo from the content */
.logo-container {
    margin-bottom: 40px;
}

/* Header Section: Sets title and subtitle styling */
.header h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
}

.subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
}

/* Download Buttons Section Styling */
.download-section {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Download Button Styling */
.download-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background-color: black;
    border: 2px solid #ccc;
    border-radius: 10px;
    text-decoration: none;
    color: white;
    transition: background-color 0.3s ease, color 0.3s ease;
    height: 50px;
    
}

    /* Force text color to white in normal state */
    .download-button .text-xs,
    .download-button .text-lg {
        color: white; /* Ensure text is white in normal state */
    }

    /* Download Button Hover Effect */
    .download-button:hover {
        background-color: #f1f1f1;
        color: black; /* Button text changes to black on hover */
    }

        .download-button:hover .text-xs,
        .download-button:hover .text-lg {
            color: black; /* Ensure text is black on hover */
        }

/* Icon Container Styling: Flexbox alignment for icons */
.icon-container {
    display: flex;
    align-items: center;
    margin-right: 10px;
}

/* Text Container Styling for Download Buttons */
.text-container {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    line-height: 0.2;
    margin-top: 0px;
}

/* Small Text (e.g., 'Get it on') */
.text-xs {
    font-size: 12px; /* Small font size */
    color: #333; /* Text color */
    margin-bottom: 2px; /* Reduce space between small and large text */
}

/* Large Text (e.g., 'Play Store') */
.text-lg {
    font-size: 16px; /* Larger font size */
    font-weight: bold; /* Bold text */
    color: #333; /* Text color */
    line-height: 0.2; /* Adjust line height if needed */
}
/* Footer Section Styling */
.footer {
    background-color: #f1f1f1;
    padding: 20px;
    text-align: center;
    margin-top: 40px;
}

/* Footer Links Styling */
.footer-links a {
    margin: 0 10px;
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

    .footer-links a:hover {
        color: #333;
    }

/* Footer Text Styling */
.footer p {
    font-size: 14px;
    color: #999;
}

/* Responsive Styles for Smaller Screens */
@media (max-width: 768px) {
    .download-section {
        flex-direction: column;
        gap: 20px;
    }

    /* Make the buttons smaller */
    .download-button {
        width: 85%; /* Adjust the width to 80% of the container */
        max-width: 250px; /* Set a maximum width for the button */
        padding: 8px 15px; /* Reduce the padding to make the button smaller */
    }

        /* Adjust the text size inside the buttons for smaller screens */
        .download-button .text-xs {
            font-size: 10px; /* Smaller font size for the small text */
        }

        .download-button .text-lg {
            font-size: 14px; /* Smaller font size for the large text */
        }
}
