/* Projekty Page Styles */

.projects-main {
    font-family: 'Inter', sans-serif;
    color: var(--color-text);
}

.section-subtitle {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

/* Hero Section */
.hero-section {
    padding: 6rem 0; /* from pt-[96px] pb-[64px] */
    background-color: #fff5ed; /* var(--orangish-white) */
    font-family: 'Poppins', sans-serif;
}

.hero-container {
    max-width: 1200px !important;
}

.hero-content {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 64px; /* gap-x-[64px] gap-y-[64px] */
    align-items: center;
}

.hero-text-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px; /* from container gap-[24px] */
    width: 536px;
}

.location-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px; /* gap-[8px] */
    background: #fddeb4;
    color: #b86f0b;
    padding: 8px 16px; /* px-[16px] py-[8px] */
    border-radius: 9999px; /* rounded pill */
    font-size: 13px; /* text-[13px] */
    font-weight: 500; /* Medium */
    line-height: 19.5px;
    margin-bottom: 0;
}

.hero-title {
    font-size: 40px; /* text-[40px] */
    line-height: 48px; /* leading-[48px] */
    margin-bottom: 0;
    color: #101828; /* var(--black) */
    font-weight: 500; /* Medium */
}

.hero-title .d-block {
    display: block;
}

.hero-title .text-orange {
    color: #f54900;
}

.hero-desc {
    font-size: 20px; /* text-[20px] */
    line-height: 30px; /* leading-[30px] */
    margin-bottom: 0;
    color: #101828;
    font-weight: 400; /* Regular */
}

.hero-buttons {
    display: flex;
    gap: 16px; /* gap-[16px] */
    align-items: center;
}

.btn-pill {
    border-radius: 9999px !important;
    font-family: 'Poppins', sans-serif;
    font-weight: 600 !important; /* SemiBold */
    font-size: 16px !important; /* text-[16px] */
    line-height: 24px !important;
}

.btn-primary.btn-pill {
    background-color: #00016b !important; /* var(--dark-blue) */
    color: white !important;
    padding: 16px 32px !important; /* px-[32px] py-[16px] */
    border: none !important;
}

.btn-secondary.btn-pill {
    background-color: rgba(255,255,255,0.1) !important;
    color: #00016b !important;
    border: 1px solid #00016b !important;
    padding: 16px 32px !important; /* Approx to 17px 33px accounting for border */
}

/* Image Masonry Layout */
.hero-images {
    display: flex;
    justify-content: flex-end;
    height: 100%;
}

.image-masonry {
    display: flex;
    gap: 24px;
    width: 100%;
    height: 572px; /* 274 + 24 + 274 */
}

.masonry-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 264.25px;
}

.masonry-img {
    width: 100%;
    height: 274px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0px 20px 25px -5px rgba(0,0,0,0.1);
}

.masonry-right {
    flex: 1 0 0;
    height: 100%;
}

.masonry-img-tall {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0px 20px 25px -5px rgba(0,0,0,0.1);
}

/* Partnership Section */
.partnership-section {
    padding: 80px 120px;
    background-color: #ffffff;
}

.partnership-container {
    max-width: 1200px !important;
}

.partnership-content {
    display: flex;
    gap: 72px;
    align-items: center;
}

.partnership-image-wrapper {
    position: relative;
    width: 564px;
    height: 451.2px;
}

.partnership-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0px 20px 25px -5px rgba(0,0,0,0.1), 0px 8px 10px -6px rgba(0,0,0,0.1);
}

.partner-card {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 220px;
    background-color: #00016b;
    border-radius: 18px;
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.1), 0px 4px 6px -4px rgba(0,0,0,0.1);
}

.partner-label {
    color: white;
    font-size: 15px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    line-height: 22px;
}

.partner-name {
    color: #ffb349;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    line-height: 24px;
    margin-bottom: 0;
}

.partner-desc {
    color: white;
    font-size: 12px;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
    line-height: 18px;
    margin-bottom: 0;
}

.partnership-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 564px;
}

.section-subtitle {
    color: #00016b;
    font-size: 13px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    line-height: 19.5px;
    margin-bottom: 0;
}

.partnership-text h2 {
    color: #101828;
    font-size: 40px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    line-height: 48px;
    margin-bottom: 0;
}

.partnership-text p {
    color: #101828;
    font-size: 20px;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
    line-height: 28px;
    margin-bottom: 0;
}

.partnership-highlight {
    display: none; /* Hidden in Figma */
}


/* Support Areas Section */
.support-areas-section {
    padding: 80px 120px;
    background-color: #f7fbff;
}

.support-container {
    max-width: 1200px !important;
    display: flex;
    flex-direction: column;
    gap: 48px;
    align-items: flex-start;
}

.support-header {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    width: 100%;
}

.support-header .section-subtitle {
    color: #00016b;
    font-size: 13px;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    line-height: 19.5px;
    margin-bottom: 0;
}

.support-header h2 {
    color: #101828;
    font-size: 40px;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    line-height: 50px;
    margin-bottom: 0;
    text-align: center;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    width: 100%;
}

.support-card {
    background-color: #ffffff;
    border: 1px solid #e9e6e0;
    border-radius: 20px;
    padding: 29px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    box-shadow: 0px 1px 3px 0px rgba(0,0,0,0.1), 0px 1px 2px -1px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.support-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 20px 25px -5px rgba(0,0,0,0.1), 0px 8px 10px -6px rgba(0,0,0,0.1);
}

.card-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon.icon-blue {
    background-color: rgba(0,1,107,0.09);
    color: #00016b;
}

.card-icon.icon-orange {
    background-color: rgba(245,73,0,0.09);
    color: #f54900;
}

.card-icon.icon-teal {
    background-color: rgba(63,155,184,0.09);
    color: #3f9bb8;
}

.card-icon.icon-yellow {
    background-color: rgba(255,179,73,0.09);
    color: #ffb349;
}

.support-card h3 {
    color: #101828;
    font-size: 17px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    line-height: 26px;
    margin-bottom: 0;
}

.support-card p {
    color: #101828;
    font-size: 15px;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
    line-height: 24px;
    margin-bottom: 0;
}

/* Beneficiaries Section */
.beneficiaries-section {
    padding: 80px 120px;
    background-color: #ffffff;
}

.beneficiaries-container {
    max-width: 1200px !important;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.beneficiaries-header {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.beneficiaries-header .section-subtitle {
    color: #00016b;
    font-size: 13px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    margin-bottom: 0;
}

.beneficiaries-header h2 {
    color: #101828;
    font-size: 40px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    line-height: 50px;
    margin-bottom: 0;
}

.beneficiaries-cards {
    display: flex;
    gap: 24px;
    width: 100%;
}

.bene-card {
    flex: 1;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.card-blue {
    background-color: #00016b;
    color: #ffffff;
    padding: 32px 32px 56px 32px;
}

.card-light-blue {
    background-color: #f7fbff;
    border: 1px solid #e9e6e0;
    padding: 33px 33px 111px 33px;
}

.card-orange {
    background-color: #fff5ed;
    border: 1px solid #e9e6e0;
    padding: 33px;
}

.bene-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-blue .bene-icon-wrapper {
    background-color: rgba(255,255,255,0.1);
}

.card-light-blue .bene-icon-wrapper {
    background-color: rgba(63,155,184,0.12);
}

.card-orange .bene-icon-wrapper {
    background-color: rgba(245,73,0,0.1);
}

.bene-card h3 {
    font-size: 18px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    line-height: 26px;
    margin-bottom: 0;
}

.card-blue h3 {
    color: #ffffff;
}

.card-light-blue h3 {
    color: #101828;
}

.card-orange h3 {
    color: #101828;
}

.bene-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bene-list li {
    position: relative;
    padding-left: 27px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 22px;
}

.card-blue .bene-list li {
    color: rgba(255,255,255,0.8);
}

.card-light-blue .bene-list li {
    color: #101828;
}

.card-orange .bene-list li {
    color: #4a5565;
}

.bene-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    width: 15px;
    height: 15px;
    background-size: contain;
    background-repeat: no-repeat;
}

.card-blue .bene-list li::before {
    background-image: url("data:image/svg+xml,%3Csvg width='15' height='15' viewBox='0 0 15 15' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 7.5L6 10.5L12 4.5' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.card-light-blue .bene-list li::before {
    background-image: url("data:image/svg+xml,%3Csvg width='15' height='15' viewBox='0 0 15 15' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 7.5L6 10.5L12 4.5' stroke='%233f9bb8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.card-orange .bene-list li::before {
    background-image: url("data:image/svg+xml,%3Csvg width='15' height='15' viewBox='0 0 15 15' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 7.5L6 10.5L12 4.5' stroke='%23f54900' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.beneficiaries-images {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    width: 100%;
}

.beneficiaries-images img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 20px;
}


/* Connection to Business Section */
.business-connection-section {
    padding: 88px 270px;
    background-color: #fafafa;
}

.business-container {
    max-width: 900px !important;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.business-connection-section .section-subtitle {
    color: #00016b;
    font-size: 13px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    line-height: 19.5px;
    margin-bottom: 0;
}

.business-connection-section h2 {
    color: #101828;
    font-size: 44px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    line-height: 54px;
    margin-bottom: 0;
}

.business-connection-section h2 .text-blue {
    color: #00016b;
}

.business-desc {
    color: #101828;
    font-size: 19px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 30px;
    max-width: 680px;
    margin: 4px auto 0;
}

.business-buttons {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: center;
    padding-top: 20px;
    padding-bottom: 36px;
    width: 100%;
}

.business-btn-primary {
    background-color: #00016b;
    color: #ffffff;
    font-size: 17px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 25.5px;
    padding: 20px 40px;
    border-radius: 9999px;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.business-btn-primary:hover {
    opacity: 0.9;
    color: #ffffff;
}

.business-btn-secondary {
    background-color: #ffffff;
    color: #00016b;
    border: 2px solid #00016b;
    font-size: 17px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    line-height: 25.5px;
    padding: 18px 40px; /* 20px - 2px border */
    border-radius: 9999px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.business-btn-secondary:hover {
    background-color: rgba(0,1,107,0.05);
    color: #00016b;
}

/* Donation Section */
.donation-section {
    background-color: #00016b;
    padding: 80px 240px;
}

.donation-container {
    max-width: 960px !important;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.donation-title-box {
    background-color: rgba(255,255,255,0.15);
    padding: 16px 24px;
    border-radius: 12px;
    display: inline-flex;
    margin-bottom: 30px;
    align-self: flex-start;
}

.donation-title {
    color: #ffffff;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    line-height: 24px;
    margin-bottom: 0;
}

.donation-row {
    display: flex;
    align-items: center;
    gap: 32px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding-bottom: 29px;
    margin-bottom: 30px;
}

.donation-label {
    width: 170px;
    color: #ffffff;
    font-size: 17px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    line-height: 25.5px;
}

.donation-options {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 8px;
    cursor: pointer;
    margin-bottom: 0;
}

.radio-option input {
    display: none;
}

.radio-circle {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
}

.radio-option.active .radio-circle {
    border-color: #ffffff;
    background-color: #ffffff;
    padding: 2px;
}

.radio-option.active .radio-circle::after {
    content: "";
    width: 8px;
    height: 8px;
    background-color: #00016b;
    border-radius: 50%;
}

.radio-text {
    color: #ffffff;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    line-height: 24px;
}

.vertical-divider {
    width: 1px;
    height: 20px;
    background-color: rgba(255,255,255,0.3);
    margin: 0 4px;
}

.donation-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 10px;
}

.steps-indicator-box {
    display: flex;
    align-items: center;
    gap: 32px;
}

.step {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.step span {
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    line-height: 24px;
    color: rgba(255,255,255,0.35);
}

.step.active span {
    color: #ffffff;
}

.step-line {
    width: 100%;
    height: 2px;
    border-radius: 10px;
    background-color: rgba(255,255,255,0.35);
}

.step.active .step-line {
    background-color: #ffffff;
}

.btn-next {
    background-color: #ffffff;
    color: #00016b;
    font-size: 17px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    line-height: 25.5px;
    padding: 16px 40px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.btn-next:hover {
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-content, .partnership-content, .trust-content {
        grid-template-columns: 1fr;
    }
    
    .support-grid, .beneficiaries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .amount-options {
        flex-wrap: wrap;
    }
    
    .amount-btn {
        flex: 1 1 40%;
    }
}

@media (max-width: 768px) {
    .support-grid, .beneficiaries-grid, .beneficiaries-images, .trust-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-section h1 {
        font-size: 2.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .partner-card {
        position: relative;
        bottom: 0;
        right: 0;
        width: 100%;
        margin-top: -2rem;
    }
}
