:root {
    --c1: #004f49;
    --c2: #c2b582;
    --c3: #f9fafb;
}
@font-face {
    font-family: 'GCK';
    src:url('/Fonts/GCKualineDemo-Regular.woff2') format('woff2'),
        url('/Fonts/GCKualineDemo-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
p {
    font-family: 'GCK', sans-serif;
    font-size: 1rem!important;
    line-height: 1.5!important;
}
h4 {
    font-family: 'GCK', sans-serif;
    font-size: 1.163rem!important;
}
h3 {
    font-family: 'GCK', sans-serif;
    font-size: 1.35rem!important;
}
h2 {
    font-family: 'GCK', sans-serif;
    font-size: 1.569rem!important;
}
h1 {
    font-family: 'GCK', sans-serif;
    font-size: 2.825rem!important;
}
a {
    font-family: 'GCK', sans-serif;
    font-size: 1rem!important;
    text-decoration: none;
}

.hero-bird {
    position: absolute;
    top: 20%;
    right: 10%;
    width: 150px;
    height: 150px;
    opacity: 0.7;
    animation: float 4s ease-in-out infinite;
}

.hero-bird svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 10px 30px rgba(255, 255, 255, 0.314));
}

.hero-bird svg path {
    fill: var(--c2);
    stroke: var(--c2);
    stroke-width: 4;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(5deg); }
}

@media (max-width: 768px) {
    .hero-bird {
        width: 100px;
        height: 100px;
        top: 15%;
        right: 5%;
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.stagger-animation {
    transition-delay: 0.2s;
}

.stagger-animation:nth-child(2) { transition-delay: 0.4s; }
.stagger-animation:nth-child(3) { transition-delay: 0.6s; }
.stagger-animation:nth-child(4) { transition-delay: 0.8s; }
