/* Local fonts */
@font-face {
    font-family: 'Hoss Round';
    src: url('/assets/fonts/hoss_round/hossround-regular.woff2') format('woff2'),
         url('/assets/fonts/hoss_round/hossround-regular.woff') format('woff'),
         url('/assets/fonts/hoss_round/hossround-regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Hoss Round';
    src: url('/assets/fonts/hoss_round/hossround-medium.woff2') format('woff2'),
         url('/assets/fonts/hoss_round/hossround-medium.woff') format('woff'),
         url('/assets/fonts/hoss_round/hossround-medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Proxima Nova';
    src: url('/assets/fonts/proxima_nova/proxima-nova-regular') format('woff2'),
         url('/assets/fonts/proxima_nova/proxima-nova-regular.woff') format('woff'),
         url('/assets/fonts/proxima_nova/proxima-nova-regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* html {
    background: #1C6B25;
} */

body {
    font-family: Proxima Nova, Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: #ffffff;
    overflow-x: hidden;
    background: #1c6b2533;
    height: 200vh;
}

h1, h2, h3, h4 {
    font-family: 'Hoss Round', sans-serif;
    font-weight: 500;
}

.background-map {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(./assets/eco-park.webp) center/cover no-repeat;
    opacity: .9;
    mix-blend-mode: soft-light;
    z-index: 1;
}

.container {
    min-height: calc(100vh - 80px);
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.content-wrapper {
    display: block;
    border-radius: 20px;
    border: 1px solid rgba(157, 255, 0, 0.35);
    background: #0233078c;
    backdrop-filter: blur(0.8px);
    position: relative;
    z-index: 2;
    width: 100%;
    height: calc(100vh - 80px);
}

.content-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 10;
    padding: 80px 120px;
    top: 0;
    left: 0;
}


.header {
    margin-bottom: 60px;
}

.logo-container {
    display: flex;
    gap: 20px;
    align-items: center;
}

.logo {
    height: 50px;
    width: auto;
}

.logo-container picture:first-of-type .logo{
    height: 46px;
}

.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* max-width: 1200px; */
    width: 100%;
}

.main-title {
    display: flex;
    flex-direction: column;
    font-size: clamp(48px, 7vw, 96px);
    line-height: 1.1;
    margin-bottom: 53px;
    letter-spacing: -2.54px;
}

.title-line-1 {
    color: #c5ff3d;
}

.title-line-2 {
    color: #c5ff3d;
}

.cta-section {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 60px;
    border-radius: 10px;
    border: 1px solid rgba(183, 255, 192, 0.44);
    /* background: #27622D; */
    background: #27622d0a;
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(17.049999237060547px);
    padding: 20px 30px;
    width: fit-content;
}

.cta-text {
    flex: 0 0 auto;
}

.cta-title {
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 500;
    color: #ffffff;
}

.cta-subtitle {
    font-size: clamp(14px, 1.5vw, 18px);
    color: #e0e0e0;
    font-weight: 300;
}

.cta-button {
    width: 140px;
    height: 56px;
    background-color: #c5ff3d;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.cta-button .arrow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.cta-button .arrow-icon {
    position: absolute;
    top: 50%;
    left: -50px;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.cta-button:hover .arrow {
    left: calc(100% + 20px);
    opacity: 0;
}

.cta-button:hover .arrow-icon {
    left: 50%;
    opacity: 1;
}

.cta-button:hover {
    background-color: #d4ff5e;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-top: 20px;
    /* border-top: 1px solid rgba(255, 255, 255, 0.2); */
}


.footer-left_content {
    display: flex;
    /* flex-direction: column; */
    gap: 8px;
}

.coming-soon {
    font-family: "Hoss Round";
    font-size: 26px;
    font-style: normal;
    font-weight: 400;
    line-height: 148.2%; /* 38.532px */
    letter-spacing: -0.52px;
    padding-bottom: 12px;
}

.copyright,
.copyright a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.copyright a {
    text-decoration: underline
}

.footer-right {
    text-align: right;
}

.tagline {
    font-family: Proxima Nova, sans-serif;
    font-weight: 300;
    color: #ffffff;
    font-size: 20px;
    font-style: normal;
    line-height: 148.2%; /* 29.64px */
    letter-spacing: -0.4px;
}


/* // Carbon badge  */
#wcb.carbonbadge {
    text-align: left !important;
    line-height: 1.15;
    font-size: 14px !important;
    color: rgba(255, 255, 255, 0.7) !important;
}

#wcb_p {
    margin: 0;
    transform: translateY(-3px);
}

#wcb #wcb_g {
    border-radius: unset !important;
    background: unset !important;
    border-right: unset !important;
    min-width: unset !important;
    padding: 0 10px 0 !important;
}

#wcb_g {
    margin-right: 6px !important;
}

#wcb #wcb_a, #wcb #wcb_g {
    padding: unset !important;
    border: unset !important;
}

#wcb #wcb_a {
    border-radius: unset !important;
    border-left: unset !important;
    background: unset !important;
    color: unset !important;
    font-weight: unset !important;
    border-color: unset !important;
}



/* Responsive Design */
@media (max-height: 720px) {

    .container {
        height: 100%;
    }
    .content-wrapper {
        height: 100%;
    }
}

@media (max-width: 768px) {
    .footer-right {
        display: none;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 24px;
    }

    .content-container {
        padding: 40px;
        align-items: center;
    }

    .main-content {
        align-items: center;
        text-align: center;
    }

    .main-title {
        margin-bottom: 60px;
    }

    .cta-section {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 60px;
        gap: 20px;
    }

    .footer-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    .cta-button {
        width: 100%;
        height: 48px;
    }

    .cta-button .arrow,
    .cta-button::before {
        font-size: 28px;
    }
}
