/* ===== Perfume Tour by Chennai Bioflora — Coming Soon ===== */

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: #FFFFFF;
    background-image:
        radial-gradient(ellipse at top right,   rgba(223, 179, 62, 0.14), transparent 58%),
        radial-gradient(ellipse at bottom left, rgba(223, 179, 62, 0.08), transparent 58%);
    color: #141414;
    -webkit-font-smoothing: antialiased;
}

::selection { background: #DFB33E; color: #0E0B0F; }

/* Gentle entrance for the brand block */
@keyframes riseIn {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: translateY(0); }
}
main img,
main h1,
main p,
main .h-px { animation: riseIn 1s ease-out both; }
main h1    { animation-delay: 0.08s; }
main .h-px { animation-delay: 0.12s; }
main p     { animation-delay: 0.18s; }

@media (prefers-reduced-motion: reduce) {
    main img,
    main h1,
    main p,
    main .h-px { animation: none; }
}
