@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary-color: #1C5EAD;
    --secondary-color: #153d6e;
    --box: #FCFCFC;
    --light: #fff;
    --dark: #1b1b1b;
}

body::-webkit-scrollbar {
	width: 0.7em;
}

body::-webkit-scrollbar-track {
    background-color: #dfeeff;
}

body::-webkit-scrollbar-thumb {
	background-color: var(--secondary-color);
    border-radius: 20px;
}

.dropdown-menu {
    z-index: 99;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 20px;
    border: 0px;
    padding: 15px;
}

.dropdown-menu a {
    padding: 10px 20px;
    font-size: 14px;
    text-transform: none;
    font-weight: 500;
    border-radius: 20px;
}

.dropdown-menu a, .dropdown-menu a:focus {
    display: flex;
    align-items: center;
    font-size: 15px;
    white-space: nowrap;
    transition: 0.3s;
}

.dropdown-menu a:focus {
    background-color: #1C5EAD !important;
    color: #fff;
}


/* MAIN */

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

p {
    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: 400;
    margin-bottom: 0px;
}

h3 {
    font-size: 1.5rem;
    line-height: 2rem;
    font-weight: 600;
    margin-bottom: 0px;
}

h1 {
    font-size: 2.5rem;
    line-height: 2.5rem;
    font-weight: 700;
    margin-bottom: 0px;
}

.text-blue {
    color: var(--secondary-color);
}

.a-blue {
    text-decoration: none;
    color: var(--secondary-color);
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    font-size: 12px;
    margin-top: 15px;
}

.a-blue:hover {
    text-decoration: none;
    color: var(--primary-color);
}

.a-blue-large {
    text-decoration: none;
    color: var(--secondary-color);
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.a-blue-large:hover {
    text-decoration: none;
    color: var(--primary-color);
}

.noAStyle {
    text-decoration: none;
    color: var(--dark);
}

.button {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--secondary-color);
    color: var(--light);
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.button:hover {
    background-color: var(--primary-color);
    color: var(--light);
}

.button-danger {
    display: inline-block;
    padding: 8px 20px;
    background-color: #9F372C;
    color: var(--light);
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.button-danger:hover {
    background-color: #b94636;
    color: var(--light);
}


.button-light {
    display: inline-block;
    padding: 8px 20px;
    background-color: var(--light);
    color: var(--dark);
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.button-light:hover {
    background-color: var(--primary-color);
    color: var(--light);
}

.page-padding {
    padding-left: 15%;
    padding-right: 15%;
}

.text-box {
    padding: 2rem 2rem;
    background-color: var(--box);
    border-radius: 25px;
    width: 100%;
    min-height: 400px;
}

.image-box {
    background-color: var(--box);
    border-radius: 25px;
    width: 100%;
    min-height: 400px;
    object-fit: cover;
    height: 100%;
}

.image-box img {
    width: 100%;
    border-radius: 25px;
    object-fit: cover;
    height: 100%;
}

.icon {
    height: 115px;
    margin-bottom: 20px;
}

/* FORMS */

.form-control {
    color: var(--dark);
    background-color: #eeeeee;
    border: 0px;
    height: 3em;
    border-radius: 20px;
    transition: all 0.2s ease-in-out;
    outline: none !important;
    box-shadow: none;
}

.form-control:focus {
    color: var(--dark);
    background-color: #c2c2c2;
    outline: none !important;
    box-shadow: none;
}

.form-check-input {
    background-color: #dfdfdf;
    width: 1em;
    height: 1em;
    border: 0px;
    border-radius: 20px;
    outline: none !important;
    box-shadow: none;
    outline: 0;
    transition: all 0.2s ease-in-out;
}

.form-control:focus {
    outline: none !important;
    box-shadow: none;
    outline: 0;
}

/* HEADER */

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2.2rem 2rem;
    background-color: var(--light);
}

.header-img {
    width:120px;
}

/* NAVBAR CONTAINER */
.navbar {
    width: 85%; /* Keep navbar width similar to reference */
    margin: 20px auto;
}

/* NAVBAR ITEMS */
.navbar-nav {
    flex-grow: 1;
    display: flex;
    justify-content: center; /* Keep items centered */
    align-items: center;
    min-height: 70px;
    gap: 30px; /* Adjust spacing between items */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 35px 0px 0px 35px; /* Match button roundness */
    background-color: #fff;
    font-weight: 600;
    font-size: 12px;
}

/* JOIN US BUTTON */
.button-mob {
    background-color: #1C5EAD;
    color: white;
    font-weight: bold;
    min-height: 70px;
    padding: 10px 20px;
    border-radius: 0px 35px 35px 0px; /* Match navbar roundness */
    white-space: nowrap;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 12px;
}

/* SCORE SECTION - MOVED OUTSIDE NAVBAR */
.score-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

/* SCORE BOX */
.score-section {
    display: flex;
    align-items: center;
    background: #EFEFEF;
    border-radius: 35px;
    padding: 5px 15px;
    font-weight: bold;
    min-height: 70px;
    transition: all 0.3s ease-in-out;
}

.score-section:hover {
    background: #c4c4c4;
}

/* SCORE LOGOS */
.score-logo {
    width: 30px;
    height: 30px;
    border-radius: 50px;
}

.navbar-toggler {
    border: 0px !important;
    outline: none !important;
    font-size: 30px;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 #ffffff00 !important;
}

.navbar-toggler .bi {
    color: #fff !important;
    font-size: 35px;
    transition: all 0.2s ease-in-out;
}

.navbar-toggler .bi:hover {
    color: #c2c2c2 !important;
}

.admin .nav-link {
    color: var(--dark);
    transition: all 0.2s ease-in-out;
    border-radius: 20px;
}

.admin .nav-link:hover {
    color: var(--light);
    transition: all 0.2s ease-in-out;
    background-color: #c9c9c9 !important;
    border-radius: 20px;
}

.admin .nav-link:focus {
    color: var(--light);
    transition: all 0.2s ease-in-out;
    background-color: #c9c9c9 !important;
    border-radius: 20px;
}

.admin .nav-link.active {
    color: var(--light);
    transition: all 0.2s ease-in-out;
    background-color: #139DCF !important;
    border-radius: 20px;
}

/* FOOTER */

.copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 2rem;
    background-color: #1C5EAD;
    border-radius: 0px 0px 25px 25px;
    color: var(--light);
}

.copyright p {
    font-size: 12px;
}

.footer {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 2rem;
    border-radius: 25px 25px 0px 0px;
    background-color: #FCFCFC;
}

.footer-logo {
    height: 85px;
}

.footer h2 {
    font-weight: 800;
    margin-bottom: 0px;
}

.contact-box {
    padding: 2rem 2rem;
    background-color: #f3f3f3;
    border-radius: 25px;
    width: 100%;
    margin-bottom: 15px;
    min-height: 200px;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.contact-box:hover {
    background-color: #e4e4e4;
}

.contact-text .bi {
    font-size: 30px;
    color: var(--primary-color);
}

.contact-text h5 {
    margin-top: 10px;
    font-weight: 600;
    margin-bottom: 0px;
}



/* HOME */

.home-hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-image: url('../img/bg_1.png');
    background-size: cover;
    background-position: center;
    min-height: 700px;
    margin-top: -170px;
    width: 100%;
}

.page-hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 500px;
    margin-top: -170px;
    width: 100%;
}

.page-hero h1 {
    font-size: 100px;
    font-style: italic;
    font-weight: 800;
    margin-top: 150px;
}

.page-hero h4 {
    font-size: 35px;
    margin-bottom: 20px;
    font-weight: 600;
}

.page-hero .parent {
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    color: #fff;
}

.home-row {
    margin-top: -60px;
}

.home-hero h1 {
    font-size: 100px;
    font-style: italic;
    font-weight: 800;
}

.home-hero h4 {
    font-size: 35px;
    margin-bottom: 20px;
    font-weight: 600;
}

.home-hero .parent {
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    color: #fff;
}

.bottom-box {
    padding: 2rem 2rem 0rem 2rem;
    border-radius: 20px 20px 0px 0px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(180deg, rgba(0, 209, 255, 0.07) 0%, rgba(93, 205, 246, 0.53) 100%);
}

.bottom-title {
    position: relative;
}

.bottom-title img {
    position: absolute;
    bottom: -15px;
    left: 10px;
}

.home-padding {
    margin-top: -90px;
}

/* OUR TEAM */

.profile-box {
    background: #F6F6F6;
    width: 100%;
    border-radius: 20px;
    border: 0px;
    padding: 30px;
    margin-bottom: 20px;
    position: relative;
    cursor: default;
    top: 0;
    transition: top ease 0.5s;
    display: flex;
}

.profile-box:hover {
    top: -10px;
}

.profile-box img {
    height: 150px;
    border-radius: 20px;
    margin-right: 30px;
}

.profile-box .quote {
    border-radius: 15px;
    padding: 15px;
    margin-top: 15px;
    background: #eeeeee;
}

.profile-box-small {
    padding: 15px;
    align-items: center;
}

.join-box {
    background-color: #F6F6F6;
    cursor: pointer;
    transition: 0.3s;
    border: #F6F6F6 5px solid;
    border-radius: 20px;
    box-sizing: border-box;
}

.join-box:hover {
    border: 5px solid #999999;
}

.join-box .find-out-more {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}



/* CONTACT */

.map {
    border-radius: 20px;
    position: relative;
    top: 0;
    transition: top ease 0.5s;
}

.map:hover {
    top: -10px;
}

/* ERROR */

.error {
    height: 100vh;
    padding-top: 150px;
}

/* MOBILE */

@media (max-width: 767px) {
	.copyright {
        display: block;
    }

    .copyright .copyright-text {
        margin-bottom: 10px;
    }

    .footer {
        display: block;
    }

    .navbar-nav {
        border-radius: 35px;;
    }

    .footer img {
        margin-bottom: 10px;
    }

    .hero-text {
        padding-left: 5% !important;
        width: 85%;
    }

    .profile-box {
        display: block;
    }

    .profile-box img {
        margin-right: 0px;
        margin-bottom: 15px;
    }

    .navbar-collapse {
        background: #fff;
        box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
        transition: 0.3s;
        border-radius: 35px;
        border: 0px;
        padding: 15px;
        margin-bottom: 20px;
        position: absolute;
        top: 150px;
    }

    .button-mob {
        margin-top: 15px;
        border-radius: 35px;
    }

    .page-padding {
        padding-left: 5%;
        padding-right: 5%;
    }

    .home-hero h1 {
        font-size: 55px;
        font-style: italic;
        font-weight: 800;
    }
    
    .home-hero h4 {
        font-size: 20px;
        margin-bottom: 10px;
        font-weight: 600;
    }

    .home-hero {
        margin-top: -200px;
    }

    .home-hero img {
        width: 100%;
        margin-top: 50px;
    }

    .home-hero .hero-text h1 {
        width: 100%;
    }

    .bottom-box {
        display: block;
    }

    .bottom-box img {
        width: 100%;
        margin-top: 50px;
    }

    .desktop-only {
        display: none;
    }

    .header-img {
        width:150px;
    }
    
}

/* SITE NOTIFS - BY COASTERS & CRAFTERS LTD */
.site-notif {
    z-index: 10000;
    position: fixed;
    top: 50px;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40%
}

.site-notif div {
    padding: 5px;
    margin-bottom: 5px;
    height: 50px;
}

.site-notif .success {
    background-color: #91ffe3 !important;
}

.site-notif .success .icon {
    color: #00956F;
}

.site-notif .warning {
    background-color: #f8c87b !important;
}

.site-notif .warning .icon {
    color: #BB7910;
}

.site-notif .danger {
    background-color: #fd968b !important;
}

.site-notif .danger .icon {
    color: #9F372C;
}

.site-notif .close {
    cursor: pointer;
}
