/* ============ CSS VARIABLES ============ */
:root {
    --hot-pink: #ff5fa2;
    --secondary-pink: #ff8ec4;
    --light-pink: #ffe2f1;
    --navy-black: #0e0e18;
    --white: #ffffff;
    --gray-text: #6b7280;
    --font-poppins: 'Poppins', sans-serif;
    --font-inter: 'Inter', sans-serif;
    --font-cursive: 'Pacifico', cursive;
}

/* ============ RESET & BASE ============ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-inter);
    /* Soft peach → pink gradient base under blobs */
    background:
        radial-gradient(circle at top left, #ffddc0 0, rgba(255, 221, 192, 0.55) 35%, transparent 65%),
        radial-gradient(circle at bottom right, #ffc9de 0, rgba(255, 201, 222, 0.45) 35%, transparent 65%),
        linear-gradient(180deg, #ffe2c4 0%, #ffd0d9 45%, #ffe6f0 100%);
    color: var(--navy-black);
    min-height: 100vh;
    overflow-x: hidden;
}

/* ============ AURA BLOBS BACKGROUND ============ */
.aura-layer {
    position: fixed;
    inset: 0;
    overflow: hidden;
    z-index: -1;
    pointer-events: none;
}

.blob {
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    /* Strong blur + radial falloff to avoid visible rings */
    filter: blur(200px);
    opacity: 0.96;
    animation: floatBlob 20s infinite ease-in-out alternate;
}

.blob.peach {
    background: radial-gradient(circle,
        rgba(255, 190, 150, 0.9) 0%,
        rgba(255, 190, 150, 0.5) 45%,
        rgba(255, 190, 150, 0.0) 75%);
    top: 5%;
    left: 10%;
    width: 700px;
    height: 700px;
    animation-duration: 26s;
}

.blob.peach-soft {
    background: radial-gradient(circle,
        rgba(255, 226, 196, 0.75) 0%,
        rgba(255, 226, 196, 0.35) 45%,
        rgba(255, 226, 196, 0.0) 70%);
    top: -5%;
    right: 10%;
    width: 480px;
    height: 480px;
    animation-duration: 15s;
}

.blob.pink {
    background: radial-gradient(circle,
        rgba(255, 181, 212, 0.75) 0%,
        rgba(255, 181, 212, 0.35) 45%,
        rgba(255, 181, 212, 0.0) 70%);
    top: 40%;
    left: 60%;
    width: 500px;
    height: 500px;
    animation-duration: 20s;
}

.blob.purple {
    background: radial-gradient(circle,
        rgba(220, 184, 255, 0.7) 0%,
        rgba(220, 184, 255, 0.3) 45%,
        rgba(220, 184, 255, 0.0) 70%);
    top: 70%;
    left: 20%;
    width: 460px;
    height: 460px;
    animation-duration: 14s;
}

.blob.blush {
    background: radial-gradient(circle,
        rgba(255, 224, 236, 0.8) 0%,
        rgba(255, 224, 236, 0.4) 45%,
        rgba(255, 224, 236, 0.0) 70%);
    bottom: -10%;
    right: -5%;
    width: 430px;
    height: 430px;
    animation-duration: 18s;
}

.blob.rose {
    background: radial-gradient(circle,
        rgba(255, 208, 221, 0.8) 0%,
        rgba(255, 208, 221, 0.4) 45%,
        rgba(255, 208, 221, 0.0) 70%);
    top: 55%;
    right: 35%;
    width: 360px;
    height: 360px;
    animation-duration: 14s;
}

/* Extra soft blobs around corners */
.blob.coral-corner {
    background: radial-gradient(circle,
        rgba(255, 215, 200, 0.8) 0%,
        rgba(255, 215, 200, 0.4) 45%,
        rgba(255, 215, 200, 0.0) 70%);
    top: -15%;
    left: -10%;
    width: 340px;
    height: 340px;
    animation-duration: 15s;
}

.blob.peach-corner {
    background: radial-gradient(circle,
        rgba(255, 227, 207, 0.8) 0%,
        rgba(255, 227, 207, 0.4) 45%,
        rgba(255, 227, 207, 0.0) 70%);
    bottom: -15%;
    left: -8%;
    width: 400px;
    height: 400px;
    animation-duration: 20s;
}

.blob.pink-corner {
    background: radial-gradient(circle,
        rgba(255, 217, 240, 0.8) 0%,
        rgba(255, 217, 240, 0.4) 45%,
        rgba(255, 217, 240, 0.0) 70%);
    top: -12%;
    right: -12%;
    width: 320px;
    height: 320px;
    animation-duration: 15s;
}

/* Extra floating blobs for depth */
.blob.sunkiss {
    background: radial-gradient(circle,
        rgba(255, 231, 204, 0.75) 0%,
        rgba(255, 231, 204, 0.35) 45%,
        rgba(255, 231, 204, 0.0) 70%);
    top: 25%;
    right: -5%;
    width: 520px;
    height: 520px;
    animation-duration: 17s;
}

.blob.mist {
    background: radial-gradient(circle,
        rgba(255, 232, 240, 0.8) 0%,
        rgba(255, 232, 240, 0.4) 45%,
        rgba(255, 232, 240, 0.0) 70%);
    bottom: 25%;
    left: 55%;
    width: 360px;
    height: 360px;
    animation-duration: 12s;
}

/* New bottom-left peachy blob */
.blob.peach-bottom-left {
    background: radial-gradient(circle,
        rgba(255, 210, 184, 0.8) 0%,
        rgba(255, 210, 184, 0.4) 45%,
        rgba(255, 210, 184, 0.0) 70%);
    bottom: 5%;
    left: 5%;
    width: 380px;
    height: 380px;
    animation-duration: 18s;
}

@keyframes floatBlob {
    0% { transform: translate(0,0) rotate(0deg) scale(1); }
    25% { transform: translate(50px, -30px) rotate(5deg) scale(1.05); }
    50% { transform: translate(-30px, 40px) rotate(-4deg) scale(1.08); }
    75% { transform: translate(40px, 20px) rotate(3deg) scale(1.03); }
    100% { transform: translate(-20px, -50px) rotate(-6deg) scale(1); }
}



/* ============ NAVBAR ============ */
.navbar {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 8px 20px rgba(255, 95, 162, 0.1);
    border-bottom: none;
    border-radius: 1rem;
    margin: 1rem 2rem 0 2rem;
    padding: 1rem 2rem;
    position: relative;
    z-index: 100;
}



.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: var(--font-cursive);
    font-size: 1.8rem;
    background: linear-gradient(135deg, var(--hot-pink), #c084fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    font-family: var(--font-poppins);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--navy-black);
    text-decoration: none;
    transition: color 0.2s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--hot-pink);
    transition: width 0.2s ease;
    border-radius: 2px;
}

.nav-links a:hover {
    color: var(--hot-pink);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a.active {
    color: var(--hot-pink);
}

.nav-links a.active::after {
    width: 100%;
}

.sign-in-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.25rem;
    background: var(--white);
    border: 1px solid #e5e7eb;
    border-radius: 50px;
    font-family: var(--font-poppins);
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--navy-black);
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.sign-in-btn:hover {
    border-color: var(--hot-pink);
    box-shadow: 0 4px 12px rgba(255, 95, 162, 0.15);
    transform: translateY(-1px);
}

.google-icon {
    flex-shrink: 0;
}

/* ============ HERO SECTION ============ */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 0rem 2rem 6rem;
    text-align: center;
}

.tag-pill {
    display: inline-block;
    background: var(--light-pink);
    color: var(--hot-pink);
    font-family: var(--font-poppins);
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    padding: 0.6rem 1.25rem;
    border-radius: 50px;
    margin-bottom: 1.75rem;
}

.hero-heading-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    position: relative;
}

.hero-heading {
    font-family: var(--font-poppins);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.add-to-dashboard-btn {
    display: none !important;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.25rem;
    background: linear-gradient(135deg, var(--hot-pink), #c084fc);
    color: white;
    border: none;
    border-radius: 50px;
    font-family: var(--font-poppins);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 4px 15px rgba(255, 95, 162, 0.3);
}

.add-to-dashboard-btn.visible {
    display: inline-flex !important;
}

.add-to-dashboard-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 95, 162, 0.45);
}

.add-to-dashboard-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.hero-heading .line-1 {
    display: block;
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 600;
    color: var(--navy-black);
    margin-bottom: 0.5rem;
    letter-spacing: 0.02em;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.hero-heading .gradient-text {
    display: block;
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 800;
    background: linear-gradient(135deg, #ff5fa2 0%, #ff82c6 40%, #e879f9 70%, #c084fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.15;
    filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.15)) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.hero-heading .line-2 {
    display: block;
    font-size: clamp(2.5rem, 5.5vw, 4rem);
    font-weight: 800;
    color: var(--hot-pink);
}


/* Search */
.search-container {
    width: 100%;
    max-width: 580px;
    margin-bottom: 1.25rem;
}

.search-bar {
    display: flex;
    align-items: center;
    background: var(--white);
    border-radius: 60px;
    padding: 0.5rem 0.5rem 0.5rem 1.5rem;
    box-shadow:
        0 18px 45px rgba(255, 135, 180, 0.28),
        0 0 0 1px rgba(255, 255, 255, 0.16);
    transition: all 0.2s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
}

.search-bar:focus-within {
    border-color: rgba(255, 129, 186, 0.7);
    box-shadow:
        0 22px 55px rgba(255, 135, 190, 0.38),
        0 0 0 1px rgba(255, 255, 255, 0.28);
    transform: scale(1.03) translateY(-1px);
}

.instagram-icon {
    flex-shrink: 0;
    margin-right: 0.75rem;
}

.search-input {
    flex: 1;
    border: none;
    outline: none;
    font-family: var(--font-poppins);
    font-size: 1.05rem;
    color: var(--navy-black);
    background: transparent;
    padding: 0.75rem 0;
}

.search-input::placeholder {
    color: #9ca3af;
}

.reveal-btn {
    padding: 0.9rem 1.75rem;
    background: linear-gradient(135deg, var(--hot-pink), #ff82c6);
    color: var(--white);
    font-family: var(--font-poppins);
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.35),
        0 10px 30px rgba(255, 95, 162, 0.55),
        0 0 25px rgba(255, 175, 210, 0.65);
    position: relative;
    overflow: hidden;
}

.reveal-btn:hover {
    background: linear-gradient(135deg, #ff4d94, var(--hot-pink));
    transform: translateY(-2px) scale(1.02);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.5),
        0 14px 38px rgba(255, 95, 162, 0.7),
        0 0 35px rgba(255, 190, 220, 0.9);
}

.reveal-btn:active {
    transform: translateY(0);
}

.helper-text {
    font-family: var(--font-inter);
    font-size: 0.9rem;
    color: var(--gray-text);
    margin-bottom: 2.5rem;
}

/* Stats row under search */
.stats-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.stats-text {
    font-size: 0.9rem;
    color: var(--gray-text);
}

.stats-text strong {
    color: var(--navy-black);
}

/* Feature chips */
.features-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 0.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(255, 95, 162, 0.08);
    font-family: var(--font-poppins);
    font-size: 0.85rem;
}

.feature-icon {
    color: var(--hot-pink);
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .navbar {
        padding: 0.75rem 1.25rem;
    }

    .nav-links {
        display: none;
    }

    .hero {
        padding: 0rem 1.5rem 3rem;
    }

    .features-row {
        flex-direction: column;
        gap: 0.75rem;
    }

    .stats-row {
        flex-direction: column;
        align-items: flex-start;
    }
}
