:root{
    --background: url('../images/background.jpg');
    --logo:  transparent;
    --logo-height: 9rem;
    /*Set logo width as auto if .logo is <img>*/
    /*Strictly define logo width if .logo is <div>*/
    --logo-width: auto;
    --logo-margin:  7rem auto 0;
    --packshot: transparent;
    /*Set packshot height and width as auto if .packshot is <img>*/
    /*Strictly define packshot height and width if .packshot is <div>*/
    --packshot-height: auto;
    --packshot-width: auto;
    --packshot-margin: var(--logo-height) auto 0;
    --iframe-margin: 0rem auto 0;
    --iframe-color: none;
}
html{
    overscroll-behavior: none;
}
body {
    background: var(--background);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: left bottom;
}
body .container-fluid .for-a-other-link {
    margin-top: 4rem;
}
body .container-fluid .content {
    max-width: 1600px;
    width: 90%;
    margin: 0 auto;
    z-index: 2;
    position: relative;
    overflow: hidden;
}
body .container-fluid .logo-container {
    margin: var(--logo-margin);
}

body .container-fluid .logo-container .logo{
    background: var(--logo);
    background-repeat: no-repeat;
    background-size: cover;
    height: var(--logo-height);
    width: var(--logo-width);
    position: fixed;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    will-change: transform;
}

body .container-fluid .packshot-container {
    margin: var(--packshot-margin);
}
body .container-fluid .packshot-container .packshot {
    background: var(--packshot);
    background-repeat: no-repeat;
    background-size: contain;
    max-width: 45vw;
    max-height: 80vh;
    height: var(--packshot-height);
    width: var(--packshot-width);
    position: fixed;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    will-change: transform;
}
body .container-fluid .for-a-other-link a {
    color: #000000;
    font-size: 80%;
    font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
}

body .container-fluid .container-iframe {
    background-color: var(--iframe-color);
    margin: var(--iframe-margin);
    border-radius: 10px;
}


.lang-switch {
    position: fixed;
    top: 10rem;
    right: 30px;
    display: flex;
    z-index: 999;
    flex-direction: column;
    gap: 10px;
}

.lang-switch button {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
    border: 2px solid rgba(0, 131, 58, 0.2);
    border-radius: 25px;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    color: #00833a;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.lang-switch button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 131, 58, 0.1), transparent);
    transition: left 0.5s ease;
}

.lang-switch button:hover {
    transform: translateX(-5px) scale(1.05);
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.95) 100%);
    border-color: rgba(0, 131, 58, 0.4);
    box-shadow: 0 6px 20px rgba(0, 131, 58, 0.25);
}

.lang-switch button:hover::before {
    left: 100%;
}

.lang-switch button.active {
    background: linear-gradient(135deg, #00833a 0%, #00a347 100%);
    color: #ffffff;
    border-color: #00a347;
    box-shadow: 0 6px 20px rgba(0, 131, 58, 0.4);
}

.lang-switch button.active:hover {
    background: linear-gradient(135deg, #009440 0%, #00b350 100%);
    transform: translateX(-5px) scale(1.05);
}

.button-container {
    margin-top: 12rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.button-container .btn {
    background: linear-gradient(135deg, #00833a 0%, #00a347 100%);
    border: none;
    border-radius: 30px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 6px 20px rgba(0, 131, 58, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.button-container .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.button-container .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 131, 58, 0.4);
    background: linear-gradient(135deg, #009440 0%, #00b350 100%);
    text-decoration: none;
    color: #ffffff;
}

.button-container .btn:hover::before {
    left: 100%;
}

.button-container .btn:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 131, 58, 0.35);
}
span.highlight {
    color: #00833a;
    font-weight: bold;
}
	.promo-banner {
			padding: 0;
			text-align: center;
			margin: 0 0 20px 0;
		}
		.promo-banner img {
			max-width: 100%;
			height: auto;
			display: block;
			margin: 0 auto;
		}
		@media (max-width: 768px) {
			.promo-banner {
				margin: 0 0 15px 0;
			}
		}

@media (max-width: 1080px) {
    body .container-fluid .container-iframe {
        margin-top: 0;
        padding-top: 0;
        width: 95%;
        float: none;
    }

    body .container-fluid .logo-container {
        padding-bottom: 0;
        width: 100%;
        padding-right: 1rem;
        margin-bottom: 20px;
        text-align: center;
    }

    body .container-fluid .logo-container .logo {
        margin: auto;
        position: static;
    }

    body .container-fluid .packshot-container {
        width: 100%;
        text-align: center;
        margin: auto;
    }

    body .container-fluid .packshot-container .packshot {
        background-size: cover;
        max-width: 80vw;
        height: auto;
        position: static;
        margin: auto;
    }
    body .container-fluid .content {
        max-width: 100%;
    }

    body .container-fluid .container-iframe {
        padding-right: inherit;
        padding-left: inherit;
    }

    .lang-switch {
        position: static;
        margin-top: -11rem;
        width: 100%;
        align-items: flex-end;
        gap: 5px;

    }

    .lang-switch button {
        width: 5rem;
        pointer-events: auto;
        padding: 10px 0;
        margin-right: 30px;
    }
}