/* Indika School marketing site — overrides + utilities */

html, body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Hide default details/summary marker */
summary::-webkit-details-marker { display: none; }
summary { list-style: none; }

/* Tighter prose for legal pages */
.prose h2 { margin-top: 2.5rem; margin-bottom: 0.75rem; font-family: 'Plus Jakarta Sans', Inter, sans-serif; font-weight: 800; }
.prose p, .prose ul { color: rgb(71 85 105); line-height: 1.75; }

/* Form inputs: nicer default appearance */
input[type='text'],
input[type='email'],
input[type='tel'],
input[type='number'],
select,
textarea {
    background-color: white;
    border: 1px solid rgb(226 232 240);
    border-radius: 0.75rem;
    padding: 0.625rem 0.875rem;
    font-size: 0.95rem;
    line-height: 1.5;
    transition: all 150ms ease;
}

input[type='text']:focus,
input[type='email']:focus,
input[type='tel']:focus,
input[type='number']:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: rgb(63 110 246);
    box-shadow: 0 0 0 4px rgba(63, 110, 246, 0.1);
}

/* Smooth scroll-padding for anchored sections */
html { scroll-padding-top: 5rem; }

/* Subtle text selection color */
::selection { background-color: rgb(63 110 246); color: white; }

/* Force animation defaults to look good */
[class*='animate-fade-up'] { opacity: 0; }
.in-view[class*='animate-fade-up'] { animation: fadeUp .8s ease forwards; }

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Marquee — pause on hover */
.animate-marquee:hover { animation-play-state: paused; }

/* Disable highlight on tap (mobile) */
* { -webkit-tap-highlight-color: transparent; }
