@import url('https://fonts.googleapis.com/css2?family=Amiri&family=Noto+Naskh+Arabic&display=swap');

.landing-section {
    height: 645px;
    background-color: var(--primary);
    align-items: center;
    justify-content: start;
}

.arabic {
  font-family: 'Noto Naskh Arabic', 'Amiri', 'Scheherazade New', sans-serif;
}

.header {
    justify-content: space-between;
    align-items: center;
    height: 100px;
    width: 100%;
}

.small-menu {
    display: none;
}

.small-menu > i {
    font-size: 25px;
}

.full-menu {
    display: inline-block;
}

.header > a > img {
    height: 75px;
}

.header > * {
    padding: 0 30px;
}

.header > nav {
    background-color: white;
    height: 100px;
    gap: 30px;
    align-items: center;
    justify-content: start;
    padding: 0 100px;
    border-bottom-left-radius: 300px;
}

.header > nav > a {
    color: black;
    text-decoration: none;
    font-size: var(--sub-heading-font);
    font-weight: 600;
}

.section {
    padding-bottom: 100px;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
    color: white;
    gap: 30px;
    text-align: center;
}

.container {
    max-width: 1140px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.additional-info {
    z-index: 1;
    position: relative;
    align-items: stretch;
    justify-content: center;
    gap: 20px;
    margin: -150px auto 0 auto;
}
 
.additional-info > div {
    gap: 20px;
    background-color: white;
    padding: 30px;
    text-align: center;
    border: 3px solid var(--accent);
    border-radius: 25px;
    width: 100%;
}

.additional-info > div > svg {
    fill: var(--primary);
    height: 85px;
}

.additional-info > div > h2 {
    font-weight: 600 !important;
}

.spacer {
    flex-grow: 1;
}

.mission {
    padding: 85px 0;
    gap: 40px;
}

.mission > img {
    width: 50%;
}

.content {
    gap: 20px;
    justify-content: start;
    align-items: start;
}

.programs {
    align-items: center;
}

.heading {
    text-align: center;
}

.instructors {
    gap: 20px;
    padding: 20px 0;
}

.instructors .image > img {
    height: 136px;
    width: 136px;
    margin-bottom: -20px;
    z-index: 2;
}

.instructors .image {
    border-top-right-radius: 25px;
    border-top-left-radius: 25px;
    text-align: center;
    padding-top: 25px;
    position: relative;
    z-index: 2;
}

.instructors > div {
    background-color: white;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    border-radius: 25px;
    width: 100%;
}

.instructor-content {
    padding: 40px 20px 10px 20px;
    flex: 1;
}

.instructors > div > div > h2 {
    font-size: var(--heading);
    font-weight: 600;
}

.instructors .course {
    font-size: var(--sub-heading-font);
    font-weight: 500;
    padding: 5px 0;
}

hr {
    border-top: 2px solid var(--primary);
    margin: 9px 0;
}

.tags span {
    display: inline-block;
    background: var(--accent);
    color: var(--primary);
    font-size: var(--accent-font);
    padding: 5px 10px;
    border-radius: 20px;
    margin: 2px;
}

.tags {
    padding-top: 10px;
    padding-bottom: 10px;
    flex-grow: 1;
}

.instructor-name {
    font-size: var(--accent-font);
}

.more {
    text-align: center;
    fill: var(--primary);
    text-decoration: none;
    color: var(--primary);
    font-weight: 700;
    padding: 15px 0;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.more > svg {
    height: 15px;

}

.contact {
    padding: 75px 0;
}

.blue-overlay {
    background-color: var(--primary);
    overflow: hidden;
    position: relative;
}

.blue-overlay > * {
    z-index: 1;
}

.blue-overlay::before {
    background-image: url('/assets/images/overlay.png');
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 0;
    overflow: hidden;
}

.blue-overlay-strong {
    background-color: var(--primary);
    position: relative;
}

.blue-overlay-strong > * {
    z-index: 2;
    position: relative;
}

.blue-overlay-strong::before {
    background-image: url('/assets/images/overlay.png');
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.25;
    z-index: 0;
    border-radius: 25px;
}

/* Laptop */
@media (max-width: 1665px) { 
    .container {
        width: 90%;
    }

    .header > nav {
        padding: 0 4% 0 6%;
    }
}

/* Tablet Landscape */
@media (max-width: 1200px) { 
}

/* Tablet Portrait */
@media (max-width: 1024px) { 
    .header > nav {
        padding: 0 3% 0 3%;
        border-bottom-left-radius: 50px;
    }

    .section {
        padding: 0 5% 100px 5%;
    }
}

/* Mobile Landscape */
@media (max-width: 880px) { 
    .small-menu {
        display: inline-block;
    }

    .full-menu {
        display: none;
    }

    .additional-info {
        margin: 50px auto 0 auto;
    }

    .landing-section {
        height: 600px;
    }

    .section {
        padding-bottom: 50px;
    }

    .mission > img {
        width: 100%;
        max-height: 400px;
        object-fit: cover;
    }

    .header > nav {
        padding: 0 30px 0 25px;
        border-bottom-left-radius: 50px;
    }
}

/* Mobile Portrait */
@media (max-width: 650px) { 
}