/* ===== PAGE BACKGROUND ===== */
body {
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    font-family: 'Poppins', sans-serif;
    color: #fff;
    margin: 0;
    padding: 20px;
}

/* ===== HEADINGS ===== */
h1 {
    text-align: center;
    margin: 40px 0 20px;
    color: #00ffd5;
    font-weight: 700;
    letter-spacing: 1px;
}

/* ===== TABLE CONTAINER ===== */
.con {
    max-width: 900px;
    margin: auto;
}

/* ===== TABLE STYLE ===== */
table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 40px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.35);
}

/* Table headers */
th {
    background: rgba(0, 255, 213, 0.25);
    padding: 14px;
    text-align: left;
    font-size: 14px;
    letter-spacing: 1px;
}

/* Table cells */
td {
    padding: 12px 14px;
    font-size: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* Hover effect */
tr:hover td {
    background: rgba(0, 255, 213, 0.15);
    transition: 0.3s;
}

/* ===== IMAGE GRID (PAST LEADERS & PATRONS) ===== */
.container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    max-width: 1100px;
    margin: auto;
}

/* Card */
.content {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    overflow: hidden;
    text-align: center;
    padding-bottom: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.35);
    transition: 0.3s ease;
}

/* Card hover */
.content:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,255,213,0.4);
}

/* Images */
.content img {
    width: 200px;
    height: 250px;
    object-fit: cover;
    border-bottom: 3px solid #00ffd5;
}

/* Names */
.content h2 {
    font-size: 15px;
    margin: 15px 10px 5px;
    color: #00ffd5;
    font-weight: 600;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 600px) {
    td, th {
        font-size: 13px;
    }

    .content img {
        height: 220px;
    }
}
