body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: black;
    color: white;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.logo img {
    height: 100px;
}

.nav-bar {
    display: flex;
    align-items: center;
    background: black;
    padding: 20px;
    border-bottom: solid thin darkgray;
}

.logo {
    margin-right: 20px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    margin-left: 100px;
    padding: 0;
    font-weight: bold;
}

.nav-links li {
    display: inline;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-size: 18px;
}

.nav-links a:hover {
    color:#9d8412
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger div {
    width: 30px;
    height: 4px;
    background-color: white;
    margin: 5px;
}

@media screen and (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 120px;
        left: 0;
        width: 100%;
        background: black;
        padding: 20px 0;
        text-align: center;
    }

    .nav-links.show {
        display: flex;
    }

    .hamburger {
        display: flex;
        margin-left: auto;
    }

    .content {
        flex-direction: column;
        text-align: center;
    }

    .content img {
        margin: 0 auto;
    }
}

.content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    max-width: 1200px;
    margin: auto;
    padding: 50px 20px;
    gap: 40px;
    text-align: left;
}

.content img {
    width: 500px;
    max-width: 100%;
}

.text-content {
    max-width: 600px;
}

h1 {
    color: #9d8412;
}

.learn-more-btn {
    display: inline-block;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: bold;
    color: black;
    background-color: #9d8412;
    border-radius: 50px;
    text-decoration: none;
    margin-left: 20px;
    transition: background-color 0.3s ease;
}

.learn-more-btn:hover {
    background-color: #b79a2c;
}

.socials {
    text-align: center;
    margin-top: 50px;
    margin-bottom: 50px;
}

.socials img {
    width: 50px;
    margin: 10px;
    transition: transform 0.3s ease;
}

.socials img:hover {
    transform: scale(1.1);
}
