/* This file is deprecated. All home section title styles have been moved to styles.css for better organization. */

/* Home Page Section Title Styles */
.home-section-title-container {
    text-align: center;
    position: relative;
    margin-bottom: 60px;
    padding-top: 20px;
    overflow: visible;
    will-change: transform, opacity;
}

.home-section-title {
    position: relative;
    font-family: 'Baloo 2', sans-serif;
    font-weight: 800;
    font-size: 3rem;
    display: inline-block;
    margin-bottom: 15px;
    color: #2d2d2d;
    background: linear-gradient(45deg, #0099cc, #0080b0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    will-change: transform, opacity;
}

.home-section-title::before {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath fill='%23FFB300' d='M95,50c0,24.85-20.15,45-45,45S5,74.85,5,50S25.15,5,50,5S95,25.15,95,50z'/%3E%3C/svg%3E");
    background-size: contain;
    left: -48px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.5;
}

.home-section-title::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath fill='%2300C3FF' d='M95,50c0,24.85-20.15,45-45,45S5,74.85,5,50S25.15,5,50,5S95,25.15,95,50z'/%3E%3C/svg%3E");
    background-size: contain;
    right: -48px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.5;
}

/* Decorative Elements */
.title-decoration-dot {
    position: absolute;
    border-radius: 50%;
    opacity: 0.7;
    pointer-events: none;
    z-index: 1;
    transform-origin: center center;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease-out;
}

/* Media Queries */
@media (max-width: 768px) {
    .home-section-title {
        font-size: 2.5rem;
    }
    
    .home-section-title::before,
    .home-section-title::after {
        width: 30px;
        height: 30px;
    }
    
    .home-section-title::before {
        left: -36px;
    }
    
    .home-section-title::after {
        right: -36px;
    }
}

@media (max-width: 480px) {
    .home-section-title {
        font-size: 2rem;
    }
    
    .home-section-title::before,
    .home-section-title::after {
        display: none;
    }
}
