body, h1, h2, h3, p, ul, li {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #f8f9fa;
    color: #333;
    line-height: 1.7;
}

a {
    color: #0047AB;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

header {
    background: #002147;
    color: white;
    padding: 15px 0;
}

.logo h1 {
    margin-left: 40px;
    font-size: 2em;
    font-weight: 600;
}

.logo h1 a {
    color: #ffffff;
}

.menu ul {
    list-style: none;
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.menu ul li {
    margin: 0 15px;
}

.menu ul li a {
    color: #D6E6F2; /* Light Blue */
    text-decoration: none;
    font-weight: 300;
    font-size: 1.1rem;
}

.menu ul li a:hover {
    color: #ffffff;
}

.banner {
    background-image: url("bgimage.JPG");
    background-size: cover;
    background-position: center;
    height: 50vh;
    color: white;
    text-align: center;
    padding: 80px 20px;
}

.banner h2 {
    font-size: 2.2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
}

.content {
    max-width: 1000px;
    margin: 50px auto;
    padding: 0 20px;
}

.content h2 {
    color: #002147;
    margin: 25px 0 10px;
}

.content ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.schedule h3 {
    margin-top: 20px;
    color: #0047AB;
}

.schedule-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    font-size: 1em;
    background-color: #ffffff;
    border: 2px solid #002147;
}

.schedule-table thead {
    background-color: #002147;
    color: #fff;
    font-weight: bold;
}


.schedule-table td {
    padding: 12px 15px;
    border: 1.5px solid #002147;
    text-align: left;
    vertical-align: top;
}
.schedule-table a {
  text-decoration: underline;
}

.schedule-table tbody tr:nth-child(even) {
    background-color: #f2f2f2;
}

.schedule-table tbody tr:hover {
    background-color: #e6f0ff;
}
.schedule-table tbody tr.week-header {
    height: 40px;
}
.group-presentation {
  color: #D35400; /* A warm reddish-orange tone */
  font-weight: 500;
}

.gallery-section {
    text-align: center;
    padding: 50px 20px;
    background: #f8f9fa;
}

.gallery-section h2 {
    color: #002147;
    margin-bottom: 30px;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.gallery img {
    width: 250px;
    height: 160px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.gallery img:hover {
    transform: scale(1.05);
}

/* Modal Style */
.modal {
    display: none;
    position: fixed;
    z-index: 999;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 80%;
    max-height: 80%;
    border-radius: 10px;
}

.close {
    position: absolute;
    top: 30px;
    right: 50px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

#caption {
    text-align: center;
    color: white;
    padding: 10px 0;
    font-size: 1.2rem;
}



footer {
    background: #fffff;
    padding: 30px 0;
    text-align: center;
}

.footer-logos img  {
	width: 120px;
    height: 120px;
    object-fit: contain;
    margin: 0 40px;
    vertical-align: middle}

.scale-up {
    transform: scale(1.5); /* Adjust if needed */
    transform-origin: center;
}

.footer-links {
    margin-top: 10px;
}

.footer-links a {
    color: #0047AB;
    text-decoration: none;
    font-weight: 300;
}

.footer-links a:hover {
    text-decoration: underline;
}