/* Hero Section Styles */
.hero-section {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #FFF8F0 0%, #FCE4EC 50%, #F8BBD9 100%);
    overflow: hidden;
    max-width: 100vw;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.particle {
    position: absolute;
    font-size: 2rem;
    opacity: 0.3;
    animation: particleFloat 15s infinite linear;
    pointer-events: none;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { left: 20%; animation-delay: 2s; }
.particle:nth-child(3) { left: 30%; animation-delay: 4s; }
.particle:nth-child(4) { left: 40%; animation-delay: 6s; }
.particle:nth-child(5) { left: 60%; animation-delay: 8s; }
.particle:nth-child(6) { left: 70%; animation-delay: 10s; }
.particle:nth-child(7) { left: 80%; animation-delay: 12s; }
.particle:nth-child(8) { left: 90%; animation-delay: 14s; }

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-100vh) rotate(360deg);
        opacity: 0;
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(233, 30, 99, 0.15);
    margin: 15px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: calc(100vw - 30px);
}

.hero-decorative-bg {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, var(--light-pink), var(--primary-pink));
    border-radius: 50%;
    opacity: 0.1;
    z-index: -1;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-pink), var(--dark-pink));
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
}

.highlight-text {
    color: var(--primary-pink);
    position: relative;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-pink), var(--light-pink));
    border-radius: 2px;
    animation: underlineGrow 1.5s ease-out;
}

@keyframes underlineGrow {
    0% { width: 0; }
    100% { width: 100%; }
}

.script-text {
    font-family: 'Dancing Script', cursive;
    color: var(--dark-pink);
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
}

.hero-features .feature-item {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(233, 30, 99, 0.1);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--light-pink), var(--primary-pink));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.2);
}

.feature-text {
    flex: 1;
}

.feature-text strong {
    display: block;
    color: var(--dark-pink);
    font-weight: 600;
    margin-bottom: 2px;
}

.feature-text span {
    color: #666;
    font-size: 0.9rem;
}

.hero-buttons .btn {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.hero-buttons .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
    z-index: -1;
}

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

.hero-social-proof {
    display: flex;
    gap: 20px;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(233, 30, 99, 0.1);
}

.social-item {
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
}

.social-item i {
    color: var(--primary-pink);
}

/* Hero Image Section */
.hero-image-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-wrapper {
    position: relative;
    width: 90%;
    height: 80%;
    max-width: 600px;
}

.image-frame {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    transform: rotate(-2deg);
    transition: all 0.3s ease;
}

.image-frame:hover {
    transform: rotate(0deg) scale(1.02);
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Floating Cards */
.floating-card {
    position: absolute;
    background: white;
    padding: 15px 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 10;
    animation: cardFloat 6s ease-in-out infinite;
}

.card-1 {
    top: 15%;
    right: -20px;
    animation-delay: 0s;
}

.card-2 {
    bottom: 25%;
    left: -30px;
    animation-delay: 2s;
}

.card-3 {
    top: 50%;
    right: -25px;
    animation-delay: 4s;
}

@keyframes cardFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

.card-content {
    text-align: center;
    min-width: 80px;
}

.card-content i {
    color: var(--primary-pink);
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.card-content span {
    display: block;
    font-weight: 600;
    color: var(--dark-pink);
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.card-content small {
    color: #666;
    font-size: 0.75rem;
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    font-size: 2.5rem;
    animation: elementFloat 8s ease-in-out infinite;
    opacity: 0.7;
}

.element-1 { top: 10%; left: 10%; animation-delay: 0s; }
.element-2 { top: 20%; right: 15%; animation-delay: 1s; }
.element-3 { bottom: 30%; left: 20%; animation-delay: 2s; }
.element-4 { top: 60%; right: 10%; animation-delay: 3s; }
.element-5 { bottom: 15%; right: 25%; animation-delay: 4s; }

@keyframes elementFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(5deg); }
    66% { transform: translateY(10px) rotate(-5deg); }
}

/* Animations */
.animate-text {
    animation: slideInUp 1s ease-out;
}

.animate-text-delay {
    animation: slideInUp 1s ease-out 0.3s both;
}

.animate-fade-up {
    animation: fadeInUp 1s ease-out both;
}

.animate-slide-right {
    animation: slideInRight 1s ease-out both;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-stats {
        gap: 20px;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .floating-card {
        display: none;
    }

    .image-frame {
        transform: rotate(0deg);
        margin: 20px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-content {
        margin: 15px;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 15px;
    }

    .hero-social-proof {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .floating-element {
        display: none;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }

    .feature-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .stat-number {
        font-size: 1.3rem;
    }
}
