/* 
 * EmaBackFee Pages Shortcodes CSS
 * Theme: Premium Gold & Black
 */

:root {
    --ebf-gold: #eeee22;
    --ebf-gold-hover: #ffff33;
    --ebf-dark-bg: #0a0a0a;
    --ebf-card-bg: rgba(255, 255, 255, 0.05);
    --ebf-border-color: rgba(238, 238, 34, 0.2);
    --ebf-text-white: #ffffff;
    --ebf-text-grey: #abb8c3;
    --ebf-font-family: 'Inter', sans-serif;
    --ebf-radius: 20px;
    --ebf-btn-radius: 99px;
}

.ebf-page-container {
    font-family: var(--ebf-font-family);
    color: var(--ebf-text-white);
    line-height: 1.6;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.ebf-section-title {
    color: var(--ebf-gold);
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
}

.ebf-card {
    background: var(--ebf-card-bg);
    border: 1px solid var(--ebf-border-color);
    border-radius: var(--ebf-radius);
    padding: 30px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.ebf-card:hover {
    transform: translateY(-5px);
    border-color: var(--ebf-gold);
}

/* Button Styles */
.ebf-btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: var(--ebf-btn-radius);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.ebf-btn-gold {
    background-color: var(--ebf-gold);
    color: #000;
}

.ebf-btn-gold:hover {
    background-color: var(--ebf-gold-hover);
    box-shadow: 0 0 20px rgba(238, 238, 34, 0.4);
}

.ebf-btn-outline {
    background: transparent;
    border: 1px solid var(--ebf-gold);
    color: var(--ebf-gold);
}

.ebf-btn-outline:hover {
    background: var(--ebf-gold);
    color: #000;
}

/* Grid Layouts */
.ebf-grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.ebf-grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

/* Social Icons */
.ebf-social-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.ebf-social-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--ebf-card-bg);
    border: 1px solid var(--ebf-border-color);
    border-radius: 50%;
    color: var(--ebf-gold);
    font-size: 20px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.ebf-social-item:hover {
    background: var(--ebf-gold);
    color: #000;
    transform: scale(1.1);
}

/* Specific Page styles */
.ebf-step-badge {
    background: var(--ebf-gold);
    color: #000;
    width: 80px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--ebf-btn-radius);
    font-weight: 900;
    font-size: 14px;
    margin-bottom: 20px;
}

.ebf-privacy-content h2 {
    color: var(--ebf-gold);
    margin-top: 30px;
}

.ebf-privacy-content p {
    color: var(--ebf-text-grey);
    margin-bottom: 15px;
}

/* Responsive */
@media (max-width: 768px) {
    .ebf-section-title {
        font-size: 28px;
    }
    .ebf-page-container {
        padding: 40px 15px;
    }
}
