@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Rowdies:wght@300;400;700&display=swap');

@font-face {
    font-family: 'Heathergreen';
    src: url(assets/Heathergreen.otf);
}

body {
    color: black;
    background-color: white;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    font-family: "DM Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 5px;
  font-style: normal;
}

.main-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    box-shadow: none;
    z-index: 1000;
    padding: 0 1.2em;
    pointer-events: auto;
    overflow: visible;
}

.main-navbar::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 0;
  background: url('assets/image.png') center/cover repeat;
  box-shadow: 0 4px 24px 0 rgba(0,0,0,0.);
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.4,0,0.2,1);
  pointer-events: none;
}

.main-navbar.navbar-bg::before {
  opacity: 1;
  box-shadow: 2px 10px 24px 0 rgba(0,0,0,0.18), 0 0 0 0 #3a0d0d;
}

.main-navbar > * {
  position: relative;
  z-index: 1;
}


.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    cursor: pointer;
    width: 36px;
    height: 36px;
    margin-left: 0.5em;
    z-index: 1100;
}

.menu-toggle span {
    height: 4px;
    width: 100%;
    background: #fff;
    margin: 5px 0;
    border-radius: 2px;
    display: block;
    transition: 0.3s;
}

@media (max-width: 700px) {
    main-navbar {
        height: 54px;
        padding: 0 0.5em;
        background: url('assets/image.png') center/cover repeat;
        box-shadow: 0 4px 24px 0 rgba(60,10,10,0.18), 0 1.5px 0 0 #3a0d0d;
    }
    .navbar-logo img {
        height: 32px;
    }
    .navbar-links {
        position: fixed;
        top: 54px;
        right: 0;
        left: 0;
        background: url('assets/image.png') center/cover repeat;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100vw;
        max-width: 100vw;
        height: 100vh;
        padding: 0;
        gap: 1.5em;
        transform: translateX(100%);
        transition: transform 0.3s;
        box-shadow: -2px 0 16px rgba(60,10,10,0.18);
        z-index: 1050;
    }
    .main-navbar.menu-open .navbar-links {
        transform: translateX(0);
        pointer-events: auto;
    }
    .navbar-links li {
        width: 100vw;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0;
        padding: 0;
    }
    .navbar-links li:last-child {
        margin-right: 0 !important;
    }
    .navbar-links .nav-link {
        width: 100vw;
        text-align: center;
        color: #fff;
        font-size: 2em;
        font-weight: 700;
        padding: 1.5em 0 1.5em 0;
        border-radius: 0.5em;
        background: transparent;
        transition: background 0.2s, color 0.2s;
        display: flex;
        align-items: center;
        justify-content: center;
        letter-spacing: 0.02em;
    }
    .navbar-links .nav-link:hover,
    .navbar-links .nav-link:focus,
    .navbar-links .nav-link:active {
        background: #2a0808;
        color: #fff;
        box-shadow: none;
        text-shadow: none;
    }
    .menu-toggle {
        display: flex;
        margin-right: 1.6em;
    }
    .menu-toggle img {
        margin-right: 1.6em;
    }
}

.navbar-links li:last-child {
    margin-right: 70px;
}

.main-navbar.visible {
    opacity: 1;
    pointer-events: auto;
}

.navbar-logo img {
    height: 44px;
    filter: drop-shadow(0 0 8px #fff2) drop-shadow(0 0 16px #ffb30088);
}

.navbar-links {
    display: flex;
    gap: 1.2em;
    list-style: none;
    margin: 0;
    padding: 0;
}

.navbar-links .nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95em;
    padding: 0.35em 1em;
    border-radius: 2em;
    transition: 
        background 0.2s,
        box-shadow 0.2s,
        color 0.2s;
    touch-action: manipulation;
}

@media (min-width: 700px) {
    .navbar-links .nav-link:hover {
        background: #ff5252;
        color: #fff;
        box-shadow: 0 0 12px #ffb300, 0 0 24px #fff4;
    }
}

.navbar-links .nav-link:focus:not(:hover):not(:active),
.navbar-links .nav-link:active:not(:hover) {
    background: transparent !important;
    color: #fff !important;
    box-shadow: none !important;
    text-shadow: none !important;
}

.logo, .vignette {
    will-change: opacity, transform;
}

@media (max-width: 700px) {
    .main-navbar {
        height: 4em;
        padding: 0 0.5em;
    }
    .navbar-logo img {
        height: 4em;
    }
    .navbar-links .nav-link {
        font-size: 1.5em;
        padding: 0.4em 0.8em;
        
    }
}
.sec {
    width: 100%;
    min-height: 100vh; 
    overflow: auto;
}

.sec1 {
    background-color: red;
    width: 100%;
    min-height: 100vh;
    top: 0;
    left: 0;
    z-index: 1;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sec1::after {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    pointer-events: none;
    z-index: 1;
    background: radial-gradient(ellipse at center, rgba(0,0,0,0) 60%, rgba(0,0,0,0.4) 100%);
}
.sec1 img.bg {
 position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    object-fit: cover;
    animation: moveLeft 20s ease-in-out infinite alternate-reverse;
    filter: blur(3px);
}

@keyframes moveLeft {
    0% {
        left: 0;
    }
    100% {
        left: -52.76%;
    }
}

.sec1 .logo {
    position: relative;
    z-index: 1;
    width: 30em;
    filter: drop-shadow(0 0 32px #fff) drop-shadow(0 0 64px #ffb300);
}

.sec1 {
    align-items: center;
    justify-content: center;
}

.sec2 {
    z-index: 2;
    position: relative;
    min-height: 100vh;
    background-color: #fff;
}

.vignette {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    pointer-events: none;
    z-index: 2;
    background: radial-gradient(ellipse at center, rgba(0,0,0,0) 50%, rgba(0,0,0,0.0) 100%);
    opacity: 0.7;
    transition: opacity 0.2s, transform 0.2s;
}

@media (min-width: 1200px) {
    .main-navbar {
        height: 68px;
        padding: 0 2.5em;
    }
}




.sec2 .container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 60%;
}

.sec2 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.sec2 {
    font-size: 200%;
}

.sec2 .container h1{
    font-size: 600%;
    padding: 0;
    margin: 0;
    box-shadow: 2px 10px 24px 0 rgba(0,0,0,0.1), 0 0 0 0 #3a0d0d;
    width: 100%;
    text-align: center;
    z-index: 10;
}

.sec2 .container p{
    margin: 0;
    padding: 0;
}

.sec3 {
    height: 100vh;
    background-color: transparent;
}

.hanen {
    position: fixed;
    z-index: -1;
    display: none;
}

.sec3 h1{
    height: 100%;
    position: fixed;
    color: black;
    text-align: center;
    z-index: 10;
    ;

}

.trans {
    position: fixed;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
     background: #833AB4;
    background: linear-gradient(36deg,rgba(131, 58, 180, 1) 0%, rgba(253, 29, 29, 1) 0%, rgba(252, 176, 69, 1) 100%);
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 0;
}

.trans h1{
      font-family: "Rowdies", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: white;
  font-size: 15em;
}

.sec4 {
    z-index: 2;
    background-color: white;
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    padding-top: 10em;
    overflow: hidden;
    width: 100vw;
    padding-bottom: 5em;
}

.kontener {
    display: flex;
    width: 98%;
    flex-direction: row-reverse;
}
.sec4 .right {
    width: 40%;
}

.sec4 .left {
    width: 60%;
}

.sec4 .kontener .left {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.sec4 .kontener .right{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.sec4 .kontener .left .slogan {
  font-family: "Heathergreen", sans-serif;
  font-weight: 500;
  font-style: bold;
  font-size: 15em;
  padding: 0;
  margin: 0;
  display: inline-block;
  line-height: 0.8;
}

.sec4 .kontener .left .slog-2 {
    font-size: 16.95em;
}

.sec4 .kontener .left img {
    position: absolute;
    width: 30em;
    transform: translateY(-40px);
}

.sec4 .kontener .right .judul {
    font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 10em;
}

.sec4 .kontener .right .cot {
    width: 90%;
    padding: 0;
    margin: 0;
}

.kontener-2 {
    width: 95%;
    display: flex;
    align-items: row;
    margin-top: 10em;
}

.sec4 .kontener-2 .left {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-left: 3em;
    margin-right: 3em
}

.sec4 .kontener-2 .right{
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-right: 5em;
}

.sec4 p{
    font-size: 150%;
}

.sec4 .kontener-2 .right .slogan {
      font-family: "Heathergreen", sans-serif;
  font-weight: 500;
  font-style: bold;
  font-size: 15em;
  padding: 0;
  margin: 0;
  display: inline-block;
  line-height: 0.8;
  width: 100%;
}

.sec4 .kontener-2 .right .slog-1 {
    text-align: start;
}




.sec4 .kontener-2 .right .slog-2 {
    text-align: center;
    z-index: 10;
    opacity: 100%;
    color: transparent;
  background-color: transparent;
  text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}
.sec4 .kontener-2 .right .slog-3 {
    text-align: end;
}


.sec4 .kontener-2 .left .judul {
     font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 10em;
}

.sec4 .kontener-2 .right img {
    position: absolute;
    width: 30em;
    transform: rotate(-15deg) translateY(20px);
    width: 33em;
}

.sec4 .slogan {
    opacity: 90%;
}

.sec5 {
    background-color: #030303;
    height: 100vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sec5 .kontener {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
}

.sec5 .kontener .title {
    font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 8em;
  color: white;
  width: 100%;
  text-align: center;
  margin-top: 1em;
}

.sec5 .kontener .icon {
    width: 30%;
    display: flex;
    justify-content: center;
    z-index: 10 ;
}

.sec5 .kontener .icon .wa {
    width: 5%;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.sec5 .kontener .icon .ig {
   width: 5%;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.sec5 .kontener .icon img {
    width: 80%;
}

.sec5 .kontener .icon .ig {
    width: 30%;
}

.sec5 .kontener .icon .wa {
    width: 30%;
}

.sec5 .kontener .icon img {
    width: 50%;
}

.sec5 .kontener .icon p {
    font-family: "Heathergreen", "sans-serif";
    font-size: 150%;
    color: white;
    margin: 0;
    font-weight: 0.5px;
    display: none;
}

.sec5 .kontener .icon a {
    display: flex;
    justify-content: center;
    width: 40%;
    background-color: #282828;
    border-radius: 30%;
    padding: 1em    ;
}

.sec5 .kontener .icon a img{
    width: 80%;
}


.wave {
    position: absolute;
    z-index: 0;
    width: 100%;
    top: 0;
    aspect-ratio: 16/9;
    background-position: center;
    background-size: cover;
    background-image: url(assets/layered-waves-haikei.svg);
    height: 100vh;
}



