/* ============================================
   Flonira — Launching Soon
   Palette: Blush, Rose Gold, Cream, Deep Plum
   ============================================ */

:root {
    --c-blush: #f5e6e8;
    --c-blush-deep: #ecd0d4;
    --c-cream: #fbf6f1;
    --c-rose: #c98b94;
    --c-rose-gold: #b76e79;
    --c-plum: #4a2c3a;
    --c-plum-soft: #6b3f51;
    --c-gold: #d4a373;
    --c-white: #ffffff;

    --font-serif: 'Cormorant Garamond', 'Georgia', serif;
    --font-sans: 'Montserrat', 'Helvetica Neue', sans-serif;

    --shadow-soft: 0 10px 40px rgba(74, 44, 58, 0.08);
    --shadow-medium: 0 20px 60px rgba(74, 44, 58, 0.12);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    color: var(--c-plum);
    background:
        radial-gradient(ellipse at top left, var(--c-blush) 0%, transparent 55%),
        radial-gradient(ellipse at bottom right, #f3dde0 0%, transparent 60%),
        linear-gradient(180deg, var(--c-cream) 0%, #f9ecee 100%);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
    position: relative;
}

/* ---------- Floating Petals ---------- */
.petals {
    position: fixed;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.petal {
    position: absolute;
    top: -40px;
    width: 18px;
    height: 18px;
    background: linear-gradient(135deg, var(--c-rose) 0%, var(--c-blush-deep) 100%);
    border-radius: 50% 0 50% 50%;
    opacity: 0.55;
    animation: fall linear infinite;
    transform-origin: center;
}

.petal:nth-child(1) { left: 5%;  animation-duration: 18s; animation-delay: 0s;   width: 14px; height: 14px; }
.petal:nth-child(2) { left: 18%; animation-duration: 22s; animation-delay: 3s;   width: 20px; height: 20px; }
.petal:nth-child(3) { left: 32%; animation-duration: 16s; animation-delay: 1s;   width: 12px; height: 12px; }
.petal:nth-child(4) { left: 48%; animation-duration: 25s; animation-delay: 6s;   width: 22px; height: 22px; }
.petal:nth-child(5) { left: 62%; animation-duration: 19s; animation-delay: 2s;   width: 16px; height: 16px; }
.petal:nth-child(6) { left: 75%; animation-duration: 23s; animation-delay: 8s;   width: 18px; height: 18px; }
.petal:nth-child(7) { left: 87%; animation-duration: 17s; animation-delay: 4s;   width: 14px; height: 14px; }
.petal:nth-child(8) { left: 95%; animation-duration: 21s; animation-delay: 10s;  width: 20px; height: 20px; }

@keyframes fall {
    0%   { transform: translateY(-10vh) rotate(0deg);   opacity: 0; }
    10%  { opacity: 0.55; }
    90%  { opacity: 0.45; }
    100% { transform: translateY(110vh) rotate(720deg); opacity: 0; }
}

/* ---------- Layout ---------- */
.container {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
    padding: 3rem 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3.5rem;
}

/* ---------- Brand ---------- */
.brand {
    text-align: center;
    animation: fadeUp 0.9s ease both;
}

.brand__logo {
    width: 110px;
    height: 110px;
    filter: drop-shadow(0 6px 20px rgba(183, 110, 121, 0.25));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-8px); }
}

.brand__name {
    font-family: var(--font-serif);
    font-size: clamp(2.6rem, 5vw, 3.8rem);
    font-weight: 500;
    letter-spacing: 0.35em;
    margin-top: 0.5rem;
    background: linear-gradient(90deg, var(--c-plum) 0%, var(--c-rose-gold) 50%, var(--c-plum) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
}

.brand__tagline {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.05rem;
    color: var(--c-plum-soft);
    letter-spacing: 0.15em;
    margin-top: 0.25rem;
}

/* ---------- Hero ---------- */
.hero {
    text-align: center;
    max-width: 720px;
    animation: fadeUp 1s ease 0.15s both;
}

.hero__title {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    line-height: 1.15;
    color: var(--c-plum);
    display: flex;
    flex-direction: column;
    gap: 0.1em;
}

.hero__accent {
    font-style: italic;
    font-weight: 600;
    background: linear-gradient(90deg, var(--c-rose-gold), var(--c-gold));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero__sub {
    margin-top: 1.5rem;
    font-size: 1.05rem;
    color: var(--c-plum-soft);
    font-weight: 300;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

/* ---------- Countdown ---------- */
.countdown {
    margin-top: 2.5rem;
    display: grid;
    grid-template-columns: repeat(4, minmax(70px, 110px));
    gap: 1rem;
    justify-content: center;
}

.countdown__item {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(183, 110, 121, 0.18);
    border-radius: 14px;
    padding: 1rem 0.5rem;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.countdown__item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.countdown__value {
    display: block;
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 600;
    color: var(--c-rose-gold);
    line-height: 1;
}

.countdown__label {
    display: block;
    margin-top: 0.4rem;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--c-plum-soft);
    font-weight: 500;
}

/* ---------- Products ---------- */
.products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    width: 100%;
    max-width: 960px;
    animation: fadeUp 1s ease 0.3s both;
}

.product-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(183, 110, 121, 0.15);
    border-radius: 18px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.product-card__icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--c-blush), var(--c-blush-deep));
    border-radius: 50%;
    display: grid;
    place-items: center;
    box-shadow: inset 0 2px 8px rgba(255, 255, 255, 0.6), 0 6px 18px rgba(183, 110, 121, 0.18);
}

.product-card__icon img {
    width: 40px;
    height: 40px;
}

.product-card h3 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--c-plum);
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
}

.product-card p {
    font-size: 0.92rem;
    color: var(--c-plum-soft);
    font-weight: 300;
}

/* ---------- Notify ---------- */
.notify {
    width: 100%;
    max-width: 520px;
    text-align: center;
    animation: fadeUp 1s ease 0.45s both;
}

.notify__title {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 500;
    color: var(--c-plum);
}

.notify__sub {
    margin-top: 0.5rem;
    color: var(--c-plum-soft);
    font-weight: 300;
    font-size: 0.95rem;
}

.notify__form {
    margin-top: 1.5rem;
    display: flex;
    gap: 0.6rem;
    background: rgba(255, 255, 255, 0.85);
    padding: 0.4rem;
    border-radius: 999px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(183, 110, 121, 0.18);
}

.notify__form input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    padding: 0.85rem 1.2rem;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--c-plum);
}

.notify__form input::placeholder {
    color: #b09aa1;
}

.notify__form button {
    border: none;
    background: linear-gradient(135deg, var(--c-rose-gold), var(--c-plum));
    color: var(--c-white);
    padding: 0.85rem 1.6rem;
    border-radius: 999px;
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.notify__form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(183, 110, 121, 0.4);
    filter: brightness(1.05);
}

.notify__form button:active {
    transform: translateY(0);
}

.notify__msg {
    margin-top: 1rem;
    min-height: 1.2em;
    font-size: 0.9rem;
    color: var(--c-rose-gold);
    font-weight: 500;
}

/* ---------- Footer ---------- */
.footer {
    text-align: center;
    margin-top: 1rem;
    padding-bottom: 1rem;
    animation: fadeUp 1s ease 0.6s both;
}

.socials {
    display: flex;
    gap: 0.8rem;
    justify-content: center;
    margin-bottom: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.7);
    color: var(--c-rose-gold);
    border: 1px solid rgba(183, 110, 121, 0.2);
    text-decoration: none;
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.social-link:hover {
    transform: translateY(-3px);
    background: var(--c-rose-gold);
    color: var(--c-white);
}

.footer__copy {
    font-size: 0.8rem;
    color: var(--c-plum-soft);
    letter-spacing: 0.08em;
}

/* ---------- Animations ---------- */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ---------- Responsive ---------- */
@media (max-width: 600px) {
    .container { padding: 2rem 1rem 1.5rem; gap: 2.5rem; }
    .brand__logo { width: 90px; height: 90px; }
    .countdown { grid-template-columns: repeat(4, 1fr); gap: 0.5rem; }
    .countdown__item { padding: 0.8rem 0.3rem; }
    .countdown__label { font-size: 0.6rem; }
    .notify__form { flex-direction: column; border-radius: 18px; padding: 0.6rem; }
    .notify__form button { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
    }
}
