/* CSS untuk Hero Section dan Profil Image - Orange-Pink Version */
.hero-bg {
    background: linear-gradient(135deg, #ff9966 0%, #ff5e62 50%, #ff3a6e 100%);
    /* Alternative options: */
    /* background: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 50%, #fad0c4 100%); */
    /* background: linear-gradient(135deg, #ffafbd 0%, #ffc3a0 100%); */
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* Floating Elements Background */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.floating-elements::before,
.floating-elements::after {
    content: '';
    position: absolute;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.floating-elements::before {
    width: 200px;
    height: 200px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    background: rgba(255, 192, 203, 0.2); /* Light pink */
}

.floating-elements::after {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation-delay: 3s;
    background: rgba(255, 165, 0, 0.2); /* Light orange */
}

/* Salon Decorative Elements */
.salon-decorative,
.salon-decorative-left {
    position: absolute;
    font-size: 3rem;
    opacity: 0.3;
    z-index: 2;
    animation: bounce 2s ease-in-out infinite;
    color: #ff8c66; /* Soft orange-pink */
}

.salon-decorative {
    top: 15%;
    right: 10%;
    animation-delay: 0.5s;
}

.salon-decorative-left {
    top: 70%;
    left: 5%;
    animation-delay: 1s;
}

/* Profile Header Styling */
.profile-header {
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out;
}

/* Profile Image */
.profile-img {
    border-radius: 50% !important;
    border: 5px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.2),
        0 0 0 10px rgba(255, 192, 203, 0.2),
        0 0 0 20px rgba(255, 165, 0, 0.1);
    transition: all 0.3s ease;
    object-fit: cover;
    object-position: center;
    animation: profileGlow 3s ease-in-out infinite alternate;
    aspect-ratio: 1 / 1;
    width: 200px;
    height: 200px;
    min-width: 200px;
    min-height: 200px;
}

.profile-img:hover {
    transform: scale(1.05);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.3),
        0 0 0 15px rgba(255, 192, 203, 0.3),
        0 0 0 25px rgba(255, 165, 0, 0.15);
}

/* Profile Info Styling */
.profile-info h2 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    animation: slideInRight 1s ease-out 0.3s both;
    color: #fff;
}

.profile-info p {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    animation: slideInRight 1s ease-out 0.6s both;
    color: #ffece6;
}

/* Button Styling */
.btn-primary {
    background: linear-gradient(45deg, #ff7b54, #ff3a6e);
    border: none;
    transition: all 0.3s ease;
    transform: translateY(0);
    animation: slideInUp 1s ease-out 0.9s both;
}

.btn-primary:hover {
    background: linear-gradient(45deg, #ff6b45, #ff2a5e);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 58, 110, 0.4);
}

/* Social Media Buttons */
.profile-header + div a:not(.btn-primary) {
    border: 2px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
    color: #fff !important;
}

.profile-header + div a:not(.btn-primary):hover {
    background: rgba(255, 255, 255, 0.95);
    color: #ff3a6e !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 58, 110, 0.3);
}

/* Animations */
@keyframes profileGlow {
    0% { box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.2),
        0 0 0 10px rgba(255, 192, 203, 0.2),
        0 0 0 20px rgba(255, 165, 0, 0.1),
        0 0 20px rgba(255, 120, 80, 0.3); }
    100% { box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.2),
        0 0 0 10px rgba(255, 192, 203, 0.3),
        0 0 0 20px rgba(255, 165, 0, 0.2),
        0 0 30px rgba(255, 90, 90, 0.5); }
}

/* Responsive Design (same as before) */
@media (max-width: 768px) {
    .profile-img {
        width: 150px !important;
        height: 150px !important;
        min-width: 150px !important;
        min-height: 150px !important;
        margin-bottom: 1.5rem;
    }
    
    .salon-decorative,
    .salon-decorative-left {
        font-size: 2rem;
    }
    
    .floating-elements::before {
        width: 100px;
        height: 100px;
    }
    
    .floating-elements::after {
        width: 80px;
        height: 80px;
    }
    
    .profile-info h2 {
        font-size: 2.5rem !important;
    }
    
    .profile-info p {
        font-size: 1.125rem !important;
    }
}

@media (max-width: 480px) {
    .profile-img {
        width: 120px !important;
        height: 120px !important;
        min-width: 120px !important;
        min-height: 120px !important;
    }
    
    .profile-info h2 {
        font-size: 2rem !important;
    }
    
    .hero-bg {
        padding: 3rem 0;
    }
}

/* Keep existing animations (float, bounce, fadeInUp, slideInRight, slideInUp) */