﻿/* ------------------------------------ Melbourne Vic Portal CSS ------------------------------------ */

/* ------------------------------------ Fonts ------------------------------------ */
/*Fonts Setup*/
@font-face {
    font-family: Gotham-Book;
    src: url('fonts/GothamBook.ttf');
}

@font-face {
    font-family: Denton;
    src: url('fonts/Denton-Light.otf');
}

a, a:visited {
    color: #ffffff;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

/* ------------------------------------ Navigation bar ------------------------------------ */
.header {
    min-height: 120px;
}

#header {
    box-shadow: none;
    min-height: 120px;
    margin-bottom: 5em;
}

#header nav .section {
    height: 100%;
    max-height: 120px;
}

#logo {
    padding: 5px 5px 5px 5px;
}

#logo img {
    padding: 5px 5px 5px 5px;
    width: 100px;
}

.nav-link {
    color: white;
}

a.nav-link {
    font-size: 14px;
}

a.nav-link:hover {
    text-decoration: underline;
    color: #777 
}

.nav-item {
    display: flex;
    justify-content: flex-end; /* Aligns the child elements (buttons) to the right */
    gap: 5px; /* Space between buttons */
}

.customBtnWidth {
    width: 150px;
}

@media (max-width: 2400px) {
    .navbar {
        padding-left: 100px;
        padding-right: 100px;
    }
}

@media (max-width: 1200px) {
    .customBtnWidth {
        width: 130px;
    }

    .navbar {
        padding-left: 50px;
        padding-right: 50px;
    }
}

@media (max-width: 800px) {
    .card h6 {
        min-height: 16px;
    }

    #logo img {
        width: 80px;
    }

    .customBtnWidth {
        width: 130px;
    }

    .navbar {
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media (max-width: 600px) {
    .card h6 {
        min-height: 16px;
    }

    #logo img {
        width: 80px;
    }

    .customBtnWidth {
        width: 130px;
    }

    .home-banner {
        margin-top: 52px;
    }

    .navbar {
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* ------------------------------------ Buttons ------------------------------------ */
.button, a.button, button, input[type="submit"], input[type="reset"], input[type="button"] {
    color: #ffffff; 
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 10px; 
    border: 2px solid white;
    text-transform: uppercase;
    transition: all 0.3s ease; 
    text-align: center;
    display: inline-block; 
    cursor: pointer; 
}

.button:hover, a.button:hover, button:hover, input[type="submit"]:hover, input[type="reset"]:hover, input[type="button"]:hover {
    background-color: inherit;
    border: 2px solid #777;
    text-decoration: underline;
}

.customFlex {
    display: flex !important;
    align-items: center;
    justify-content: center; /* This centers the text horizontally */
    text-align: center; /* Ensures text is centered in the button */
}

#btn-apply-promo-code {
    color: #ffffff; /*white text*/
}

.btn-link {
    color: white !important;
}

.btn-link:hover {
    color: #777 !important;
}

/*Hamburger display background*/
.navbar-toggler {
    background-color: #d2d3d5 !important;
}

/* ------------------------------------ Body ------------------------------------ */
.MelbourneVictoryBody {
    padding-bottom: 0 !important;
    font-size: 16px;
}

h1, h2, h3, h4, h5, h6, .heading_font {
    text-transform: uppercase;
}

h1, .page_heading h1, h1.boc_heading {
    text-align: center;
    margin: 0 0 25px;
}

h6 {
    font-weight: bold;
}

.banner-custom img {
    width: 100%;
    height: auto;
    max-width: none; 
}

.card-text {
    font-size: 0.8em !important;
}

/* ------------- Body - Membership Template ------------- */
#membershippackages {
    text-align: center;
    background: #eee;
    padding: 60px 0px;
    margin-bottom: 0;
}

.card-title {
    color: #000000 !important;
}

.card h6 {
    min-height: 38.38px;
}

.card-body {
    border-top: 5px solid #d2d3d5 !important; /*border top color*/
    min-height: 185px;
}

div.package {
    max-width: 950px;
    margin: 0 auto;
}

div.package .card {
    max-width: 400px;
}

div.item .card {
    min-width: 220px;
    height: 100%; /* Make sure that card will always wrap the inner item card with 100% height */
}

div.item .card .card-main-content div.input-group {
    max-width: 200px;
    margin: 0 auto;
}

div.card-footer {
    background: #eef2f5;
}

div.card-body > h3 {
    margin: 0.7em 0.7em;
}

/* ------------------------------------ Footer ------------------------------------ */
.banner-custom img {
    max-width: 100%;
}
.footer-container {
    color: white;
    min-height: 350px;
    padding:150px 0 100px 0;
}
.footer-nav a {
    color: white;
    margin: 0 10px;
    text-decoration: none;
}
.footer-nav a:hover {
    color: #777;
    margin: 0 10px;
    text-decoration: underline;
}

/* ------------------------------------ Favicon color custom - used in CheckOut views ------------------------------------ */
.fa {
    color: #031e2f !important;
}
.fa-plus:before {
    color: white;
}
.fa-minus:before {
    color: white;
}
.fa-shopping-cart {
    color: #031e2f !important;
}
.text-warning {
    color: #031e2f !important;
}

/* ------------------------------------ Progress bar color custom - used in CheckOut views ------------------------------------ */

/* Progress bar custom color*/
.progressbar li {
    color: #d2d3d5;
}
.progressbar li:before {
    border: 2px solid #d2d3d5;
}
.progressbar li:after {
    background-color: #d2d3d5;
}
.progressbar li.active {
    color: #1d4f91
}
.progressbar li.active:before {
    border-color: #1d4f91;
}
.progressbar li.active + li:after {
    background-color: #1d4f91;
}

/* ------------------------------------ Custom: Check Out ------------------------------------ */

.customTextLink {
    color: #1d4f91;
}
.customTextLink:hover {
    color: #777;
}
