/* Brand Colors */
:root {
    --color-dark-blue: #183456;
    --color-yellow: #f1c84a;
    --color-light-blue: #b3bcc7;
    --color-medium-blue: #677990;
    --color-light-yellow: #fcf4db;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--color-dark-blue);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    color: var(--color-dark-blue);
}

.bg-custom-bt {
    background-color: #fff;
}

.bg-custom-bt-grey {
    background-color: var(--color-light-blue);
    border-radius: 0 !important;
}

.alert.bg-custom-bt-grey {
    border-radius: 0 !important;
}

.bg-alert-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 26px;
    line-height: 1;
}

.carousel-caption {
    background-color: #fff;
    max-width: 500px !important;
    color: #000;
    padding: 30px !important;
    height: 190px !important;
}

.carousel-caption h5 {
    font-family: 'Outfit', sans-serif !important;
    font-weight: 900;
    font-size: 2.8rem !important;
    line-height: 1;
}

.carousel-caption p {
    color: #cd1719;
    font-family: 'Outfit', sans-serif !important;
    font-weight: 300;
    font-style: italic;
    font-size: 1.35rem !important;
}

/*p {*/
/*    font-family: 'Outfit', sans-serif !important;*/
/*    font-size: 18px;*/
/*}*/

h4 {
    font-family: 'Outfit', sans-serif;
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-center-box {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-logo-box {
    background-color: #fff;
    padding: 20px 50px 15px 50px;
}

.hero-logo {
    height: 70px;
    width: auto;
    display: block;
}

.hero-content-box {
    background-color: rgba(235, 235, 235, 0.9);
    padding: 25px 50px 30px 50px;
    text-align: center;
    min-width: 500px;
}

.hero-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    color: var(--color-dark-blue);
    line-height: 1.2;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.hero-subtitle {
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    font-style: italic;
    font-size: 1.4rem;
    color: var(--color-dark-blue);
    margin-bottom: 0;
}

.partner-title {
    font-family: 'Outfit', sans-serif;
    background-color: var(--color-dark-blue);
    color: #fff;
    font-size: 26px;
    line-height: 1;
    padding: 1rem;
}

.carousel-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    max-width: 800px;
    padding: 20px;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.carousel-caption h5 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    width: 100%;
}
.carousel-caption p {
    font-size: 1.25rem;
    margin-bottom: 0;
    width: 100%;
    font-weight: 600 !important;
}

/* Small Hero Section */
.small-hero {
    height: 300px;
    display: flex;
    align-items: center;
    text-align: center;
    background-color: #f8f9fa;
    margin-bottom: 2rem;
}

.small-hero h1 {
    margin: 0;
    font-family: 'Outfit', sans-serif;
    color: var(--color-dark-blue);
    font-weight: bold;
    margin-bottom: 0px;
    line-height: 1;
}

p a {
    color: var(--color-dark-blue);
    font-weight: 400;
    text-decoration: underline;
}

ol li a {
    color: var(--color-dark-blue);
    font-weight: 400;
    text-decoration: underline;
}

ol li {
    font-family: 'Outfit', sans-serif !important;
    font-size: 18px;
}

/* Program Table */
.program-table {
    border-radius: 4px;
    overflow: hidden;
}

.program-item {
    font-size: 1rem;
    line-height: 1.5;
    display: flex;
    align-items: center;
}

.program-time {
    font-weight: 700;
    min-width: 120px;
    display: inline-block;
}

.program-title {
    flex: 1;
}

.program-item a:hover {
    text-decoration: underline !important;
}

/* Sidebar Buttons */
.sidebar-button {
    display: block;
    transition: transform 0.2s ease;
}

.sidebar-button:hover {
    transform: scale(1.02);
}

.sidebar-button-inner {
    position: relative;
    display: block;
}

.sidebar-button-bg {
    width: 100%;
    max-width: 100px;
    height: auto;
    display: block;
}

.sidebar-button-text {
    position: absolute;
    top: 50%;
    left: 28%;
    transform: translateY(-50%);
    padding-right: 5px;
}

.sidebar-button-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    color: var(--color-dark-blue);
    line-height: 1.1;
    margin-bottom: 0.15rem;
    display: block;
}

.sidebar-button-desc {
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    font-style: italic;
    font-size: 1rem;
    color: var(--color-dark-blue);
    line-height: 1.25;
}

@media only screen and (max-width: 720px) {
    body {
        padding-top: 88px;
    }

    .navbar {
        position: fixed;
        width: 100%;
        z-index: 999;
        top: 0;
    }

    .navbar-brand img {
        width: 200px;
    }

    .nav-item {
        text-align: right;
    }

    .nav-item:nth-child(1) {
        margin-top: 30px;
    }

    .small-hero {
        height: 200px;
    }

    /* Hero section mobile */
    .hero-section {
        height: 350px;
    }

    .hero-logo-box {
        padding: 10px 25px 8px 25px;
    }

    .hero-logo {
        height: 40px;
    }

    .hero-content-box {
        padding: 15px 20px 20px 20px;
        min-width: auto;
    }

    .hero-title {
        font-size: 1.1rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    section.py-5 {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
    }

    .carousel-caption {
        position: unset !important;
        display: block !important;
        transform: unset !important;
        padding: 15px !important;
        height: auto !important;
        max-width: unset !important;
    }

    .carousel-caption p {
        font-size: 1.1rem !important;
    }

    .carousel-indicators {
        display: none !important;
    }

    .carousel-caption h5 {
        font-size: 1.8rem !important;
        margin-bottom: 0.5rem !important;
    }

    /* Sidebar buttons mobile */
    .sidebar-button-title {
        font-size: 1.3rem;
    }

    .sidebar-button-desc {
        font-size: 0.95rem;
    }
}
