* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,
html {
    height: 100%;
    width: 100%;
    font-family: 'Poppins', sans-serif;
}

.bg-full {
    background-image: url('/assets/images/bg-landing.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100vh;
    position: relative;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    color: white;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.logo img {
    height: 48px;
}

.hamburger {
    opacity: 0.6;
    cursor: not-allowed;
}

.hamburger svg {
    width: 24px;
    height: 24px;
    fill: white;
}

.contact-btn-wrapper {
    width: 100%;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 140px;
    display: flex;
    justify-content: center;
    z-index: 2;
}

.contact-btn {
    display: inline-block;
    text-decoration: none;
    padding: 12px 20px;
    font-size: 16px;
    background: #C1272D;
    color: white;
    border: 2px solid #830000;
    border-radius: 8px;
    box-shadow: 0 8px 40px rgba(19, 115, 194, 0.5);
    cursor: pointer;
    transition: 0.3s;
}

.contact-btn:hover {
    background: #fff;
    color: #C1272D;
}

footer {
    text-align: center;
    color: #111;
    font-size: 14px;
    width: 95vw;
    position: absolute;
    bottom: 30px;
    left: 2.5vw;
    right: 2.5vw;
}

.footer-social img {
    height: 16px;
    margin: 10px 5px;
}

.content-section {
    position: absolute;
    top: 40%;
    /* moved up from 50% to 43% */
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #000000;
    z-index: 3;
}

.content-section h1 {
    font-size: 40px;
    font-weight: semibold;
    margin-bottom: 18px;
    letter-spacing: 1px;
}

.content-section h3 {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

/* Tablet: 601px - 1024px */
@media (min-width: 601px) and (max-width: 1024px) {
    .logo img {
        height: 64px;
    }

    .hamburger svg {
        width: 36px;
        height: 36px;
    }

    .contact-btn {
        padding: 16px 60px;
        font-size: 20px;
    }

    .contact-btn-wrapper {
        bottom: 180px;
    }

    footer {
        font-size: 16px;
    }

    .footer-social img {
        height: 20px;
    }

    .content-section h1 {
        font-size: 32px;
    }

    .content-section h3 {
        font-size: 16px;
    }
}

/* Laptop: 1025px - 1439px */
@media (min-width: 1025px) and (max-width: 1439px) {
    .navbar {
        padding: 1rem 100px;
    }

    .logo img {
        height: 80px;
    }

    .hamburger svg {
        width: 40px;
        height: 40px;
    }

    .contact-btn {
        padding: 20px 100px;
        font-size: 20px;
    }

    .contact-btn-wrapper {
        bottom: 160px;
    }

    footer {
        font-size: 20px;
    }

    .footer-social img {
        height: 20px;
        margin: 20px 14px;
    }

    .content-section h1 {
        font-size: 56px;
    }

    .content-section h3 {
        font-size: 24px;
    }
}

@media (min-width: 1440px) {
    .navbar {
        padding: 1rem 180px;
    }

    .logo img {
        height: 60px;
    }

    .hamburger svg {
        width: 30px;
        height: 30px;
    }

    .contact-btn {
        padding: 20px 120px;
        font-size: 24px;
    }

    .contact-btn-wrapper {
        bottom: 160px;
    }

    footer {
        font-size: 20px;
    }

    .footer-social img {
        height: 24px;
        margin: 24px 14px;
    }

    .content-section h1 {
        font-size: 68px;
    }

    .content-section h3 {
        font-size: 20px;
    }
}

@media (min-width: 1920px) {
    .navbar {
        padding: 30px 240px;
    }

    .logo img {
        height: 80px;
    }

    .hamburger svg {
        width: 30px;
        height: 30px;
    }

    .contact-btn {
        padding: 20px 120px;
        font-size: 24px;
    }

    .contact-btn-wrapper {
        bottom: 160px;
    }

    footer {
        font-size: 20px;
    }

    .footer-social img {
        height: 24px;
        margin: 24px 14px;
    }

    .content-section h1 {
        font-size: 68px;
    }

    .content-section h3 {
        font-size: 20px;
    }
}