/* Hero Section Styles */
.hero-section {
    background: linear-gradient(135deg, 
        rgba(248, 180, 203, 0.9) 0%, 
        rgba(245, 230, 211, 0.8) 30%, 
        rgba(232, 164, 184, 0.9) 70%, 
        rgba(250, 247, 242, 0.8) 100%
    );
}

/* Background patterns for beauty salon theme */
.hero-pattern-1 {
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(248, 180, 203, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(232, 164, 184, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(245, 230, 211, 0.2) 0%, transparent 50%);
}

.hero-pattern-2 {
    background-image: 
        linear-gradient(45deg, rgba(248, 180, 203, 0.1) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(232, 164, 184, 0.1) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(245, 230, 211, 0.1) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(250, 247, 242, 0.1) 75%);
    background-size: 60px 60px;
    background-position: 0 0, 0 30px, 30px -30px, -30px 0px;
}

/* Floating animation keyframes */
@keyframes float-gentle {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-10px) rotate(1deg);
    }
    66% {
        transform: translateY(-5px) rotate(-1deg);
    }
}

@keyframes float-reverse {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(15px) rotate(2deg);
    }
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(248, 180, 203, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(248, 180, 203, 0.6);
    }
}

/* Decorative elements */
.floating-element {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
}

.floating-element-1 {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #f8b4cb, #e8a4b8);
    top: 10%;
    left: 10%;
    animation: float-gentle 6s ease-in-out infinite;
}

.floating-element-2 {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #f5e6d3, #faf7f2);
    top: 20%;
    right: 15%;
    animation: float-reverse 8s ease-in-out infinite;
    animation-delay: 2s;
}

.floating-element-3 {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #e8a4b8, #f8b4cb);
    bottom: 20%;
    left: 20%;
    animation: float-gentle 7s ease-in-out infinite;
    animation-delay: 4s;
}

.floating-element-4 {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #faf7f2, #f5e6d3);
    bottom: 30%;
    right: 25%;
    animation: float-reverse 9s ease-in-out infinite;
    animation-delay: 1s;
}

/* Text animations */
.hero-title {
    animation: fadeInUp 1.2s ease-out;
}

.hero-subtitle {
    animation: fadeInUp 1.5s ease-out;
}

.hero-buttons {
    animation: fadeInUp 1.8s ease-out;
}

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

/* Button hover effects */
.hero-btn-primary {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.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.2), transparent);
    transition: left 0.5s;
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
    .floating-element {
        display: none;
    }
    
    .hero-title {
        font-size: 3rem !important;
    }
    
    .hero-subtitle {
        font-size: 1.1rem !important;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem !important;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1rem !important;
        line-height: 1.4;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-btn-primary,
    .hero-btn-secondary {
        width: 100%;
        text-align: center;
        padding: 0.875rem 1.5rem;
    }
}

/* Additional hero enhancements */
.hero-content {
    position: relative;
    z-index: 10;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 5;
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Hero section minimum height */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Enhanced button styles */
.hero-btn-secondary {
    position: relative;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(248, 180, 203, 0.3);
    transition: all 0.3s ease;
}

.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 1);
    border-color: rgba(248, 180, 203, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(248, 180, 203, 0.3);
}