@font-face {
    font-family: 'Cairo';
    src: url('/fonts/Cairo-ExtraLight.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Cairo';
    src: url('/fonts/Cairo-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Cairo';
    src: url('/fonts/Cairo-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Cairo';
    src: url('/fonts/Cairo-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Cairo';
    src: url('/fonts/Cairo-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Cairo';
    src: url('/fonts/Cairo-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Cairo';
    src: url('/fonts/Cairo-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cairo', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}


.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;
}

.scroll-remove {
    scrollbar-width: none;

    &::-webkit-scrollbar {
        display: none;
    }

    scroll-behavior: smooth;
}


.clip-path-hero {
    clip-path: polygon(0 0, 75% 0, 100% 100%, 0% 100%);
}

.no-scrollbar::-webkit-scrollbar {
    display: none;
}

/* Staggered Vertical Offset */
.meal-card:nth-child(even) {
    margin-top: 60px;
}

.meal-card:nth-child(odd) {
    margin-top: 0px;
}



.tab-btn.active {
    background-color: #16a34a !important;
    color: white !important;
    box-shadow: 0 10px 15px -3px rgba(18, 120, 50, 0.3);
}