
@import url('https://fonts.googleapis.com/css2?family=Niconne&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Ovo&display=swap');



:root {
    --bg-color-1: black;
    --bg-color-2: white;
    --font-body: 'Roboto', sans-serif;
    --font-tt-name: 'Ovo', sans-serif;
    --font-titles: "Niconne", cursive;
    --body-text-color-1: white;
    --body-text-color-1: black;
    --accent-color-1: #FE009F;
    --accent-color-2: #929292;

      
}

body {
    background-color: var(--bg-color-1);
    font-family: var(--font-body);
    margin: 0;
    padding: 0;
}

h1 {
    font-family: var(--font-titles);
    color: var(--accent-color-1);
    margin: 0;
    padding:0;
    font-size: 30px;
}

h2 {
    font-family: var(--font-body);
    color: var(--accent-color-1);
}

p{
    line-height: 1.5;
}

section {
    padding: 20px;
    justify-content: center;
}

.logo-bar {
    background-color: var(--bg-color-1);
    color: var(--body-text-color-1);
    padding: 10px;
    text-align: left;
   
}
.logo-bar img{
    height: 100px;
    width: auto;
    /* margin-left: 20px; */
}

.hero-section {
    background-color: var(--bg-color-1);
    /* text-align: center; */
    /* padding-bottom: 40px; */
   
}

.hero-intro{
    width: 100%;
    height: auto;
    margin: auto;
    justify-content: center;
    /* background-image: url('../images/heroSm.jpg');
    background-size: cover;
    background-position: center; */
   
}

.hero-intro img{
    width: 100%;
    height: auto;
    margin: auto;

}

.hero-img-md{
    display: none;
}

.hero-img-lg{
    display: none;
}


.hero-text-container {
    color: white;
    text-align: left;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Optional: for better text readability */
    /* padding: 20px; */
    border-radius: 10px;
    justify-content: center;
}

h2 span.tt-name a{
    font-family:var(--font-tt-name);
    color: #CDD2CA;
    text-decoration: none;
    font-size: 20px;
}

p span.tt-name a{
    font-family:var(--font-tt-name);
    color: #CDD2CA;
    text-decoration: none;
    font-size: 20px;
}

h2 span.pf-name {
    font-family:'Niconne';
    color: var(--accent-color-1);
    font-size: 30px;
}

.text-shadow {
    text-shadow: 2px 2px 5px #ffffff; /* Shadow properties */
}

footer{
    width: 100%;
    left: 0;
    color: var(--font-body);
    text-align: center;
    padding: 1px;
    background-color: var(--accent-color-1);
    font-style: bold;
}
@media (min-width: 768px) {
   
body {
    margin: 0;
    padding: 0;
}
.logo-bar {
    height: 100px;
    padding: 5px;
    justify-content: left;
}
.logo-bar img {
    height: 100px;
    width: auto;
    margin-left: 20px;
}
.hero-section {
    text-align: center;
    padding: 5px 20px 40px 20px;
}
.hero-section img {
    max-width: 100%;
    height: auto;
}

.hero-intro{
    position: relative;
    width: 100%;
    height: auto;
    background-image: url('../images/heroMd.jpg');
    background-size: cover;
    background-position: center;
    max-width: 1315px;
   

}

.hero-img-md{
    display: block;
}

.hero-img-sm{
    display: none;
}

.hero-text-container{
    position: absolute;
    top: 0;
    left: 0;
    /* transform: translateX(-50%); */
    color: white;
    text-align: left;
    background-color: rgba(0, 0, 0, 0.7); /* Optional: for better text readability */
    /* padding: 10px; */
    border-radius: 10px;
    justify-content: center;
    width: 100%;
    /* margin: 10px; */
   
}

.hero-text{
    padding: 30px;
}


}

  
@media (min-width: 1024px) {

.hero-section p {
    font-size: 1em;
}

.hero-intro{
    position: relative;
    width: 100%;
    height: auto;
    background-image: url('../images/heroLg.jpg');
    background-size: cover;
    background-position: center;  
}

.hero-text-container{
    position: absolute;
    top: 50%;
    Left: 60%;
    transform: translateY(-50%);
    color: white;
    text-align: left;
    background-color: rgba(0, 0, 0, 0.7); /* Optional: for better text readability */
    /* padding: 10px; */
    border-radius: 10px;
    justify-content: center;
    width: 40%;
    /* margin: 10px; */
   
}

.hero-text{
    align-self: center;
}

.hero-img-md{
    display: none;
}

.hero-img-lg{
    display: block;
}

h2 span.pf-name {
    font-family:'Niconne';
    color: var(--accent-color-1);
    font-size: 35px;
}


h2 span.tt-name a{
    font-family:var(--font-tt-name);
    color: #CDD2CA;
    text-decoration: none;
    font-size: 30px;
}

p span.tt-name a{
    font-family:var(--font-tt-name);
    color: #CDD2CA;
    text-decoration: none;
    font-size: 30px;
}

.hero-text h1 {
    padding: 0;
    font-size: 3em;
   
}

.hero-text p {
    font-size: 1.25em;
    padding: 0;
}

.hero-intro img{
    height: 100%;
    width: auto;
    margin: auto;
}


   
}

@media (min-width: 1200px) {
    .hero-text-container{
        width: 30%;
        /* margin: 10px; */
       
    }
}

