html {
    height: 100%;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Adieu", sans-serif;
}

body {
    background: linear-gradient(rgba(0, 0, 0, 0.93), rgba(0, 0, 0, 0.93)), url('/images/EyeOfHorus.jpg');
    background-position: center;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding-top: 100px;
}

.header {
    background: #000;
    position: fixed;
    width: 100%;
    top: 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
    min-height: 100px;
}


.logo {
    display: flex;
    gap: 15px;
    text-decoration: none;
    align-items: center;
}

.logo img {
    width: 50px;
    border-radius: 50%;
}

.logo h2 {
    color: #fff;
    font-size: 1.6rem;
    font-weight: 550;
}

.navbar {
    display: flex;
    padding: 40px 0;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    justify-content: space-between;
}

.nav-list {
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    list-style: none;
    column-gap: 35px;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
}

.nav-link:hover {
    color: #ffae00;
    text-decoration: none;
    font-weight: 500;
}

.buy-btn {
    border: none;
    outline: none;
    color: #000;
    font-size: 1rem;
    font-weight: 600;
    padding: 10px 18px;
    border-radius: 50px;
    cursor: pointer;
    background: #ffae00
}

.buy-btn a {
    border: none;
    outline: none;
    color: #000;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    cursor: pointer;
}

.buy-btn:hover {
    background: #ffba26;
    transform: scale(1.05);
    transition: 0.2s ease-in-out;
}

.mbuy-btn {
    display: none;
    border: none;
    outline: none;
    color: #000;
    font-size: 1rem;
    font-weight: 600;
    padding: 10px 18px;
    border-radius: 50px;
    cursor: pointer;
    background: #ffae00
}

.mbuy-btn a {
    border: none;
    outline: none;
    color: #000;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    cursor: pointer;
}

.mbuy-btn:hover {
    background: #ffba26;
    transform: scale(1.05);
    transition: 0.2s ease-in-out;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    height: 2px;
    width: 27px;
    background: #ffae00;
    margin: 5px 0;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.landing {
    margin-top: -40px;
    text-align: center;
    justify-content: center;
    align-items: center;
}

.landing h1 {
    padding-top: 150px;
    padding-bottom: 20px;
    font-size: 40px;
    font-weight: 500;
    color: #ffae00;
}

.landing span {
    -webkit-text-stroke-color:#ffae00;
    -webkit-text-stroke-width: 1px;
    padding-top: 175px;
    padding-bottom: 20px;
    font-size: 40px;
    font-weight: 500;
    color: #000000;
}

.landing p {
    padding-bottom: 35px;
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.landing button {
    border: none;
    outline: none;
    color: #000;
    font-size: 1rem;
    font-weight: 600;
    padding: 10px 18px;
    border-radius: 50px;
    cursor: pointer;
    background: #ffae00;
    margin: 0px 5px 5px 5px;
}

.landing button a {
    border: none;
    outline: none;
    color: #000;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    cursor: pointer;
    margin: 0px 5px 5px 5px;
}

.landing button:hover {
    background: #ffba26;
    transform: scale(1.05);
    transition: 0.2s ease-in-out;
}

.methods {
    text-align: center;
    justify-content: center;
    align-items: center;
    padding-bottom: 35px;
}

.methods .title {
    padding-top: 60px;
    padding-bottom: 20px;
    font-size: 40px;
    font-weight: 500;
    color: #ffae00;
}

.methods .desc {
    padding-bottom: 35px;
    font-size: 20px;
    font-weight: 500;
    color: #ffae00;
}

.methods h2 {
    padding-top: 20px;
    padding-bottom: 5px;
    font-size: 30px;
    font-weight: 500;
    color: #fff;
}

.card-container {
    display: inline-block;
    justify-content: center;
    flex-wrap: wrap;
}

.card {
    width: 325px;
    background-color: #ffae00;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
    margin: 20px;
}

.card:hover {
    transform: scale(1.05);
    transition: 0.2s ease-in-out;
}

.card-content {
    padding: 16px;
}

.card-content h3 {
    font-size: 20px;
    margin-bottom: 5px;
}

.card-content p {
    font-size: 16px;
    line-height: 1.3;
}

footer {
    align-items: center;
    margin-top: auto;
    background: #000;
    height: auto;
    padding-top: 40px;
    color: #fff;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.footer-content h3 {
    font-size: 40px;
    font-weight: 400;
    text-align: center;
    line-height: 3rem;
}

.footer-content p {
    max-width: 500px;
    margin: 15px auto;
    line-height: 28px;
    font-size: 18px;
}

.socials {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem 0 3rem 0;
}

.socials li {
    margin: 0 10px;
}

.socials a {
    text-decoration: none;
    color: #fff;
}

.socials a img {
    font-size: 1.1rem;
    height: 35px;
}

.socials a:hover i {
    color: #ffba26;
    transform: scale(1.05);
    transition: 0.2s ease-in-out;
}

.footer-bottom {
    width: 100vw;
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    word-spacing: 2px;
    text-transform: capitalize;
}

.footer-bottom span {
    text-transform: uppercase;
    opacity: .4;
    font-weight: 200;
}

.navbar--open {
    display: block;
    margin-top: 1100px;
}

.hamburger--open .bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger--open .bar:nth-child(2) {
    opacity: 0;
}

.hamburger--open .bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 968px) {
    .nav-link {
        font-size: 13px;
    }
}

@media (min-width: 769px) {
    .navbar {
        margin-top: 0;
    }
    
}

@media (max-width: 768px) {

    .navbar {
        display: flex;
        justify-content: center;
        position: fixed;
        left: 0;
        background: #000;
        width: 100%;
        height: 100%;
        top: -1000px;
        transition: 0.7s ease-in-out;
    }

    .buy-btn {
        display: none;
    }

    .mbuy-btn {
        display: block;
        justify-content: center;
        left: 0;
        width: 500px;
        padding: 10px 50px;
        margin-top: 7.5px;
        justify-items: center;
        padding-bottom: 15px;
    }

    .mbuy-btn a {
        font-size: 30px;
    }

    .nav-list {
        flex-direction: column;
        margin-top: -275px;
        row-gap: 35px;
    }

    .nav-link {
        font-size: 40px;
    }

    .hamburger {
        display: block;
    }
}