@import "var.css";
@import "navigation.css";
@import "heritage.css";
@import "profiles.css";
@import "contact.css";
@import "hero_keypractice.css";
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700;900&display=swap');

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--scroll-padding, 50px);
}

body {
    font-family: var(--pri-font-family);
    line-height: 1.8rem;
    font-size: 1.0rem;
    padding-top: 13rem;
    background-color: var(--bodycolour);
    color: var(--darkgreen);
}

@media (max-width:1475px) {
    body {
        padding-top: 11rem;
    }
}

@media (max-width:1100px) {
    body {
        padding-top: 9rem;
    }
}

@media (max-width:900px) {
    body {
        padding-top: 7.6rem;
    }
}


@media (max-width:500px) {
    body {
        padding-top: 6.4rem;
    }
}

.main-container {
    max-width: 1920px;
    margin: auto;
}

/* key elements*/
.pri-btn {
    background-color: var(--gold);
    padding: 0.8rem 2.5rem;

    font-family: var(--sec-font-family);
    font-size: 1.2rem;
    color: white;

    text-underline-offset: 0.15rem;
    border: none;
    text-decoration: underline;
    z-index: 0;
}

.pri-btn:hover {
    background: var(--btn-rollover);
    color: white
}

.pri-header {
    position: relative;
    z-index: 10;

    padding-left: 0.7rem;

    font-size: 1.8rem;
    font-family: var(--sec-font-family);
    font-weight: bold;
    color: var(--darkgreen);
    margin-top: 2.5rem;
    margin-left: 3.5rem;

}


.pri-header::after {
    content: "";
    width: 50px;
    height: 50px;

    background-image: url(../images/pri-header-icon.png);
    background-size: contain;

    position: absolute;
    top: -0.1rem;
    left: 0;
    z-index: -2;
}


.sec-header-white {
    font-family: var(--sec-font-family);
    font-size: 1.5rem;
}


#hero {
    background-image: url(../images/heroimage.jpg);
    background-size: cover;
    position: relative;
    background-position: center center;
    min-height:70vh;
    
}

@media (max-width:1380px) {
    #hero {
        min-height:60vh;
    }
 }

 @media (max-width:1190px) {
    #hero {
        min-height:50vh;
    }
 }

 @media (max-width:1000px) {
    #hero {
        min-height:45vh;
    }
}

@media (max-width:900px) {
    #hero {
        min-height: 40vh;
    }
}

@media (max-width:800px) {
    #hero {
        min-height:35vh;
    }
}

@media (max-width:700px) {
    #hero {
        min-height:30vh;
    }
}

@media (max-width:600px) {
    #hero {
        min-height: 25vh;
    }
} 

@media (max-width:500px) {
    #hero {
        min-height:20vh;
    }
}

@media (max-width:400px) {
    #hero {
        min-height: 17vh;
    }
}



.site-footer {
    background-color: var(--green);
    font-family: var(--sec-font-family);
    color: var(--white);
    text-decoration: none;
    padding-top: 2.5rem;
    font-size: 1.1rem;
}

.sm-contact-details {
    font-size: 0.8rem;
}

.footer-links {
    padding-left: 0;
    list-style: none
}

.footer-links a {
    color: white;
    text-decoration: none;
}

.footer-links a:active,
.footer-links a:focus,
.footer-links a:hover {
    color: var(--gold);
    text-decoration: none;
}

.copyright-footer {
    background-color: var(--bodycolour);
    font-family: var(--sec-font-family);
    color: var(--green);
}

.copyright-footer h6 {
    font-size: 0.8rem;
    margin-bottom:0;
}

.footer-modals {
    text-decoration:none;
    color:var(--green);
}

.footer-modals:hover {
    color:var(--gold)
}

.something {
    height: var(--slide-height);
    background-color: red;
    ;
}

