:root {
    --brand-green: #aacb51;
}

html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}

#title-logo {
    font-weight: 1500;
    font-size: 3.5rem;
    color: var(--brand-green);
    -webkit-text-stroke: 1px black;
}

@media (max-width: 600px) {
    #title-logo {
        font-size: 2.2rem;
    }

    .header-icons {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        width: 100%;
        justify-content: flex-start;
        align-items: center;
        gap: 0.5rem;
        padding-left: 1rem;
        padding-top: 0.5rem;
    }

        .header-icons .nav-item {
            flex: 0 0 auto;
            flex-wrap: nowrap !important;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
        }

        .header-icons i {
            font-size: 1.5rem;
            margin-left: 0.5rem;
            margin-right: 0.5rem;
        }

    .navbar-nav.header-icons {
        margin-top: 0.5rem;
    }
}


#navigation-nav {
    background-color: antiquewhite;
}

.fas, .fab {
    font-size: 3rem;
}

#navigation-nav li a {
    font-size: 2rem;
    font-weight: 400;
    color: black;
    padding: 0 3rem;
}

.host-card {
    background-color: var(--brand-green);
    border-radius: 3rem;
    margin-bottom: 3rem;
}

.host-text {
    padding-top: 1rem;
    padding-left: 2rem;
}

.host-image {
    padding-top: 1rem;
    padding-right: 1rem;
}

.contact-card {
    border: 1px solid #888888;
    border-radius: 2rem;
    padding: 2rem;
}

.highlight-section {
    background: #f5f8fa;
    border-radius: 1rem;
    padding: 2rem 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    margin-bottom: 2rem;
}

    .highlight-section h2 {
        color: #1a237e;
        font-weight: 700;
    }

    .highlight-section .lead {
        color: #37474f;
    }

.navbar-nav .nav-link {
    font-weight: 100;
    font-size: 1.25rem;
    -webkit-text-stroke: 1px black;
    padding: 0 1.5rem;
    transition: color 0.2s;
}

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link:focus,
    .navbar-nav .nav-link.active {
        color: #1a237e !important;
        text-decoration: underline;
    }

.privacy-title {
    color: #1a237e;
    font-weight: 700;
}

.privacy-section-title {
    color: #1a237e;
    font-weight: 700;
}

.privacy-subsection-title {
    color: #37474f;
    font-weight: 600;
}


.cc-podcast-apps-content {
    background: #f5f8fa;
    border-radius: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    margin-bottom: 2rem;
    padding: 2rem 1.5rem;
}

    .cc-podcast-apps-content .title {
        color: #1a237e;
        font-weight: 700;
    }

.cc-podcast-apps {
    gap: 1.5rem;
    justify-content: center;
}

.podcast-icon {
    width: 56px;
    height: 56px;
    object-fit: cover;
    border: 2px solid #e0e0e0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: box-shadow 0.2s, border-color 0.2s;
}

    .podcast-icon:hover {
        box-shadow: 0 4px 16px rgba(26,35,126,0.15);
        border-color: var(--brand-green, #aacb51);
    }