body {
    margin:0;
    font-family: Arial, sans-serif;
    background:#f4f6f8;   /* Hub light background */
    color:#333;
}

/* HEADER (Hub style) */
header {
    background:#1e3a5f;
    color:white;
    text-align:center;
    padding:20px;
}

.donation-section {
    display: none;
}

.hero {
    background: linear-gradient(rgba(0,0,80,.6), rgba(0,0,80,.6)),
                url('secunda-banner.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 80px 20px;
    border-radius: 12px;
}

/* =========================
   🔥 MODERN TOP MENU
   ========================= */

.menu-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;

    padding: 15px;
    margin: 10px;

    flex-wrap: nowrap;       /* ALWAYS one line */
    overflow-x: auto;        /* scroll on mobile */

    scrollbar-width: none;   /* hide scrollbar */
}

.menu-container::-webkit-scrollbar {
    display: none;
}

.menu-card.active {
    position: relative;
}

.menu-card.active::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 15%;
    width: 70%;
    height: 4px;
    background: #00e5ff;
    border-radius: 20px;
}

/* MENU BUTTON */
.menu-card {
    display: flex;
    align-items: center;
    gap: 6px;

    background: linear-gradient(135deg, #1e3a5f, #2c4a73);
    color: white;
    text-decoration: none;

    padding: 10px 14px;
    border-radius: 10px;

    font-size: 14px;
    font-weight: 500;

    white-space: nowrap;

    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    transition: all 0.25s ease;
}

/* HOVER */
.menu-card:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #2c4a73, #3b6aa0);
}

/* CARD STYLE */
.card {
    background: #fff;
    border-radius: 12px;
    padding: 18px 20px;
    margin-bottom: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border-left: 6px solid #ff0000;
}

/* COLORS */
.blue { border-left-color: #007bff; }
.red { border-left-color: #dc3545; }
.orange { border-left-color: #ff9800; }
.green { border-left-color: #28a745; }

h3 {
    margin-top: 0;
}

.phone {
    font-weight: bold;
    color: #111;
}

ul {
    padding-left: 20px;
}

.alert {
    background: #fff5f5;
    padding: 10px;
    border-radius: 8px;
    border-left: 4px solid #dc3545;
}

/* MOBILE */
@media (max-width: 600px) {

    .menu-container {
        justify-content: flex-start;
    }

    .menu-card {
        font-size: 12px;
        padding: 8px 12px;
    }

    .menu-card span {
        display: none; /* icons only */
    }
}

.chart-block {
    margin-bottom: 40px;
    padding: 15px;
    border-radius: 12px;
    background: #f9f9f9;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    text-align: center;
}

.chart-block iframe {
    margin: 10px;
}

.icon {
    display: inline-block;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.7; }
    100% { transform: scale(1); opacity: 1; }
}

.float-icon {
    display: inline-block;
    animation: float 2s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-6px); }
    100% { transform: translateY(0px); }
}

.shake-icon {
    display: inline-block;
    animation: shake 0.8s infinite;
}

@keyframes shake {
    0% { transform: rotate(0deg); }
    25% { transform: rotate(5deg); }
    50% { transform: rotate(-5deg); }
    75% { transform: rotate(5deg); }
    100% { transform: rotate(0deg); }
}

.phone {
            font-weight: 800;
            color: #000;
        }

.construction-banner {
            background: #ffcc00;
            color: #000;
            text-align: center;
            padding: 10px;
            font-weight: bold;
            margin: 10px auto;
            width: 90%;
            border-radius: 8px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        }

        .menu-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 10px;
            margin: 15px;
        }

        .menu-card {
            background: white;
            padding: 10px 15px;
            border-radius: 8px;
            text-decoration: none;
            color: #333;
            box-shadow: 0 2px 6px rgba(0,0,0,0.1);
        }

        .menu-card:hover {
            background: #f0f0f0;
        }

        .site-block {
            max-width: 750px;
            margin: 12px auto;
            padding: 15px 18px;
            background: #ffffff;
            border-radius: 10px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            color: #444;
        }

        .site-block h3 {
            color: #222;
        }

        .highlight { border-left: 5px solid #0077cc; }
        .contact { border-left: 5px solid #ff9800; }
        .donation { border-left: 5px solid #28a745; }

        /* =========================
           💳 PAYMENT / DONATION CSS
           ========================= */
        .container {
            max-width: 750px;
            margin: 20px auto;
            padding: 10px;
        }

        .card {
            background: white;
            padding: 20px;
            margin: 15px 10px;
            border-radius: 12px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }

        .card img {
            margin-top: 10px;
            border-radius: 10px;
            max-width: 100%;
        }

        .bank-details {
            text-align: left;
            line-height: 1.6;
        }

        button {
            padding: 10px 15px;
            border: none;
            border-radius: 6px;
            background: #0077cc;
            color: white;
            cursor: pointer;
            margin-top: 10px;
        }

        button:hover {
            background: #005fa3;
        }

/* MAP */
iframe {
    width:100%;
    height:60vh;
    border:none;
    border-radius:10px;
}


/* Footer */
footer {
    text-align: center;
    padding: 15px;
    background-color: #1e3a5f;
    color: white;
}