
html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,
abbr,address,cite,code,del,dfn,em,img,ins,kbd,q,samp,small,strong,
sub,sup,var,b,i,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,
caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,
figcaption,figure,footer,header,hgroup,menu,nav,section,summary,
time,mark,audio,video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent
}
body {
    line-height: 1
}
article,aside,details,figcaption,figure,footer,
header,hgroup,menu,nav,section {
    display: block
}
nav ul {
    list-style: none
}
blockquote,
q {
    quotes: none
}
blockquote:before,blockquote:after,q:before,q:after {
    content: none
}
a {
    margin: 0;
    padding: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent
}
ins {
    background-color: #ff9;
    color: #000;
    text-decoration: none
}
mark {
    background-color: #ff9;
    color: #000;
    font-style: italic;
    font-weight: bold
}
del {
    text-decoration: line-through
}
abbr[title],dfn[title] {
    border-bottom: 1px dotted;
    cursor: help
}
table {
    border-collapse: collapse;
    border-spacing: 0
}
hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0
}
input,select {
    vertical-align: middle
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
    user-drag: none;
    -webkit-touch-callout: none;
}
h1,h2,h3,p {
    margin: 0;
    padding: 0;
}
img {
    pointer-events: none;
}

html,body {
    height: 100%;
    overflow: hidden;
    font-family: "Inter", "Roboto", system-ui;
    font-size: 16px;
    background: #286D23;
    color: white;
}

/* ===== TOPBAR ===== */

.topbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    z-index: 1000;
    background: #0C200A;
    color: #fff;
}

#nav {
    display: flex;
    gap: 14px;
    overflow: hidden
}

.nav-item {
    cursor: pointer;
    opacity: .6;
    white-space: nowrap
}

.nav-item.active {
    opacity: 1;
    font-weight: 700;
}

#brand,
.brand a {
    font-weight: 700;
    font-size: 1.5rem;
    cursor: pointer;
    text-decoration: none !important;
    color: #286D23;
}

/* ===== MENU ===== */
#burger{ display:none;cursor:pointer;font-size: 2.25rem;}
#menu {
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    background: #0C200A;
    display: none;
    flex-direction: column;
    padding: 80px 20px;
    z-index: 2000;
    font-size: 2rem;
}
#menu div {
    color: white;
    cursor: pointer;
    font-weight: 700;
    letter-spacing: .5px;
    padding:20px;
}
#menu.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== APP ===== */
#app {
    height: 100vh;
    width: 100vw;
    position: relative;
    overflow: hidden;
}

/* ===== SLIDES ===== */
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    -o-transition: transform .9s cubic-bezier(.16, 1, .3, 1);
    overflow: hidden;
    -webkit-transition: transform .9s cubic-bezier(.16, 1, .3, 1);
    -moz-transition: transform .9s cubic-bezier(.16, 1, .3, 1);
    -ms-transition: transform .9s cubic-bezier(.16, 1, .3, 1);
    transition: transform .9s cubic-bezier(.16, 1, .3, 1);
}

/* ===== BG ===== */
.bg {
    position: absolute;
    inset: 0;
    background-size: canvas;
    background-repeat: no-repeat;
    background-position: center top;
    opacity: 0;
    -o-transition: opacity .8s ease, transform 1.2s ease;
    transform: scale(1.1);
    -webkit-transition: opacity .8s ease, transform 1.2s ease;
    -moz-transition: opacity .8s ease, transform 1.2s ease;
    -ms-transition: opacity .8s ease, transform 1.2s ease;
    transition: opacity .8s ease, transform 1.2s ease;
}

.slide.active .bg {
    opacity: 1;
    -o-transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

/* ===== INNER ===== */
.slide-inner {
    position: relative;
    height: 100%;
    padding: 90px 30px 30px;
    overflow: hidden;
}

/* ===== SUBSLIDES ===== */
.subtrack {
    display: flex;
    height: 100%;
    -o-transition: transform .7s cubic-bezier(.16, 1, .3, 1);
    -webkit-transition: transform .7s cubic-bezier(.16, 1, .3, 1);
    -moz-transition: transform .7s cubic-bezier(.16, 1, .3, 1);
    -ms-transition: transform .7s cubic-bezier(.16, 1, .3, 1);
    transition: transform .7s cubic-bezier(.16, 1, .3, 1);
}

.subslide {
    min-width: 100%;
    height: 100%;
    opacity: 0;
    -o-transform: translateY(20px);
    -o-transition: .5s;
    display: flex;
    flex-direction: column;
    justify-content: center;
    -webkit-transform: translateY(20px);
    -moz-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    transition: .5s;
}

.subslide.active {
    opacity: 1;
    transform: translateY(0);
}

/* ===== SUB BG ===== */
.subslide::before {
    content: "";
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: .25;
    z-index: -1;
}

/* ===== DOTS ===== */
.dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(12, 32, 10, 0.36);
    cursor: pointer;
}

.dot.active {
    background: #0C200A;
}

/* ===== COLUMN SYSTEM ===== */
.column {
    display: grid;
    grid-template-columns: 25% 1fr 1fr;
    gap: 30px;
    width: 100%;
    height: 100%;
}

.column.right {
    grid-template-columns: 1fr 1fr 25%;
}

.col {
    display: flex;
    flex-direction: column;
    gap: 10px;
    
}

.col-side {
    background-size: auto auto;
    background-position: top;
    background-repeat: no-repeat;
    background-blend-mode: multiply !important;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* ===== TEXT ===== */
h1 {
    font-size: 2.2rem;
    color:white;
    padding: 0;
    margin: 0;
}

h2 {
    font-size: 1.6rem;
    color:white;padding: 0;
    margin: 0;
}

h3 {
    font-size: 1.2rem;
    color:white;padding: 0;
    margin: 0;
}

p {
    font-size: 1rem;
    line-height: 1.5;
    color:rgba(255, 255, 255,0.7);padding: 0;
    margin: 0;
}
.col-side p {
    font-size: 1.5rem;
    line-height: 1.5;
    font-style: italic;
    color:rgba(255, 255, 255,1);padding: 0;
    margin: 0;
}

/* ===== MOBILE ===== */
@media(max-width:768px) {
    .col-side {
        background: none;
        background: rgba(255, 255, 255,0.16) !important;
        padding: 20px;
    }
    #nav {
        display: none;
    }
    .column {
        grid-template-columns: 1fr;
    }

    .slide-inner {
        padding: 80px 20px;
    }

    #nav {
        display: none
    }

    #burger {
        display: block
    }
}