/* Animations CSS */

/* Base State (Hidden) */
.t-fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.t-fade-in {
    opacity: 0;
    transition: opacity 1s ease-out;
}

.t-scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

/* Active State (Visible) */
.t-visible {
    opacity: 1 !important;
    transform: translateY(0) scale(1) !important;
}

/* Stagger Delays */
.d-100 {
    transition-delay: 0.1s;
}

.d-200 {
    transition-delay: 0.2s;
}

.d-300 {
    transition-delay: 0.3s;
}

.d-400 {
    transition-delay: 0.4s;
}

/* Sticky Header Scrolled State */
.header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    height: 70px;
    /* Shrink slightly */
    transition: all 0.3s ease;
}

.header.scrolled .logo img {
    height: 40px !important;
    /* Scale down logo */
    transition: height 0.3s ease;
}


/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: -100%;
    left: 20px;
    right: 20px;
    background: var(--color-black);
    color: var(--color-white);
    padding: 20px;
    border-radius: 12px;
    z-index: 9999;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: bottom 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-banner.show {
    bottom: 20px;
}

.cookie-text p {
    margin: 0;
    font-size: 0.9rem;
    color: #ccc;
}

.cookie-actions {
    display: flex;
    gap: 10px;
}

@media (max-width: 768px) {
    .cookie-banner {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}