/* General Styles */
body {
    font-family: 'Roboto', sans-serif;
    background-color: #f9fafc;
    color: #333;
    margin: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header */
.header {
    background-color: #0077cc;
    padding: 10px 0;
    color: #fff;
    position: relative;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.logo-link {
    display: flex;
    align-items: center;
}

.logo-img {
    width: 120px; /* Set logo width to a proportionate size */
    height: 120px; /* Set logo height to maintain aspect ratio */
    border-radius: 10px; /* Optional: Adds a rounded corner to the logo */
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 1em;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #ffdd57; /* Highlight color on hover */
}

/* App Info Section */
.app-info {
    text-align: center;
    padding: 40px 20px;
}

.download-info {
    margin-top: 20px;
}

.download-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background-color: #0077cc;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.download-btn:hover {
    background-color: #005fa3;
}

/* Mobile Frame Styles */
.mobile-frame {
    width: 300px; /* Width of the mobile frame */
    height: 600px; /* Height of the mobile frame */
    border: 15px solid #333; /* Border thickness and color */
    border-radius: 30px; /* Rounded corners to mimic a mobile device */
    overflow: hidden; /* Ensure the screenshot fits within the frame */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); /* Add a shadow for depth */
    background-color: #000; /* Background color of the frame (optional) */
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px; /* Center frame and add space below */
}

.app-screenshot {
    width: 100%; /* Ensure the screenshot fills the frame */
    height: auto; /* Maintain the aspect ratio of the screenshot */
}

/* Footer */
.footer {
    background-color: #0077cc;
    color: #fff;
    text-align: center;
    padding: 15px 0;
    margin-top: auto;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }

    .nav-links {
        margin-top: 10px;
    }
}
