/* Hero Section Styling */
.hero-section {
    background: 
        linear-gradient(135deg, rgba(13, 110, 253, 0.85) 0%, rgba(10, 88, 202, 0.9) 100%),
        url('../images/backgrounds/hero-background.jpg') center/cover no-repeat;
    min-height: 100vh;
    padding: 100px 0 120px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-right: 20px;
}

.hero-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.hero-image {
    position: relative;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: float 6s ease-in-out infinite;
}

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

.hero-buttons .btn {
    padding: 12px 24px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.hero-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.hero-buttons .btn-danger {
    background-color: #dc3545;
    border-color: #dc3545;
}

.hero-buttons .btn-danger:hover {
    background-color: #c82333;
    border-color: #bd2130;
}

.social-icons a {
    transition: all 0.3s ease;
    opacity: 0.8;
}

.social-icons a:hover {
    opacity: 1;
    transform: translateY(-3px);
}

.hero-shape-bottom {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    z-index: 1;
    line-height: 0;
}

/* Floating animation for profile image */
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .hero-section {
        padding: 80px 0 100px;
        min-height: auto;
    }
    
    .hero-image {
        width: 280px;
        height: 280px;
        margin-top: 30px;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        text-align: center;
        padding: 60px 0 80px;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .hero-image {
        width: 240px;
        height: 240px;
    }
    
    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 575.98px) {
    .hero-section {
        padding: 40px 0 60px;
    }
    
    h1.display-4 {
        font-size: 2.5rem;
    }
    
    .hero-image {
        width: 200px;
        height: 200px;
    }
}
