/* Hero Section Mobile-First Redesign */
.hero-journey-redesign {
    background: linear-gradient(135deg, #FFF8F0 0%, #FFE5D4 50%, #E0F7FA 100%);
    min-height: 100vh;
    min-height: 100dvh;
    padding: clamp(2rem, 5vw, 4rem) 0;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* 3D Parallax Paw Print Background */
.paw-parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.paw-print {
    position: absolute;
    opacity: 0.05;
    animation: pawFloat 8s ease-in-out infinite;
}

.paw-print:nth-child(1) {
    top: 10%;
    left: 10%;
    font-size: 3rem;
    animation-delay: 0s;
}

.paw-print:nth-child(2) {
    top: 60%;
    right: 15%;
    font-size: 2rem;
    animation-delay: 2s;
}

.paw-print:nth-child(3) {
    bottom: 20%;
    left: 20%;
    font-size: 2.5rem;
    animation-delay: 4s;
}

@keyframes pawFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg) scale(1);
    }
    50% {
        transform: translateY(-20px) rotate(5deg) scale(1.1);
    }
}

/* Hero Container */
.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 75rem;
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 2rem);
    box-sizing: border-box;
}

/* Hero Content Layout - Mobile First */
.hero-content-layout {
    display: flex;
    flex-direction: column;
    gap: clamp(2rem, 6vw, 4rem);
    align-items: center;
    text-align: center;
}

/* Desktop 2-Column Layout */
@media (min-width: 64rem) {
    .hero-content-layout {
        flex-direction: row;
        text-align: left;
        align-items: center;
    }
}

/* Hero Text Side */
.hero-text-side {
    flex: 1;
    width: 100%;
    max-width: 100%;
}

/* Hero Image Side */
.hero-image-side {
    flex: 1;
    width: 100%;
    max-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Mobile: Image First, Text Second */
@media (max-width: 63.99rem) {
    .hero-content-layout {
        flex-direction: column;
    }
    
    .hero-image-side {
        order: 1;
    }
    
    .hero-text-side {
        order: 2;
    }
}

/* Hero Headline */
.hero-headline {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--text-primary);
    margin-bottom: clamp(1rem, 3vw, 1.5rem);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.hero-tagline {
    font-size: clamp(1.1rem, 4vw, 1.3rem);
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: clamp(2rem, 5vw, 3rem);
    max-width: 32rem;
}

/* Hero CTA Buttons */
.hero-cta-group {
    display: flex;
    flex-direction: column;
    gap: clamp(1rem, 3vw, 1.5rem);
    width: 100%;
    max-width: 25rem;
}

@media (min-width: 30rem) {
    .hero-cta-group {
        flex-direction: row;
        justify-content: center;
    }
}

@media (min-width: 64rem) {
    .hero-cta-group {
        justify-content: flex-start;
    }
}

.hero-btn-primary {
    background: linear-gradient(135deg, #FFCDB2, #FFAB91);
    color: white;
    font-weight: 600;
    min-height: 3rem;
    padding: 1rem 2rem;
    border-radius: 2rem;
    border: none;
    box-shadow: 0 6px 20px rgba(255, 171, 145, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    flex: 1;
    min-width: 10rem;
}

.hero-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.8s ease;
}

.hero-btn-primary:hover::before {
    left: 100%;
}

.hero-btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 25px rgba(255, 171, 145, 0.4);
}

.hero-btn-secondary {
    background: linear-gradient(135deg, #B2DFDB, #DCEDC1);
    color: var(--text-primary);
    border: 2px solid rgba(178, 223, 219, 0.5);
    font-weight: 500;
    min-height: 3rem;
    padding: 1rem 2rem;
    border-radius: 2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex: 1;
    min-width: 10rem;
}

.hero-btn-secondary:hover {
    background: linear-gradient(135deg, #DCEDC1, #B2DFDB);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(178, 223, 219, 0.3);
}

/* Hero Image/Video Frame */
.hero-media-frame {
    width: 100%;
    max-width: 28rem;
    height: 20rem;
    position: relative;
    border-radius: 2rem;
    overflow: hidden;
    background: linear-gradient(135deg, #FFE5D4, #FFCDB2);
    box-shadow: 0 20px 40px rgba(255, 205, 178, 0.3);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.3s ease;
}

@media (min-width: 48rem) {
    .hero-media-frame {
        height: 24rem;
    }
}

.hero-media-frame:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

/* Subtle Looping Pet Video/Animation */
.hero-pet-animation {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent);
    border-radius: 50%;
    animation: petPulse 3s ease-in-out infinite;
}

@keyframes petPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 1;
    }
}

/* Floating Elements */
.hero-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-heart,
.floating-paw {
    position: absolute;
    opacity: 0.1;
    animation: floatElement 6s ease-in-out infinite;
}

.floating-heart {
    color: #FF6B9D;
    font-size: 1.5rem;
}

.floating-paw {
    color: #FFAB91;
    font-size: 1.2rem;
}

.floating-heart:nth-child(1) {
    top: 20%;
    left: 5%;
    animation-delay: 0s;
}

.floating-heart:nth-child(2) {
    top: 70%;
    right: 10%;
    animation-delay: 3s;
}

.floating-paw:nth-child(3) {
    top: 40%;
    right: 5%;
    animation-delay: 1.5s;
}

.floating-paw:nth-child(4) {
    bottom: 30%;
    left: 15%;
    animation-delay: 4.5s;
}

@keyframes floatElement {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.1;
    }
    50% {
        transform: translateY(-15px) rotate(10deg);
        opacity: 0.2;
    }
}

/* Zoom Safety for Hero Section */
@media (min-resolution: 150dpi) {
    .hero-journey-redesign {
        background-attachment: scroll; /* Prevent parallax issues on zoom */
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .hero-btn-primary:active,
    .hero-btn-secondary:active {
        transform: scale(0.95);
    }
    
    .hero-media-frame {
        transform: none; /* Remove 3D effects on touch devices */
    }
}