@import "./abstracts/variables";
@import "~bootstrap/scss/bootstrap";
@import "float.css";

@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,400;0,700;1,200&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;1,400;1,600&display=swap');
*,
*::before,
*::after{
    box-sizing: border-box;
}
html,
body{
    margin: 0;
    padding: 0;
}

:root{
    --blue: rgba(22, 43, 73, 1);
    --red: rgba(198, 32, 46, 1);
    --gold: rgba(235, 173, 33);
    --bone: rgba(248, 241, 224, 1);
    --btn-background-color:rgba(198, 32, 46, 1);
}
body{
    background-color: var(--bone);
    color: var(--blue);
    font-family: 'Montserrats', serif;
    height: 100vh;
}
h1,h2,h3,h4,h5,h6{
    color: var(--blue);
}

section{
    width: 100%;
}


.opening-line{
    font-size: 1.3rem;
    font-weight: 700;
    font-style:italic;
}

.flex{
    display: flex;
}

.grid{
    display: grid;
}

#tulsa-photo-col{
    display: grid;
    grid-template-columns: auto;
    justify-items: center;
    align-content: center;
}

.tulsa-article-img{
    justify-self: end;
}

.bg-flagblue{
    background-color: rgba(22, 43, 73, 1);
}

.light-text{
    color: var(--bone);
}

hr {
    color: var(--bone);
}

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

.blue{
    background-color: var(--blue);
}

.gold{
    background-color: var(--gold);
}
.bone{
    background-color: var(--bone);

}

.light-card{
    background-color: rgba(248, 241, 224, 1);
    color: var(--blue);
}

.askew{
    rotate: -35deg;
    z-index: 99;
}


.pt-10{
    padding-top: 150px;
}


.me{
    max-width: 400px;
    padding-top: 30px;
}



/*################### BUTN #########################*/

button{
    border-style: none;
}

.butn{
    padding: 10px;
    margin: 20px;
    background-color: var(--background-color);
    border: none;
    outline: none;
    position: relative;
    width: 100px;
    height: 50px;

    --accent-color:  rgba(235, 173, 33);
    --background-color: rgba(198, 32, 46, 1);
    --border-size: 2px
}

/*##### pop out ######*/

.butn.butn-border-pop::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: var(--border-size) solid var(--background-color);
    transition: top, left, right, bottom, 300ms ease-in-out
}
.butn.butn-border-pop:hover::before,
.butn.butn-border-pop:focus::before{
    top: calc(var(--border-size) * -3);
    left: calc(var(--border-size) * -3);
    right: calc(var(--border-size) * -3);
    bottom: calc(var(--border-size) * -3);
}

/*##### background slide ######*/



.butn.butn-background-slide::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--accent-color);
    z-index: -1;
}

.butn.butn-background-slide{

}











/*##### background circle ######*/







/*##### border underline ######*/






/*################################ footer ######################*/




footer {
    background-color: var(--blue);
    color: var(--bone);
    padding-top: 40px;

}
footer hr{
    color: var(--bone);
}

footer ul li {
    font-size: 1.1rem;
    padding-bottom: 15px;
}
footer ul li a{
    color: var(--bone);
    text-decoration: none;
}
footer ul li a:hover{
    color: var(--gold);
}
footer  h2{
    text-align: left;
    color:var(--bone)!important;
}
footer p{
    text-align: center;
}

@media only screen and (max-width: 992px){
    .footer-flatten-address-col{
        display: flex;
        justify-content: space-between;
    }
}
@media only screen and (max-width: 368px){
    .footer-flatten-address-col{
        display: grid;
    }
}
@media only screen and (max-width: 768px){
    .footer-hide-logo-col{
        display: none;
    }

}
/*################################ NAV ######################*/

#nav ul{
    text-transform: uppercase;
}

#nav li{
    position: relative;
}

#nav ul li a::after{
    content:'';
    display: block;
    height: 3px;
    width: 0%;

    background-color: var(--gold);
    position: absolute;
    transition: all ease-in-out 250ms;
}

#nav ul li a:hover::after{
    width: 10%;
}
#nav ul li a::before{
    content:'';
    display: block;
    height: 3px;
    width: 0%;

    background-color: var(--gold);
    position: absolute;
    transition: all ease-in-out 250ms;
}

#nav ul li a:hover::before{
    width: 10%;
}
.navbar {
    --bs-navbar-toggler-padding-y: 0.25rem;
    --bs-navbar-toggler-padding-x: 0.75rem;
    --bs-navbar-toggler-font-size: 1.25rem;
    --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28248, 241, 224, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    --bs-navbar-toggler-border-color: rgba(248, 241, 224, 1);;
    --bs-navbar-toggler-border-radius: .5rem;
    --bs-navbar-toggler-focus-width: 0.25rem;
    --bs-navbar-toggler-transition: box-shadow 0.15s ease-in-out;
}
.navbar-toggler {
    padding: var(--bs-navbar-toggler-padding-y) var(--bs-navbar-toggler-padding-x);
    font-size: var(--bs-navbar-toggler-font-size);
    line-height: 1;
    color: rgba(248, 241, 224, 1);
    background-color: transparent;
    border: var(--bs-border-width) solid var(--bs-navbar-toggler-border-color);
    border-radius: var(--bs-navbar-toggler-border-radius);
    transition: var(--bs-navbar-toggler-transition);
}


/*################## JUMBOTRON ###############################*/


.jumbotron {
    background-image: url("../img/1200x630-logo.png");
    background-size: cover;
    background-color: transparent;
    background-position: bottom left;
    height: calc(0.95 * calc(.5 * 100vw));

  }
.jumbotron-2 {
    background-image: url("../img/Tulsa-King.png");
    background-size: cover;
    background-color: transparent;
    background-position: bottom left;
    height: calc(0.95 * calc(.5 * 100vw));

  }
.jumbotron-3 {
    background-image: url("../img/1200x630-downtown.png");
    background-size: cover;
    background-color: transparent;
    background-position: bottom left;
    height: calc(0.95 * calc(.5 * 100vw));

  }

.move-text-right{
    justify-content:flex-end;
    align-items:flex-end;
    align-content: flex-end;
    align-items: flex-end ;
}

/*######################## CONTACT FORM ##########################*/

.response_msg{
    margin-top:10px;
    font-size:13px;
    background:#E5D669;
    color:#ffffff;
    width:250px;
    padding:3px;
    display:none;
}








/*###########################################################################*/
/*##################################### INDEX ###############################*/
#index-main{
    overflow: hidden;
    min-height: calc(100vh - 40px);
    margin-bottom: 250px;
  }

#services h1 {
    font-size: calc(1.975rem + 2.5vw);
    text-align: center;
    color: var(--bone);
}
#services h2 {
    text-align: center;
    color: var(--bone);
}
#services h4 {
    text-align: center;
    color: var(--bone);
}
#services{
    text-align: center;
    color: var(--bone);
}

.contact-card{
    width: 60vw;
}

.last-row{
    width: 100%;
    height: 10vh;
}

#services .askew{
    width: 110%;
    rotate: -5deg;
    margin-bottom: -50px;
}
/*########## INDEX - #faq #########*/

#faq .askew{
    rotate: -35deg;
}

.faq-resize{
    width: 35vw;
}


/*###########################################################################*/
/*##################################### ABOUT ###############################*/

#inside-tulsa-king{
    min-width: 35vw;
    min-height: calc(1.777777777777778 * calc(0.5625 * 35vw) );
}






/*###########################################################################*/
/*##################################### BLOG ###############################*/


#blog-main{
    grid-template-columns: 1fr 3fr 1fr;

}

#blog-main > .blog-main-child{
    padding: 10px 10px 20px 20px;
    border: 2px darkslategrey solid;
    justify-content:space-evenly;
}

#blog-main > .blog-main-child:nth-child(odd){
    background-color: darkgrey;
    padding: 10px 10px 20px 20px;
    border: 2px darkslategrey solid;
}

.stubs{
    padding: 20px 40px;
    text-align: center;
}





/*###########################################################################*/
/*##################################### TULSA ###############################*/


#tulsa-main img{
    width: min(250px, .30 * 100vw);
    height: min(250px, .30 * 100vw);
}
#tulsa-main .card{
    background-color: rgba(248, 241, 224, .4);
}
#tulsa-main .card a{
    color: rgba(198, 32, 46, 1);
}
#tulsa-main h2,h3,h4,h5,h6{
    font-family: 'Josefin Sans', sans-serif;
}

#tulsa-main h1{
    font-family: 'Montserrats', serif;
    font-size: max(40px, .05 * max(2rem, 100vw));
}

#tulsa-main p{
    text-align: left;
}

.tulsa-btn{
    padding: 5px 5px;
    margin: 10px 5px;
    border-radius: 10%;
    border-color: var(--gold);
    border-width: 1px;
    background-color: var(--red);

}

.static-1{
    height: 450px;
    background-image: url(../img/1600x900-parralax/1600x900-club.jpg);
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}
.static-2{
    height: 450px;
    background-image: url(../img/1600x900-parralax/1600x900-pray.jpg);
    background-attachment: fixed;
    background-size: cover;
    background-position: center bottom;
}
.static-3{
    height: 450px;
    background-image: url(../img/1600x900-parralax/1600x900-cains.jpg);
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}
.static-4{
    height: 450px;
    background-image: url(../img/1600x900-parralax/1600x900-driller.jpg);
    background-attachment: fixed;
    background-size: cover;
    background-position: center top;
}
.static-5{
    height: calc(.56 * 100vw);
    background-image: url(../img/1600x900-parralax/1600x900-bok.jpg);
    background-attachment: fixed;
    background-size: cover;
    background-position: right bottom;
}

.logo-div{
    height: 250px;
    width: 600px;
    background-image: url(../img/600x250-ttownastrologo-transparent.png);
    background-size: cover;
    align-self: center;
    margin-top: 150px;
}

.grid-container{
    display: flex;
}

.photo{
    width: 80px!important;
    height: 80px!important;
    display: inline;
}

.footer-space{
    padding-top: 40px;
}

.tagline-col{
    display: flex;
    align-items: baseline;
}

.tagline{
    align-self: baseline;
    font-size: .8rem;
    font-family: Josefin Sans;
    font-weight: 700;
    line-height: .8rem!important;


}
.tagline-park{
    align-self: baseline;
    font-size: .8rem;
    font-family: Josefin Sans;
    font-weight: 700;
    padding-bottom: 40px;
    line-height: .8rem!important;
    margin-top: 15px;

}
.tagline-buck{
    align-self: baseline;
    font-size: .8rem;
    font-family: Josefin Sans;
    font-weight: 700;
    padding-bottom: 40px;
    line-height: .8rem!important;
    margin-top: 15px;

}

#tulsa-main p{
    line-height: 1.8rem;
}

#intro-article p{
    line-height: 1.8rem;
}

#intro-article img{
    width: 100%;
}

.self-center{
    justify-self: center;
}

.link ul li{
    list-style-type: none;

}
.link ul li a{
    text-decoration:none;
}
.link ul li a:hover{
    text-decoration:overline;
}

#more-places-article .red-tulsa-img{
    width: 100%;
}
#more-places-article a{
    color: var(--red);
} 
/* ########################## @media ####################################*/

@media only screen and (min-width: 576px){
    .navbar-expand-sm .navbar-collapse {
        display: flex !important;
        flex-basis: auto;
        justify-content: flex-end;
    }
    }
    
    @media only screen and (min-width: 576px){
    #nav ul li a:hover::before{
        width: 70%;
    }
    
    #nav ul li a:hover::after{
        width: 70%;
    }
    }

    @media only screen and (max-width: 576px){

        .twenty-paragraphs-gone{
            display: none;
        }

        #tulsa-main img{

            height: min(250px, .35 * 100vw);
        }

    } 

    @media only screen and (max-width: 360px){

    #inside-tulsa-king{
        justify-self: center;
        width: 250px;
        height: 141px;
    }

} 


