/* Hero Section Styles */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;500;600;700;800&display=swap');

:root {
    --primary: #fff3f0;
    --secondary: #6b3e26;
    --accent: #f8a5c2;
    --text-dark: #4a3728;
    --text-light: #8b6f5c;
    --white: #ffffff;
    --gradient-warm: linear-gradient(135deg, #fff3f0 0%, #ffe4dc 100%);
    --gradient-accent: linear-gradient(135deg, #f8a5c2 0%, #f78fb3 100%);
    --shadow-soft: 0 4px 20px rgba(107, 62, 38, 0.1);
    --shadow-medium: 0 8px 30px rgba(107, 62, 38, 0.15);
    --shadow-strong: 0 15px 50px rgba(107, 62, 38, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', sans-serif;
    background: var(--primary);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Hero Section - Premium Design */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 24px 80px;
    background:
        radial-gradient(ellipse at 20% 20%, rgba(248, 165, 194, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(107, 62, 38, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(255, 243, 240, 1) 0%, rgba(255, 228, 220, 1) 100%);
    position: relative;
    overflow: hidden;
}

/* Decorative Geometric Shapes (Static for performance) */
.hero::before {
    content: '';
    position: absolute;
    top: 8%;
    right: 3%;
    width: 380px;
    height: 380px;
    background: linear-gradient(135deg, rgba(248, 165, 194, 0.6) 0%, rgba(248, 165, 194, 0.3) 100%);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    filter: blur(2px);
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 3%;
    left: 3%;
    width: 320px;
    height: 320px;
    background: linear-gradient(135deg, rgba(107, 62, 38, 0.35) 0%, rgba(107, 62, 38, 0.15) 100%);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    filter: blur(2px);
}

@keyframes morphShape {

    0%,
    100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
        transform: rotate(0deg);
    }

    25% {
        border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
    }

    50% {
        border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
        transform: rotate(5deg);
    }

    75% {
        border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
    }
}

/* Floating Cat Stickers - Premium Blend Effect (Static for performance) */
.hero-floating-stickers {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.floating-sticker {
    position: absolute;
    width: 150px;
    height: auto;
    opacity: 0.1;
    filter: grayscale(30%) sepia(20%) blur(1px);
}

/* Individual Sticker Positions - Scattered for visual interest */
.sticker-1 {
    top: 5%;
    left: 8%;
    width: 130px;
}

.sticker-2 {
    top: 12%;
    right: 8%;
    width: 110px;
    transform: scaleX(-1);
}

.sticker-3 {
    bottom: 25%;
    left: 3%;
    width: 120px;
}

.sticker-4 {
    top: 50%;
    right: 5%;
    width: 140px;
    transform: scaleX(-1);
}

.sticker-5 {
    bottom: 5%;
    right: 18%;
    width: 115px;
}

@keyframes floatSticker {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.08;
    }

    25% {
        transform: translateY(-15px) rotate(2deg);
        opacity: 0.12;
    }

    50% {
        transform: translateY(-8px) rotate(-1deg);
        opacity: 0.1;
    }

    75% {
        transform: translateY(-20px) rotate(1deg);
        opacity: 0.11;
    }
}

/* Hero Container */
.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-content {
    text-align: left;
}

/* Premium Glassmorphism Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--secondary);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 24px rgba(107, 62, 38, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    margin-bottom: 28px;
}

.hero-title {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 20px;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.text-highlight {
    background: linear-gradient(135deg, #e8679a 0%, #f78fb3 50%, #ffa8c5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-subtitle {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    color: var(--text-light);
    margin-bottom: 28px;
    line-height: 1.7;
}

.hero-subtitle strong {
    color: var(--secondary);
    font-weight: 700;
}

/* Hero Features List */
.hero-features {
    list-style: none;
    margin-bottom: 36px;
}

.hero-features li {
    font-size: 1rem;
    color: var(--text-dark);
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

/* Premium Dual CTAs */
.hero-cta-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    border-radius: 60px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.hero-cta.primary {
    background: linear-gradient(135deg, var(--secondary) 0%, #5a3420 100%);
    color: var(--white);
    box-shadow: 0 8px 32px rgba(107, 62, 38, 0.3), 0 2px 8px rgba(107, 62, 38, 0.2);
}

.hero-cta.primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-cta.primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 40px rgba(107, 62, 38, 0.4), 0 4px 12px rgba(107, 62, 38, 0.3);
}

.hero-cta.primary:hover::before {
    opacity: 1;
}

/* Large CTA variant */
.hero-cta.large {
    padding: 22px 48px;
    font-size: 1.15rem;
    letter-spacing: 0.3px;
}

.hero-cta.secondary {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--secondary);
    border: 2px solid rgba(107, 62, 38, 0.2);
    box-shadow: 0 4px 20px rgba(107, 62, 38, 0.08);
}

.hero-cta.secondary:hover {
    background: var(--secondary);
    color: var(--white);
    border-color: var(--secondary);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(107, 62, 38, 0.25);
}

/* Social Proof */
.hero-social-proof {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 16px 24px;
    border-radius: 60px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 24px rgba(107, 62, 38, 0.06);
    width: fit-content;
}

.social-proof-avatars {
    display: flex;
}

.social-proof-avatars .avatar {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #fff 0%, #fef5f3 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    margin-left: -8px;
    border: 2px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 8px rgba(107, 62, 38, 0.1);
}

.social-proof-avatars .avatar:first-child {
    margin-left: 0;
}

.social-proof-text {
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 500;
}

.social-proof-text strong {
    color: var(--secondary);
    font-weight: 800;
}

/* Hero Image */
.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-cat-image {
    width: 100%;
    max-width: 380px;
    height: auto;
    filter: drop-shadow(0 30px 60px rgba(107, 62, 38, 0.25));
}

@keyframes catFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    25% {
        transform: translateY(-10px) rotate(1deg);
    }

    75% {
        transform: translateY(-5px) rotate(-1deg);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-image-badge {
    position: absolute;
    bottom: 30px;
    right: 10px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 14px 22px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 8px 32px rgba(107, 62, 38, 0.12), 0 2px 8px rgba(107, 62, 38, 0.06);
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.hero-image-badge .badge-icon {
    font-size: 1.3rem;
}

.hero-image-badge .badge-text {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--secondary);
    letter-spacing: 0.3px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Hero */
@media (max-width: 900px) {
    .hero {
        min-height: auto;
        padding: 60px 16px 40px;
    }

    /* Mobile: Decorative shapes - larger and more visible */
    .hero::before {
        width: 220px;
        height: 220px;
        top: 0;
        right: -50px;
        background: linear-gradient(135deg, rgba(248, 165, 194, 0.7) 0%, rgba(248, 165, 194, 0.4) 100%);
    }

    .hero::after {
        width: 180px;
        height: 180px;
        bottom: 2%;
        left: -60px;
        background: linear-gradient(135deg, rgba(107, 62, 38, 0.4) 0%, rgba(248, 165, 194, 0.3) 100%);
    }

    /* Mobile: Cat stickers - larger and more visible */
    .floating-sticker {
        width: 80px;
        opacity: 0.12;
        filter: grayscale(30%) sepia(20%) blur(1px);
    }

    .sticker-1 {
        top: 2%;
        left: 2%;
        width: 70px;
    }

    .sticker-2 {
        top: 8%;
        right: 3%;
        width: 60px;
    }

    .sticker-3 {
        bottom: 30%;
        left: 0;
        width: 75px;
    }

    .sticker-4 {
        top: 40%;
        right: 0;
        width: 70px;
    }

    .sticker-5 {
        bottom: 3%;
        right: 8%;
        width: 65px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }

    .hero-content {
        text-align: center;
        order: 2;
    }

    .hero-image {
        order: 1;
    }

    .hero-cat-image {
        max-width: 160px;
    }

    .hero-badge {
        padding: 8px 16px;
        font-size: 11px;
        margin-bottom: 12px;
    }

    .hero-title {
        font-size: 1.4rem;
        margin-bottom: 10px;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 14px;
        line-height: 1.5;
    }

    .hero-features {
        display: inline-block;
        text-align: left;
        margin-bottom: 16px;
    }

    .hero-features li {
        font-size: 0.85rem;
        padding: 4px 0;
    }

    .hero-cta-group {
        justify-content: center;
        gap: 10px;
        margin-bottom: 16px;
    }

    .hero-cta {
        padding: 12px 20px;
        font-size: 0.85rem;
    }

    .hero-social-proof {
        justify-content: center;
        padding: 10px 16px;
        gap: 10px;
        margin: 0 auto;
    }

    .social-proof-avatars .avatar {
        width: 26px;
        height: 26px;
        font-size: 0.75rem;
    }

    .social-proof-text {
        font-size: 0.8rem;
    }

    .hero-image-badge {
        padding: 8px 12px;
        bottom: 5px;
        right: 50%;
        transform: translateX(50%);
    }

    .hero-image-badge .badge-icon {
        font-size: 0.9rem;
    }

    .hero-image-badge .badge-text {
        font-size: 0.7rem;
    }
}

/* Extra small screens */
@media (max-width: 400px) {
    .hero::before {
        width: 100px;
        height: 100px;
        opacity: 0.4;
    }

    .hero::after {
        width: 80px;
        height: 80px;
        opacity: 0.3;
    }

    .floating-icon {
        font-size: 0.85rem;
        opacity: 0.1;
    }
}