/* Reusable Components */

/* Buttons */
.btn-custom {
    background: linear-gradient(45deg, var(--accent-gold), var(--accent-light));
    border: none;
    color: white;
    font-weight: 600;
    padding: 15px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 160, 23, 0.3);
}

.btn-custom:hover {
    background: linear-gradient(45deg, var(--accent-light), var(--accent-gold));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 160, 23, 0.4);
    color: white;
}

.btn-outline-gold {
    border: 2px solid var(--accent-gold);
    color: var(--accent-gold);
    background: transparent;
    font-weight: 500;
    padding: 10px 25px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.btn-outline-gold:hover {
    background: var(--accent-gold);
    color: white;
    transform: translateY(-1px);
}

/* Image Placeholders */
.image-placeholder {
    width: 100%;
    max-width: 400px;
    height: 300px;
    background-color: var(--placeholder-bg);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    color: var(--placeholder-text);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.image-placeholder:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* Statistics Boxes */
.stat-box {
    background: white;
    padding: 40px 20px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.stat-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, var(--accent-gold), var(--accent-light));
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 15px;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Benefit Boxes */
.benefit-box {
    background: white;
    padding: 30px 20px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.benefit-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, var(--accent-gold), var(--accent-light));
}

.benefit-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--accent-gold), var(--accent-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.benefit-icon i {
    font-size: 24px;
    color: white;
}

.benefit-box:hover .benefit-icon {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(212, 160, 23, 0.4);
}

.benefit-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0;
    line-height: 1.3;
}

/* Civilization Cards */
.civilization-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    overflow: hidden;
}

.civilization-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.civilization-image {
    height: 200px;
    margin: 0;
    border-radius: 0;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    width: 100%;
    object-fit: cover;
    display: block;
}

.civilization-content {
    background: white;
}

.civilization-content h6 {
    font-weight: 600;
    font-size: 1rem;
}

.civilization-content .small {
    font-size: 0.9rem;
    line-height: 1.4;
    color: var(--text-secondary);
}

/* Choice Container */
.choice-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.choice-item {
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    overflow: hidden;
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.choice-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.choice-title {
    font-weight: 600;
    margin-bottom: 20px;
}

.choice-image {
    width: 100%;
    max-width: 400px;
    height: 280px;
    object-fit: cover;
    object-position: center;
    transition: all 0.3s ease;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.choice-item:hover .choice-image {
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
    .choice-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .choice-item {
        max-width: 400px;
        margin: 0 auto;
    }
}

/* Responsive Components */
@media (max-width: 768px) {
    .stat-number {
        font-size: 2.5rem;
    }

    .image-placeholder {
        height: 250px;
        max-width: 100%;
    }

    .btn-custom {
        padding: 12px 25px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .stat-number {
        font-size: 2rem;
    }

    .choice-image {
        height: 200px;
    }
}