/* Modern Welcome Hero Section - Nookies Members Area */

.page-title.center-title {
    background: transparent;
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 30px 0 40px 0;
    border-radius: 0;
}


.page-title .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.title-wrapper {
    text-align: center;
    position: relative;
    z-index: 3;
}

.page-title h1 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 16px 0;
    line-height: 1.3;
    letter-spacing: -0.01em;
    position: relative;
}

.page-title h1::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    border-radius: 2px;
}

.page-title p {
    font-size: 1rem;
    line-height: 1.6;
    color: #64748b;
    margin: 0;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
}

.page-title p strong {
    color: var(--nookies-blue, #2563eb);
    font-weight: 600;
}

/* Floating elements animation */
.page-title::before {
    animation: float 6s ease-in-out infinite;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .page-title.center-title {
        padding: 20px 0 30px 0;
    }
    
    .page-title .container {
        padding: 0 16px;
    }
    
    .page-title h1 {
        font-size: 1.75rem;
        margin-bottom: 12px;
    }
    
    .page-title p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .page-title.center-title {
        padding: 15px 0 25px 0;
    }
    
    .page-title h1 {
        font-size: 1.5rem;
    }
    
    .page-title p {
        font-size: 0.85rem;
    }
}

/* Integration with sidebar layout */
@media (min-width: 1025px) {
    .page-title.center-title {
        margin-left: 0;
        width: 100%;
    }
}

/* Smooth scroll behavior */
.page-title.center-title {
    scroll-margin-top: var(--header-height, 65px);
}