/**
 * Nett Advanced Heading Widget Styles
 */

/* Wrapper */
.nett-heading-wrapper {
    padding: 15px;
    width: 100%;
    position: relative;
}

/* Container for Watermark Style */
.nett-heading-container {
    position: relative;
    display: inline-block;
}

/* Watermark Text */
.nett-heading-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 6rem;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.03);
    white-space: nowrap;
    z-index: 0;
    text-transform: uppercase;
    letter-spacing: 10px;
    pointer-events: none;
}

/* Subtitle */
.nett-heading-subtitle {
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #3b82f6;
    margin-bottom: 8px;
}

/* Title */
.nett-heading-title {
    position: relative;
    z-index: 1;
    font-size: 3rem;
    font-weight: 700;
    color: #111827;
    line-height: 1.2;
    margin: 0;
}

/* Accent Text */
.nett-heading-accent {
    font-style: italic;
    font-weight: 300;
    color: #6b7280;
}

/* Gradient Style */
.nett-heading-style-gradient .nett-heading-title {
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: -0.05em;
    line-height: 1.1;
}

.nett-heading-gradient {
    display: inline;
}

.nett-heading-description {
    max-width: 500px;
    margin: 16px auto 0;
    color: #6b7280;
    font-size: 1rem;
    line-height: 1.6;
}

/* Separator Style */
.nett-heading-separator {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 16px;
    gap: 15px;
}

.nett-heading-separator-line {
    display: inline-block;
    width: 60px;
    height: 3px;
    background-color: #d97706;
    border-radius: 3px;
}

.nett-heading-separator-text {
    color: #9ca3af;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
}

/* Separator Title Styling */
.nett-heading-style-separator .nett-heading-title {
    font-size: 2.5rem;
}

.nett-heading-style-separator .nett-heading-accent {
    color: #d97706;
    font-style: normal;
    font-weight: inherit;
}

/* Responsive */
@media (max-width: 768px) {
    .nett-heading-watermark {
        font-size: 3rem;
        letter-spacing: 5px;
    }
    
    .nett-heading-title {
        font-size: 2rem;
    }
    
    .nett-heading-style-gradient .nett-heading-title {
        font-size: 2.5rem;
    }
    
    .nett-heading-style-separator .nett-heading-title {
        font-size: 1.75rem;
    }
    
    .nett-heading-separator-line {
        width: 40px;
    }
}
