@font-face {
    font-family: 'Noka';
    src: url('fonts/fonnts.com-Noka_Hairline.otf') format('opentype');
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: 'Noka';
    src: url('fonts/fonnts.com-Noka_Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Noka';
    src: url('fonts/fonnts.com-Noka_Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Noka';
    src: url('fonts/fonnts.com-Noka_Semibold.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Noka';
    src: url('fonts/fonnts.com-Noka_Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Noka';
    src: url('fonts/fonnts.com-Noka_Black.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
}

body {
    font-family: 'Noka', sans-serif !important;
    scroll-behavior: smooth;
}

.header-link {
    background: rgba(255, 255, 255, 0.16);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(8.7px);
    -webkit-backdrop-filter: blur(8.7px);
    border: 0px solid rgba(255, 255, 255, 0.15);
}

.header-link:hover {
    background: rgba(255, 255, 255, 0.8);

}

header {
    background-color: transparent;
    transition: background-color 0.3s ease;
}

header.scrolled {
    background-color: rgba(0, 89, 81, 0.95);
    transition: background-color 0.3s ease;
}


.reveal {
    opacity: 0;
    transition: all 0.8s ease-in-out;
}

/* Fade Up */
.fade-up {
    transform: translateY(40px);
}

.fade-up.active {
    opacity: 1;
    transform: translateY(0);
}
.fade-up-footer{
     transform: translateY(80px);
}
.fade-up-footer.active {
    opacity: 1;
    transform: translateY(0);
}

/* Fade Down */
.fade-down {
    transform: translateY(-40px);
}

.fade-down.active {
    opacity: 1;
    transform: translateY(0);
}

/* Fade Left */
.fade-left {
    transform: translateX(-40px);
}

.fade-left.active {
    opacity: 1;
    transform: translateX(0);
}

/* Fade Right */
.fade-right {
    transform: translateX(40px);
}

.fade-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* Zoom In */
.zoom-in {
    transform: scale(0.8);
}

.zoom-in.active {
    opacity: 1;
    transform: scale(1);
}

/* Zoom Out */
.zoom-out {
    transform: scale(1.2);
}

.zoom-out.active {
    opacity: 1;
    transform: scale(1);
}

/* Rotate */
.rotate {
    transform: rotate(-45deg) scale(0.6);
}

.rotate.active {
    opacity: 1;
    transform: rotate(0) scale(1);
}

.rotate-right {
    transform: rotate(45deg) scale(0.6);
}

.rotate-right.active {
    opacity: 1;
    transform: rotate(0) scale(1);
}

/* Stagger children */
.stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-in-out;
}

/* Active state */
.stagger.active > * {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delay */
.stagger.active > *:nth-child(1) {
  transition-delay: 0.1s;
}
.stagger.active > *:nth-child(2) {
  transition-delay: 0.3s;
}
.stagger.active > *:nth-child(3) {
  transition-delay: 0.5s;
}
.stagger.active > *:nth-child(4) {
  transition-delay: 0.7s;
}