/* FAYMURE - Character & Decorative Elements */

/* Decorative Ornamental Dividers */
.decorative-divider {
    text-align: center;
    margin: 60px 0;
    position: relative;
    padding: 20px 0;
}

.decorative-divider::before,
.decorative-divider::after {
    content: '◆';
    color: var(--accent-color);
    font-size: 14px;
    margin: 0 15px;
    opacity: 0.5;
    vertical-align: middle;
}

.decorative-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

/* Elegant Quote Marks */
.elegant-quote {
    position: relative;
    padding: 0 50px;
    font-style: italic;
}

.elegant-quote::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 60px;
    color: var(--accent-color);
    opacity: 0.3;
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.elegant-quote::after {
    content: '"';
    position: absolute;
    right: 0;
    bottom: -30px;
    font-size: 60px;
    color: var(--accent-color);
    opacity: 0.3;
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

/* Premium Badge/Seal */
.premium-badge {
    display: inline-block;
    padding: 8px 20px;
    border: 2px solid var(--accent-color);
    color: var(--primary-color);
    font-family: 'Cinzel', serif;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    background: rgba(201,169,106,0.05);
}

.premium-badge::before,
.premium-badge::after {
    content: '◆';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 8px;
    color: var(--accent-color);
}

.premium-badge::before {
    left: 8px;
}

.premium-badge::after {
    right: 8px;
}

/* Elegant Underline Accent */
.elegant-underline {
    position: relative;
    display: inline-block;
    padding-bottom: 8px;
}

.elegant-underline::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--primary-color));
    box-shadow: 0 1px 3px rgba(201,169,97,0.3);
}

/* Decorative Corner Accents */
.decorative-corner {
    position: relative;
    padding: 20px;
}

.decorative-corner::before,
.decorative-corner::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid var(--accent-color);
    opacity: 0.4;
}

.decorative-corner::before {
    top: 0;
    left: 0;
    border-right: none;
    border-bottom: none;
}

.decorative-corner::after {
    bottom: 0;
    right: 0;
    border-left: none;
    border-top: none;
}

/* Premium Section Header */
.premium-section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.premium-section-header h2 {
    font-family: 'Cinzel', serif;
    font-size: 48px;
    color: var(--primary-color);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    padding: 0 40px;
}

.premium-section-header h2::before,
.premium-section-header h2::after {
    content: '◆';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-color);
    font-size: 16px;
    opacity: 0.6;
}

.premium-section-header h2::before {
    left: 0;
}

.premium-section-header h2::after {
    right: 0;
}

.premium-section-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold-accent), transparent);
}

/* Elegant List Styling */
.elegant-list {
    list-style: none;
    padding-left: 0;
}

.elegant-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    font-family: 'Lora', serif;
    line-height: 1.8;
}

.elegant-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 18px;
    top: 0;
    font-weight: 300;
}

/* Premium Card Accent */
.premium-card-accent {
    position: relative;
}

.premium-card-accent::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color), var(--accent-color));
}

/* Ornamental Initial */
.ornamental-initial {
    font-family: 'Cinzel', serif;
    font-size: 72px;
    line-height: 1;
    color: var(--primary-color);
    float: left;
    margin-right: 10px;
    margin-top: 5px;
    opacity: 0.3;
}

/* Elegant Separator Line */
.elegant-separator {
    text-align: center;
    margin: 40px 0;
    position: relative;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}

.elegant-separator::before {
    content: '◆';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--background-color);
    padding: 0 15px;
    color: var(--accent-color);
    font-size: 12px;
}

