:root {
    --heading: 'RecoletaAlt';
    --heading-2: 'Unbounded';
    --body-font: 'Inter';
    --body-color: #555555;
    --base-color: #F07800;
    --title-color: #0e0e0e;
    --body-bg-color: #171926;
} 

/* Hero section span color */
.bi-slider-section-3 .bi-slider-text-3 h1 span,
.bi-slider-item-3 .bi-slider-text-3 h1 span {
    color: #F07800 !important;
    -webkit-text-fill-color: #F07800 !important;
}

/* Navbar specific overrides */
.bi-header-section .main-navigation ul li a:hover,
.bi-header-section .main-navigation ul li.active a {
    color: #F07800 !important;
}

.bi-header-section .main-navigation ul li .dropdown-menu li a:hover {
    color: #F07800 !important;
}

.bi-header-content {
    background: linear-gradient(180deg, #E67E22 0%, #C35817 100%) !important;
    border: 1px solid #F07800 !important;
}

.bi-header-section .mobile_menu_content .main-navigation ul li a:hover {
    color: #F07800 !important;
}

/* Poll Section Styles */
.bi-script-poll-section {
    padding: 120px 0;
    background: linear-gradient(180deg, rgba(240,120,0,0.05) 0%, rgba(195,88,23,0.02) 100%);
}

.bi-poll-item {
    background: rgba(255, 255, 255, 0.02);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(240,120,0,0.05);
    transition: all 0.4s ease;
    border: 1px solid rgba(240,120,0,0.1);
}

.bi-poll-item:hover {
    transform: translateY(-5px);
    border-color: rgba(240,120,0,0.3);
    box-shadow: 0 15px 40px rgba(240,120,0,0.1);
}

.poll-img {
    margin-bottom: 25px;
    border-radius: 10px;
    overflow: hidden;
}

.poll-img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.poll-text h3 {
    color: #E67E22;
    margin-bottom: 20px;
    font-size: 28px;
    font-weight: 600;
}

.poll-text p {
    margin-bottom: 25px;
    color: #E8D9F5;
    font-size: 16px;
    line-height: 1.6;
}

.vote-count {
    font-size: 20px;
    color: #F07800;
    margin-bottom: 25px;
    font-weight: 600;
}

.vs-divider {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #E67E22 0%, #C35817 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 28px;
    margin: 30px 0;
    box-shadow: 0 10px 30px rgba(240,120,0,0.2);
}

.poll-btn button {
    background: linear-gradient(135deg, #E67E22 0%, #C35817 100%);
    color: #fff;
    border: none;
    padding: 15px 30px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.poll-btn button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(240,120,0,0.3);
}

.poll-btn button:disabled {
    background: linear-gradient(135deg, #E67E22 0%, #C35817 100%);
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.section-title h2 {
    color: #E67E22;
    margin-bottom: 15px;
    font-size: 42px;
    font-weight: 600;
}

.section-title p {
    color: #E8D9F5;
    font-size: 18px;
    margin-bottom: 50px;
} 