﻿/*.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}*/
/* Hero section */
.hero {
    display: flex;
    margin: 50px 0;
    gap: 30px;
}

.hero-content {
    flex: 1;
}

.hero-image {
    flex: 1;
}

    .hero-image img {
        width: 75%;
        border-radius: 5px;
    }

.hero h1 {
    color: #1e3c8a;
    font-size: 36px;
    margin-bottom: 20px;
}

.hero p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Tabs */
.tabs {
    display: flex;
    margin: 30px 0;
    gap: 15px;
    justify-content: center;
}

.tab {
    background-color: transparent;
    color: red;
    padding: 15px 25px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    border: none;
    text-align: center;
}

    .tab.active {
        background-color: cornflowerblue;
        border-radius: 50px;
    }

/* Tab content */
.tab-content {
    margin: 30px 0;
}

.tab-pane {
    display: none;
}

    .tab-pane.active {
        display: block;
    }

.program-title {
    color: white;
    display: block;
    padding: 10px 25px;
    border-radius: 5px;
    margin-bottom: 30px;
    margin-left: auto;
    margin-right: auto;
    max-width: fit-content;
    text-align: center;
}

.program-description {
    color: #555;
    line-height: 1.6;
    margin-bottom: 30px;
    margin-left: 30px;
    margin-right: 30px;
    text-align:justify;
}

/* Gallery */
.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.gallery-item {
    position: relative;
    height: 200px;
    /*overflow: hidden;*/
}

    .gallery-item img {
        width: 1300px;
        height: 500px;
        object-fit: cover;
    }

    .gallery-item.large {
        grid-column: span 2;
        grid-row: span 2;
        height: 415px;
    }

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(30, 60, 138, 0.7);
    color: white;
    padding: 15px;
    text-align: center;
}

    .gallery-caption h3 {
        font-size: 24px;
        margin-bottom: 10px;
    }

/* Responsive */
@media (max-width: 768px) {

    .hero {
        display: block !important;
        margin: 50px 0;
        gap: 30px;
    }

    .nav-container {
        padding: 0px 0px;
    }
}