/*
 * University of Waikato ORSEE 3.4.x theme
 */

/* Header */
.orsee-masthead {
    background: linear-gradient(
        180deg,
        #be0403 0%,
        #a90000 100%
    );
    box-shadow: 0 2px 10px rgba(0,0,0,0.25);
}

/* Main page title */
.orsee-title {
    font-size: 2rem;
    font-weight: 700;
    color: #353535;
    letter-spacing: 0.03em;
}

/* Navigation panel */
.orsee-menu {
    border-radius: 16px;
}

.orsee-nav__section,
.orsee-nav__item {
    transition: all 0.15s ease;
}

/* Waikato gold highlight */
.orsee-nav__section.is-active,
.orsee-nav__item.is-active {
    background: #faa61a;
    color: #000;
    font-weight: 700;
}

.orsee-nav__section:hover,
.orsee-nav__item:hover {
    background: #ffe0a6;
}

/* Content panel */
.orsee-panel,
.orsee-public-faq-panel,
.orsee-content > div {
    border-radius: 16px;
}

/* Main welcome box */
.orsee-wiki-page {
    border-radius: 10px;
}

/* Footer */
.orsee-public-supportline {
    margin-top: 2rem;
    color: #666;
}

/* Links */
.orsee a {
    color: #be0403;
}

.orsee a:hover {
    color: #faa61a;
}

/* Reduce overall header height */

.orsee-brand-left {
    padding-top: 2px;
    padding-bottom: 2px;
}

.orsee-brand-logo {
    padding-top: 2px;
    padding-bottom: 2px;
}

/* Slightly shrink logos */

.orsee-brand-left img {
    max-height: 90px;
    width: auto;
}
.orsee-brand-logo img {
    max-height: 90px;
    width: auto;
}

