@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@300;400;500;600;700&display=swap");

body {
    font-family: "Josefin Sans", sans-serif;
}

.navbar {
    position: fixed;
    top: 2%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    background-color: #ffffff;
    width: 80%;
    border-radius: 50px;
    padding: 10px 10px 15px 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.logo img {
    height: 40px;
    width: auto;
}

.nav-list {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.nav-list li a {
    text-decoration: none;
    color: #000000;
    font-weight: bold;
    font-size: 18px;
}

.nav-list li a:hover {
    color: #12aa8b;
}

.btn-get {
    position: relative;
    display: inline-block;
    background: transparent;
    color: #111;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    z-index: 1;
    border: none;
}

.btn-get::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50px;
    padding: 2px;
    background: linear-gradient(45deg, #12aa8b 0%, #b173ff 50%, #e13c80 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}

.btn-get:hover {
    color: #fff;
    background: linear-gradient(45deg, #12aa8b 0%, #b173ff 50%, #e13c80 100%);
}

.btn-get:hover::before {
    opacity: 0;
}

/* Hamburger Menu - Hidden on Desktop */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: linear-gradient(90deg, #b173ff, #e13c80);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("../images/bg-navbar.png") no-repeat center center;
    background-size: cover;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 7px 20px;
    background: #ffffff;
    border-radius: 50px;
    margin: 18px 20px;
}

.mobile-menu-header .logo img {
    height: 30px;
}

.close-menu {
    background: transparent;
    border: none;
    font-size: 20px;
    color: #b173ff;
    cursor: pointer;
    font-weight: 300;
}
.close-menu img {
    height: 20px;
}

.mobile-nav-list {
    list-style: none;
    padding: 60px 0;
    margin: 0;
    text-align: center;
}

.mobile-nav-list li {
    margin: 30px 0;
}

.mobile-nav-list li a {
    text-decoration: none;
    color: #ffffff;
    font-size: 32px;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.mobile-nav-list li a:hover {
    opacity: 0.8;
}

.mobile-menu-footer {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    text-align: center;
    color: #ffffff;
    font-size: 12px;
}

/* footer */

footer {
    width: 100%;
    background: url("../images/bg-footer.png") no-repeat center center;
    background-size: cover;
    background-color: #112828;
    padding: 100px 50px 30px 50px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    background-color: #ffffff;
    border-radius: 40px;
}

.content-footer-left {
    padding: 60px;
    max-width: 700px;
}

.content-footer-left h3 {
    font-size: 48px;
}

.content-footer-left p {
    font-size: 22px;
    margin: 20px 0px 40px 0px;
    color: #000000;
}

.btn-footer {
    position: relative;
    color: black;
    background: transparent;
    border: none;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 0.5px;
    padding: 15px 40px;
    border-radius: 30px;
    display: block;
    z-index: 1;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 30px;
    padding: 2px;
    background: linear-gradient(45deg, #12aa8b 0%, #b173ff 50%, #e13c80 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}


.btn-footer:hover {
    color: #fff;
    background: linear-gradient(45deg, #12aa8b 0%, #b173ff 50%, #e13c80 100%);
}

.content-footer-right {
    height: 400px;
}

.content-footer-right img {
    width: 100%;
    height: 100%;
    border-radius: 40px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
}

.footer-bottom img {
    height: 60px;
    width: auto;
}

.footer-bottom .nav-list-footer {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-list-footer li a {
    text-decoration: none;
    color: #ffffff;
    font-size: 16px;
}

.footer-bottom p {
    color: #ffffff;
    font-size: 14px;
}

.footer-mobile {
    display: none;
}

@media (max-width: 1280px) {
    .footer-content {
        display: grid;
        grid-template-columns: 40% 1fr;
    }

    .content-footer-left h3 {
        font-size: 32px;
    }

    .content-footer-left p {
        font-size: 18px;
    }
}

@media (max-width: 1050px) {
    .nav-list-footer li a {
        font-size: 12px;
    }

    .footer-bottom p {
        font-size: 10px;
        margin: 0;
    }

    .content-footer-left {
        padding: 30px;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .navbar {
        width: 90%;
        padding: 7px 20px;
    }

    .logo img {
        height: 30px;
    }

    .nav-list {
        display: none;
    }

    .btn-get {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-menu-overlay {
        display: block;
    }

    footer {
        display: none;
    }

    .footer-mobile {
        display: block;
        width: 100%;
        background: url("../images/bg-footer-mobile.png") no-repeat center
            center;
        background-size: cover;
        background-color: #112828;
        padding: 20px;
    }

    .footer-mobile .footer-content {
        display: grid;
        grid-template-columns: 1fr;
        border-radius: 10px;
    }

    .content-footer-left {
        padding: 30px 20px;
    }

    .content-footer-left h3 {
        font-size: 28px;
    }

    .content-footer-left p {
        font-size: 16px;
    }

    .content-footer-left .btn-footer {
        padding: 8px 30px;
        font-size: 12px;
        font-weight: 500;
    }

    .content-footer-right {
        width: 100%;
        height: auto;
    }

    .content-footer-right img {
        width: 100%;
        height: auto;
        border-radius: 10px;
    }

    .footer-bottom {
        align-items: center;
    }

    .footer-bottom img {
        height: 30px;
    }

    .footer-bottom p {
        font-size: 10px;
        margin: 0;
    }

    .nav-list-footer {
        margin: 30px 0px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .nav-list-footer li a {
        font-size: 12px;
    }
}
