html, body {
    font-size: 14px;
    margin: 0;
    padding: 0;
    height: 100%;
    background-color: #faf7f2; /* fallback */
}

:root {
    --nav-height: 100px; /* adjust based on your header */

    .grecaptcha-badge
    {
        width: 70px !important;
        overflow: hidden !important;
        transition: all 0.3s ease !important;
        left: 4px !important;
}




 @media (min-width: 768px) {
        html {
            font-size: 16px;
        }
    }

    .btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.animate-fadeIn {
    animation: fadeIn 0.2s ease-out;
}

/* ---------- FESTIVAL RIBBON ---------- */
.ribbon {
    position: absolute;
    top: 18px;
    right: -40px;
    transform: rotate(45deg);
    background: linear-gradient(45deg,#facc15,#f59e0b);
    color: #7f1d1d;
    font-weight: bold;
    font-size: 12px;
    padding: 6px 50px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    letter-spacing: 1px;
    z-index: 20;
}

/* ---------- HOVER LIFT ---------- */

.event-card {
    transition: all .35s ease;
}

    .event-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    }

/* ---------- FEATURED GLOW ---------- */

@keyframes templeGlow {
    0% {
        box-shadow: 0 0 0 rgba(250,204,21,0.2);
    }

    50% {
        box-shadow: 0 0 30px rgba(250,204,21,0.6);
    }

    100% {
        box-shadow: 0 0 0 rgba(250,204,21,0.2);
    }
}

.featured-glow {
    animation: templeGlow 3s infinite;
}
