/* Common Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

/* Wrapper should take up at least the full height of the viewport */
.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 90vh; /* Full viewport height */
}

/* Navigation Styles */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #444;
}

nav .logo {
    color: white;
    font-size: 24px;
    cursor: pointer;
    text-decoration: none;
}

nav ul {
    list-style-type: none;
    display: flex;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    padding: 8px 12px;
    display: block;
}

nav ul li a:hover {
    background-color: #555;
    border-radius: 5px;
}

.hamburger {
    display: none;
    cursor: pointer;
    font-size: 24px;
    color: white;
}

@media (max-width: 768px) {
    nav ul {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #444;
        position: absolute;
        top: 50px;
        left: 0;
    }

    nav ul.active {
        display: flex;
    }

    nav ul li {
        margin: 0;
    }

    nav ul li a {
        padding: 10px;
        text-align: center;
    }

    .hamburger {
        display: block;
    }
}

/* Content should expand to fill the available space */
.content {
    flex: 1;
    padding: 20px;
    text-align: center;
}

.link {
    display: block;
    margin: 10px auto;
    padding: 10px 20px;
    background-color: #444;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
    max-width: 200px;
}

.link:hover {
    background-color: #555;
}

/* Profile and Contact Styles */
.profile {
    display: inline-block;
    margin: 20px;
    text-align: center;
}

.profile img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
}

.profile h3 {
    margin: 10px 0 5px;
    color: #444;
}

.contact-link {
    display: inline-block;
    margin-top: 30px;
    padding: 10px 20px;
    background-color: #444;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.contact-link:hover {
    background-color: #555;
}

.contact-section {
    text-align: center;
}

/* Footer should stick to the bottom */
footer {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
    width: 100%;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-content p {
    margin: 0;
    padding: 0;
}

.social-media {
    margin-top: 10px;
}

.social-media a {
    margin: 0 10px;
    display: inline-block;
}

.social-media img {
    width: 24px;
    height: 24px;
}

/* App Styles */
.app {
    margin-bottom: 40px;
}

.app img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.app h3 {
    margin: 10px 0;
}

.app p {
    margin: 10px 0;
}

.app-buttons {
    margin-top: 10px;
}

.app-buttons a {
    display: inline-block;
    margin: 5px;
    padding: 10px 20px;
    background-color: #444;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
}

.app-buttons a:hover {
    background-color: #555;
}

.responsive-img {
    max-width: 100%;
    max-height: 350px;
    height: auto;
    display: block;
    margin: 0 auto;
}
