/* Business Card Template Styles */

/* @keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
} */

body {
    background: #FFFFFF;
    background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(210, 224, 232, 1) 100%);
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
}

#glt-translate-trigger, #cookie-notice {display:none !important; height:0; opacity:0; visibility:hidden;}

.business-card {
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    min-height: 100dvh;



    & header {
        padding: 30px 0;
        text-align: center;
        /* animation: fadeIn 0.6s ease-out; */
    }

    & header img {
        max-width: 160px;
        height: auto;
    }


    & .section-hero {
        color: #fff;
        background-color: #002F3B;
        background-image: url(../img/card-background.jpg);
        background-size: cover;
        min-height: 250px;
        padding: 0 20px;
        border-radius: 40px 0 40px 0;
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        position: relative;
        overflow: hidden;
        background-position: bottom;
        /* animation: fadeInUp 0.8s ease-out 0.2s both; */

        &:before {
            background-color: #002F3B;
            opacity: 0;
            overflow: hidden;
            z-index: 1;
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border-radius: 40px 0 40px 0;
        }

        & h1 {
            font-size: 26px;
            margin: 0;
            line-height: 1.19;
            color: #fff;
            position: relative;
            z-index: 2; font-weight: 700; padding: 0; font-family: "Fira Sans", sans-serif;
        }

        & .business-card-job-title {
            font-size: 18px;
            margin: 8px 0 0 0;
            line-height: 1.2;
            position: relative;
            z-index: 2;
        }

    }

    & .section-content {
        padding: 30px 20px;
        display: grid;
        gap: 20px;

        & .cta:first-child + * {
            margin-top: -20px;
        }

        & .business-card-grid {
            display: grid;
            grid-template-columns: 36px 1fr;
            gap: 8px;
            background-color: #fff;
            border: 1px solid #D0D7DC;
            border-radius: 15px 0;
            box-shadow: 0 3px 6px rgba(0, 0, 0, 0.07);
            padding: 20px;
            /* animation: fadeInUp 0.6s ease-out both; */ align-items: center;
        }

        & p {
            margin: 0;
            padding: 0;
            font-size: 17px;
        }

        & p span {
            font-size: 18px;
        }

        & a {
            color: #002F3B; word-break: break-all;
        }
    }

    & .cta {
        margin: 0 auto;
        position: relative;
        top: -59px;
        z-index: 3;
        /* animation: scaleIn 0.6s ease-out 0.6s both; */ display: flex;
        gap: 24px;

        & .btn-circle {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background-color: #FFFFFF;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid #D0D7DC; box-shadow: 0 3px 6px rgba(0, 0, 0, 0.07);
        }
    }

    & footer {
        margin-top: auto;

        & a {
            background: #3AAD2C;
            background: linear-gradient(57deg, rgba(58, 173, 44, 1) 0%, rgba(44, 129, 107, 1) 49%, rgba(27, 77, 182, 1) 100%);
            padding: 20px;
            border-radius: 40px 0 0;
            text-align: center;
            color: #fff;
            text-decoration: none;
            font-size: 19px;
            display: block;
            text-transform: uppercase;
        }

        & .save-wrap {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }
    }

}