/* Custom CSS for the new layout */
.hero-section {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.video-column {
    flex: 2;
    min-width: 300px;
}

.donation-column {
    flex: 1;
    min-width: 300px;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.donation-box {
    border: 1px solid #e0e0e0;
    padding: 20px;
    border-radius: 8px;
}

.donation-box h3 {
    font-size: 18px;
    color: #666;
    margin-bottom: 5px;
    font-weight: 600;
}

.amount {
    font-size: 40px;
    font-weight: bold;
    color: #27a85b;
    margin-bottom: 5px;
}

.goal {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
    font-weight: 500;
}

.stats {
    background-color: #f0f8f2;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.stats p {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 500;
}

.stats span {
    font-weight: bold;
}

.cta-button {
    background-color: #27a85b;
    color: white;
    font-size: 20px;
    font-weight: bold;
    padding: 15px;
    width: 100%;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    margin-bottom: 10px;
}

.share-button {
    background-color: white;
    color: #333;
    font-size: 20px;
    font-weight: bold;
    padding: 15px;
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 8px;
    cursor: pointer;
    margin-bottom: 20px;
}

.protected-donation {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    font-weight: 500;
}

.protected-donation img {
    width: 20px;
    height: 20px;
    margin-right: 5px;
}

.recent-donor {
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
    display: flex;
    align-items: center;
}

.donor-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #ccc;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
}

.video-responsive {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.video-responsive iframe, .video-responsive object, .video-responsive embed, .video-responsive vturb-smartplayer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.text-container {
    padding: 1.5rem; /* 24px */
    border-radius: 8px;
    margin-top: 2rem; /* 32px */
}

.bg-light-gray {
    background-color: #f3f4f6; /* Tailwind's gray-100 */
}

.bg-light-yellow {
    background-color: #fef3c7; /* Tailwind's amber-100 */
}

.bg-light-green {
    background-color: #d1fae5; /* Tailwind's emerald-100 */
}

.content-separator {
    border-top: 1px solid #e5e7eb; /* Light gray border */
    margin-top: 2rem; /* 32px */
    padding-top: 2rem; /* 32px */
}

.donor-info p {
    margin: 0;
}

.donor-info p strong {
    font-weight: bold;
}

.donor-info p:last-child {
    font-size: 12px;
    color: #888;
}
