.home {
    width: 100%;
    height: 100vh;
    background-image: url('../images/capitol.jpg');
    background-position: center top;
    background-size:cover;
}

body {
    background: #f7f9fc;
    margin: 0;
    padding: 0;
    color: #333;
}

.scroll-hint {
    position: fixed;
    left: 50%;
    bottom: 32px;
    transform: translateX(-50%);
    background: rgba(54, 54, 54, 0.4);
    color: #fff;
    padding: 12px 24px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    font-size: 1.1em;
    z-index: 1001;
    opacity: 0;
    pointer-events: none;
    animation: hint-fade-in 1.2s 0.8s forwards;
}
.scroll-hint .arrow {
    font-size: 1.5em;
    margin-right: 12px;
    animation: bounce 1.2s infinite;
}
@keyframes bounce {
    0%, 100% { transform: translateY(0);}
    50% { transform: translateY(10px);}
}
@keyframes hint-fade-in {
    to { opacity: 1; pointer-events: auto; }
}
.scroll-hint.hide {
    animation: hint-fade-out 0.5s forwards;
}
@keyframes hint-fade-out {
    to { opacity: 0; pointer-events: none; }
}

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    z-index: 9999;
    transition: opacity 0.5s;
}
.popup-content {
    background: none;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: popIn 0.5s cubic-bezier(.68,-0.55,.27,1.55);
}
@keyframes popIn {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }
    60% {
        transform: scale(1.1);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        transform: scale(0.7);
    }
}

.popup-overlay.fade-out {
    animation: fadeOut 0.5s forwards;
}

.popup-content img {
    width: 30vw;
    height: auto;
    margin-bottom: 0;
}

@media screen and (max-width: 768px){
    .popup-content img {
        width: 30vh;
    }
}

.main-content {
    max-width: 1100px;
    margin: 3rem auto;
    padding: 2rem;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.animated-section {
    margin-bottom: 3rem;
    padding: 1.5rem;
    border-radius: 12px;
    background: #f1f5fb;
    transition: background 0.3s ease;
}

.animated-section:hover {
    background: #e9f0fa;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 800;
    letter-spacing: -0.5px;
}

p, ul {
    font-size: 2rem;
    line-height: 1.8;
}

ul {
    padding-left: 1.5rem;
    list-style-type: disc;
}

li {
    margin-bottom: 0.6em;
}

button {
    padding: 1.2em 3em;
    font-size: 1.3em;
    border-radius: 10px;
    border: none;
    background: linear-gradient(90deg, #007bff, #0056b3);
    color: #fff;
    font-weight: bold;
    letter-spacing: 0.5px;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.2);
    transition: all 0.2s ease-in-out;
}

button:hover {
    transform: translateY(-2px);
    background: linear-gradient(90deg, #0056b3, #003f88);
}

@media (max-width: 900px) {
    .main-content {
        padding: 1.5rem;
        border-radius: 12px;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    p, ul {
        font-size: 1.6rem !important;
    }
    
    button {
        width: 100%;
        font-size: 1.1em;
        padding: 1em;
    }
}

@media (max-width: 600px) {
    .main-content {
        padding: 1rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    p, ul {
        font-size: 1.6rem !important;
    }
    
    button {
        width: 100%;
        font-size: 1.3em;
        padding: 0.8em;
    }
}

.membership-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 2em 0 1.5em 0;
}
.membership-card {
    flex: 1 1 600px;
    min-width: 600px;
    background: linear-gradient(120deg, #eaf6ff 60%, #f7f9fc 100%);
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,123,255,0.07);
    padding: 1.2em 1.3em 1.1em 1.3em;
    transition: transform 0.18s, box-shadow 0.18s;
    border-left: 6px solid #007bff;
    position: relative;
}
.membership-card.full { border-color: #007bff; }
.membership-card.official { border-color: #ff6a00; }
.membership-card.supporting { border-color: #28a745; }
.membership-card.honorary { border-color: #ffc107; }
.membership-card.senators { border-color: #6f42c1; }
.membership-card h3 {
    margin-top: 0;
    margin-bottom: 0.5em;
    font-size: 1.5em;
    color: #234;
    font-weight: 700;
    letter-spacing: 0.5px;
}
.membership-card p {
    margin: 0;
    color: #444;
    font-size: 2em;
}
.membership-card:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 8px 24px rgba(0,123,255,0.13);
    z-index: 1;
}
.join-btn {
    background: linear-gradient(90deg, #007bff, #0056b3);
    color: #fff;
    font-size: 1.7em;
    padding: 1em 2.5em;
    border-radius: 8px;
    border: none;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 16px rgba(40,167,69,0.13);
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    margin-top: 1em;
}
.join-btn:hover {
    background: linear-gradient(90deg, #0056b3, #003f88);
    transform: translateY(-2px) scale(1.03);
}
@media (max-width: 900px) {
    .membership-categories {
        flex-direction: column;
        gap: 1rem;
    }
    .membership-card {
        min-width: 0;
        flex: 1 1 100%;
    }
}

.donation-notes {
    display: flex;
    flex-direction: column;
    font-weight: bold;
    gap: 0.7em;
    margin-bottom: 1.2em;
}
.note {
    display: flex;
    align-items: center;
    background: #eaf6ff;
    border-left: 4px solid #007bff;
    border-radius: 7px;
    padding: 0.7em 1em;
    font-size: 1.6em;
    color: #234;
    box-shadow: 0 2px 8px rgba(0,123,255,0.04);
}
.note-icon {
    font-size: 1.6em;
    margin-right: 0.7em;
}
@media (max-width: 700px) {
    .donation-notes .note {
        font-size: 1.4em;
        padding: 0.6em 0.8em;
    }
}

.donation-options {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 1.5em;
}
.donation-box {
    background: #e9f0fa;
    border-radius: 10px;
    padding: 1.2em 1.5em;
    flex: 1 1 300px;
    min-width: 260px;
    box-shadow: 0 2px 8px rgba(0,123,255,0.06);
}
.donation-box strong {
    display: block;
    font-size: 1.5em;
    margin-bottom: 0.7em;
    color: #0056b3;
}
.bank-details {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 1.8rem;
}
.bank-details li {
    margin-bottom: 0.4em;
}
.bank-details span {
    font-weight: 600;
    color: #333;
}
@media (max-width: 700px) {
    .donation-options {
        flex-direction: column;
        gap: 1rem;
    }

    .donation-box {
        flex: 1 1 100%;
        min-width: 0;
    }
}

.function-features {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-top: 2rem;
}
.feature-card {
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08), 0 1.5px 4px rgba(0,0,0,0.06);
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    flex: 1 1 220px;
    max-width: 95%;
    min-width: 200px;
    transition: transform 0.18s, box-shadow 0.18s;
}
.feature-card:hover {
    transform: translateY(-6px) scale(1.005);
    box-shadow: 0 8px 24px rgba(0,0,0,0.13), 0 2px 8px rgba(0,0,0,0.09);
}
.feature-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
}
.feature-card p {
    color: #444;
    text-align: left;
    font-size: 1.8rem;
    margin: 0;
}
@media (max-width: 900px) {
    .function-features {
        flex-direction: column;
        align-items: center;
    }
    .feature-card {
        max-width: 90vw;
        flex: 1 1 100%;
    }
}

.contact-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 1.5rem;
}
.contact-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    padding: 1.2rem 1.5rem;
    display: flex;
    align-items: center;
    min-width: 220px;
    flex: 1 1 220px;
    transition: box-shadow 0.2s;
}
.contact-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.contact-icon {
    font-size: 2rem;
    margin-right: 1rem;
    color: #2a7ae2;
}
.contact-card strong {
    display: block;
    font-size: 1.6rem;
    margin-bottom: 0.2rem;
    color: #222;
}
.contact-card a {
    color: #2a7ae2;
    text-decoration: none;
    font-size: 1.6rem;
    word-break: break-all;
}
.contact-card a:hover {
    text-decoration: underline;
}
@media (max-width: 700px) {
    .contact-cards {
        flex-direction: column;
        gap: 1rem;
    }
    .contact-card {
        min-width: 0;
        flex: 1 1 100%;
    }
}

.benefits-cards {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: safe;
    margin-top: 2rem;
}

.benefit-card {
    background: #ffffff;
    color: #1b1b1b;
    border-radius: 1.2rem;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 2rem 2.5rem;
    min-width: 270px;
    max-width: 42%;
    transition: transform 0.2s, box-shadow 0.2s;
}
.benefit-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}
.benefit-card-global{
    min-width: 90.5%;
}
.benefit-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.10));
}
.benefit-info h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.9rem;
    font-weight: 600;
    color: #000000;
    letter-spacing: 0.01em;
}
.benefit-info p {
    margin: 0;
    font-size: 1.8rem;
    color: #191919;
    line-height: 1.5;
}
@media (max-width: 700px) {
    .benefits-cards {
        flex-direction: column;
        gap: 1.2rem;
        align-items: stretch;
        flex: 1 1 100%;
    }
    .benefit-card {
        max-width: 95%;
        padding: 1.2rem 1rem;
    }

    .benefit-card-global {
        min-width: 80%;
        max-width: 95%;
    }
}

.about-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2.2rem;
    margin-top: 2rem;
  }
  .about-card {
    background: linear-gradient(135deg, #f8fafc 70%, #e0e7ef 100%);
    color: #1a1a1a;
    border-radius: 1.5rem;
    box-shadow: 0 6px 28px rgba(0,0,0,0.10);
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    display: flex;
    align-items: flex-start;
    min-width: 260px;
    max-width: 95%;
    flex: 1 1 260px;
    transition: transform 0.18s, box-shadow 0.18s;
    border: 1.5px solid #e3e8ee;
    position: relative;
    overflow: hidden;
  }
  .about-card::before {
    content: "";
    position: absolute;
    top: -40px;
    right: -40px;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, #b6d0fa33 0%, transparent 80%);
    z-index: 0;
    pointer-events: none;
  }
  .about-card:hover {
    transform: translateY(-8px) scale(1.005);
    box-shadow: 0 12px 36px rgba(0,0,0,0.16);
    border-color: #b6d0fa;
    background: linear-gradient(135deg, #f0f7ff 70%, #dbeafe 100%);
  }
  .about-card p {
    margin: 0;
    font-size: 1.8rem;
    color: #222e3a;
    line-height: 1.6;
    z-index: 1;
    position: relative;
  }
  @media (max-width: 800px) {
    .about-cards {
      flex-direction: column;
      gap: 1.3rem;
      align-items: stretch;
    }
    .about-card {
      max-width: 100%;
      flex: 1 1 100%;
    }
  }