/* ===== HERO SECTION ===== */

.hero-vote {
    height: 60vh;
    background: url('../images/Vote-hero.jpg') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-vote .overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 40, 0.8);
}

.hero-vote .hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 700px;
    padding: 0 1rem;
}


/* ===== CONTESTANTS ===== */

.vote-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #0d0d1a, #141432);
    color: #fff;
    text-align: center;
}

.vote-section .contestant-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contestant-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.contestant-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(123, 97, 255, 0.3);
}

.contestant-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center top;
}

.contestant-card h3 {
    font-size: 1.3rem;
    margin-top: 1rem;
}

.contestant-card .province {
    color: #b9a8ff;
    margin: 0.5rem 0;
}

.contestant-card .quote {
    font-size: 0.95rem;
    color: #ccc;
    padding: 0 1rem;
    margin-bottom: 1rem;
}

.vote-btn {
    margin-bottom: 1.5rem;
}


/* ===== HOW TO VOTE ===== */

.how-to-vote {
    background: linear-gradient(135deg, #0E0E2F, #1A1A40);
    padding: 5rem 2rem;
    text-align: center;
    color: #fff;
}

.vote-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.vote-steps .step {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 2rem;
    transition: 0.3s;
}

.vote-steps .step:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.vote-steps i {
    font-size: 2rem;
    color: #b794f4;
    margin-bottom: 1rem;
}


/* ===== SOCIAL SECTION ===== */

.social-section {
    text-align: center;
    padding: 4rem 1rem;
    background: #0A0A28;
}

.social-icons {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.social-icons a {
    color: white;
    font-size: 2rem;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
    opacity: 0.8;
    transform: scale(1.1);
}