@import url('https://fonts.googleapis.com/css?family=Maven Pro|Nunito|Comfortaa');

/* === GLOBAL === */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Hyper Link Animation - White Under line */
a::before 
{
  content: '';
  position: absolute;
  width: 100%;
  height: 3px;
  border-radius: 4px;
  background-color: #ffffff;

  bottom: -4px;
  left: 0;
  transform-origin: center;
  transform: scaleX(0);
  transition: transform .3s ease-in-out
}
a:hover::before 
{
  transform-origin: center;
  transform: scaleX(1);
}


/* Presentational Styles */
a 
{
  color: white;
  position: relative;
  text-decoration: none;
  font-family: 'Maven Pro', sans-serif;
  font-size: 15px;
  font-weight: 400;
}
ul
{
    list-style: none;
}
.active
{
    color: white;
    text-decoration: underline;
    font-weight: bold;
}
body, html
{
    /* overflow-x: hidden; */
    /* overflow-x: initial !important; */
    overflow-x: intial !important;
    font-family: "Maven Pro", sans-serif;
}

/* Navigation Bar (Top of all Pages) */
.nav-links
{
    display: flex;
    margin-left: auto;
    margin-right: auto;
}
.nav-links li
{
    margin: 20px 20px;
}
.nav_header 
{
  
    height: 60px;
    width: 100%;
    table-layout: fixed;
    display: flex;
    flex-flow: row nowrap;

}
.header > div 
{
    display: table-cell;
}
.head_container
{
    height: 60px;
    position: fixed;
    width: 100%;
    text-align: center;
    z-index: 10;
}
.head_left
{
    width: 150px;
    align-items: center;
    display:flex;
    color: rgb(11, 155, 245);
    padding-left: 20px;
}
.head_bottom
{
    height: 100%;
    display:flex;
    padding: 0px;
    color: white;
    background: rgb(26, 66, 126);
    background: linear-gradient(to bottom, rgb(4, 33, 75,0.5), rgb(26, 66, 126,0.5));
    text-align: center;
    vertical-align: middle;
}
.head_right
{
    width: 150px;
    align-items: center;
    display:flex;
    color: #8683be;
    padding-left: 20px;
}


body
{
    background-color: black;
}



/* Link Button - Rounded Edges */
.ctn
{
    margin-top: 10px;
    padding: 10px 15px;
    background-color: rgb(26, 66, 126); 
    border-radius: 25px;
    color: white;
}



/* Sections & Home page news block */
section
{
    width: 90%;
    margin: 40px auto;  
}
.title
{
    text-align: center;
    font-size: 4vmin;
    color: black
}

.row
{
    border-radius: 10px;
    margin-top: 30px;
    padding-bottom: 10px;
    display: flex;
    align-items: center;
    width: 100%;
    
    justify-content: space-between;
    background: rgb(26, 66, 126);
    background-image: linear-gradient(rgb(0, 20, 50),rgb(10, 26, 49), rgb(3, 33, 76));
    box-shadow: 0px 0px 4px 1px rgba(0, 3, 22, 0.5);
}

.row_text
{
    border-radius: 10px;
    margin-top: 30px;
    padding-bottom: 25px;
    display: flex;
    align-items: center;
    width: 100%;
    
    justify-content: space-between;
    background: rgb(26, 66, 126);
    background-image: linear-gradient(rgb(0, 20, 50),rgb(10, 26, 49), rgb(3, 33, 76));
    box-shadow: 0px 0px 4px 1px rgba(0, 3, 22, 0.5);
}

.col
{
    width: 100%;
}

.row .col 
{
    display: flex;
    flex-direction: column;
    align-items:center;
}
img
{
    margin-top: 30px;
    width: 85%;
    max-height: 400px;
    overflow: hidden;
    object-fit: cover;
}

.text_panel 
{
    margin-top: 30px;
}

.panel_spacer
{
    margin-top: 170px;
}


.about-img 
{
    width: 250px;
    height: 250px;
    border-radius: 50%;     
    object-fit: cover;
    border: 5px solid rgb(26, 66, 126);   
    position: absolute;
    left: 50%;
    transform: translateX(-50%) translateY(-70%);
    z-index: 1;              
}

.tshirt-img 
{

    width: 100%;
    height: auto; /* keeps aspect ratio */
    max-width: 350px; /* limits scaling on large screens */
    border-radius: 10%;
    object-fit: cover;
    border: 5px solid rgb(89, 168, 205);
    box-shadow: 0 0 5px rgb(89, 168, 205), 0 0 20px #2a80f9;
    display: block;
    margin: 0 auto;
}



/* Glow Buttons */

.center
{
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
  }
  .outer{
    position: relative;
    margin: 0 50px;
    background:  #2a80f9;

  }
  .button{
    height: 70px;
    width: 220px;
    border-radius: 50px;
  }
  .circle{
    height: 200px;
    width: 200px;
    border-radius: 50%;
  }
  .outer button, .outer span{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .outer button{
    background: #000003;
    color: #f2f2f2;
    outline: none;
    border: none;
    font-size: 20px;
    z-index: 9;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
  }
  .button button
  {
    height: 60px;
    width: 210px;
    border-radius: 50px;
  }
  .circle button
  {
    height: 180px;
    width: 180px;
    border-radius: 50%;
  }
  .outer span
  {
    height: 100%;
    width: 100%;
    background: inherit;
  }
  .button span
  {
    border-radius: 50px;
  }
  .circle span
  {
    border-radius: 50%;
  }
  .outer:hover span:nth-child(1){
    filter: blur(7px);
  }
  .outer:hover span:nth-child(2){
    filter: blur(14px);
  }
  .outer:hover
  {
    background: linear-gradient(#14ffe9, #ffeb3b, #ff00e0);

    animation: rotate 1.5s linear infinite;
  }
  @keyframes rotate {
    0%{
      filter: hue-rotate(0deg);
    }
    100%{
      filter: hue-rotate(360deg);
    }
  }






.panel_title
{
    margin-top: 20px;
    margin-bottom: 20px;
    color: white;
    font-size: 25px; 
    text-align: center;
}

.panel_title_intro
{
    color: white;
    font-size: 30px; 
    align-items: flex-start;
    margin-top: 100px;
    padding: 0px 0px 10px 0px;
    text-align: center;

}

.panel_title_small
{
    color: white;
    font-size: 25px; 
    align-items: flex-start;
    padding: 15px 10px 0px 20px;

}

.latest_news_title
{
    margin-top: 10px;
    color: white;
    font-size: 2.5vmin;
    
}
.latest_news_text
{
    color: white;
    font-size:small;
    text-align: justify;
    padding: 10px 40px;
}



.panel_text
{
    color: white;
    font-size:small;
    text-align: justify;
    padding: 5px 10px 0px 20px;
    font-size: 16px;
    color: #f0f0f0;
    line-height: 1.5;

    padding: 5px 20px 5px 20px;
}

.panel_text ul {
    list-style-type: disc;
    padding-left: 20px;
    margin: 10px 0;
}

.panel_text li {
    margin-bottom: 8px;
}



/* Gauge */
.container 
{
    margin-top: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
  }
  
  .gauge {
    position: relative;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: #011133;
    border: 5px solid #2e5ec6;
  }
  
  .ticks 
  {
    position: absolute;
    width: 100%;
    height: 100%;
  }
  
  .tick 
  {
    --angle: calc(270deg / 10 * var(--i) - 135deg);
    position: absolute;
    top: 48%;
    left: 50%;
    transform: rotate(var(--angle));
    transform-origin: center;
  }
  
  .tick::before 
  {
    content: '';
    display: block;
    width: 2px;
    height: 10px;
    background: #fff;
    margin-left: -1px;
    transform: translateY(-140px);
  }
  
  .tick::after 
  {
    content: attr(data-val);
    position: absolute;
    top: -180px;
    left: -20px;
    color: #3391e2;
    font-size: 15px;
    transform: rotate(calc(-1 * var(--angle)));
  }
  
  

  .needle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 4px;
    height: 120px;
    background: #2a3bf9; /* Bright neon red */
    transform: translate(-50%, -100%) rotate(var(--rotation));
    transform-origin: bottom;
    transition: transform 0.3s ease-out;
    box-shadow: 0 0 15px #2a3bf9, 0 0 30px #2a3bf9;
  }
  
  /* Neon point */
  .needle::after {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 10px solid #2a3bf9;
    filter: drop-shadow(0 0 5px #2a3bf9) drop-shadow(0 0 10px #2a3bf9);
  }
  








/* Page top title - Contact - About - Galleries etc */
.page_title
{
    border-top: 1px solid rgb(85, 159, 223);
    text-align: center;
    height: 50px;
    text-align: center;
    vertical-align: middle;
    line-height: 50px; 
    color: white;
    font-size: 3vmin;
    font-family: "Maven Pro", sans-serif;
    text-shadow:1px 1px 10px #8683be, 1px 1px 10px #ccc;
    background-color: rgb(26, 66, 126);
    background-image: linear-gradient(rgb(48, 97, 170),rgb(26, 66, 126));

}


p
{
    color: black;
    padding: 0px 40px;
}
.p1
{
    color: white;
}

.home_section .ctn
{
    margin-top: 30px;
    margin-bottom: 30px;
}


.home_contact_me
{
    width: 100%;
    margin-bottom: 0px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    background-image: linear-gradient(0.25turn,rgb(26, 66, 126),rgb(89, 168, 205),rgb(26, 66, 126));
}
.home_contact_me_info
{
    width: 100%;
    margin-bottom: 10px;
    padding: 10px;
    color: white;
    display: flex;
    align-items: center;
    flex-direction: column;
}
.home_contact_me_text
{
    font-size: 17px;
    text-align: center;
    font-weight:600;
    color: white;
}




/* PAGE: About Page */
.sectionabout
{
    margin-top: 0px;
    width: 100%;
    min-height: 1000px;
    margin-bottom: 0px;
}
.rowabout
{
    display: flex;
    flex-direction: column;
    width: 100%;
    background: rgb(255, 255, 255);

}
.rowabout .colabout
{
    color: rgb(142, 44, 44);
    display: flex;
    margin: 25px;
    flex-direction: column;
}
.about_header
{
    margin-top: 0px;
    font-size: 3.5vmin;
    font-weight:900;
    color: rgb(10, 45, 98);
    margin-bottom: 10px;
}
.about_text_sub_header
{
    margin-top: 0px;
    font-size: 3vmin;
    font-weight:bold;
    color: rgb(0, 0, 0);
    margin-bottom: 5px;
    text-decoration: underline;
}
.about_text
{
    color: Black;
    font-size:medium;
    margin-bottom: 10px;
}
.about_texts
{
    color: Black;
    font-size:medium;
    margin-bottom: 5px;
}



/* CONTACTS PAGE, Section, Page styles */
 .section_contact
{
    margin-top: 0px;
    width: 100%;
    margin-bottom: 0px;
    padding-bottom: 10px;
    background-color: rgb(0, 0, 0);
}
.contact_type
{
    padding-top: 10px;
    text-align: center;
    font-size: 2.5vmin;
    font-weight: bolder;
    color: rgb(194, 188, 188);
}
.rowcontact
{
   padding-top: 10px;
    text-align: center;
    margin: 0 auto;
    width: 100%;
}
.colcontact
{
    border-radius: 4px;
    background-color: rgb(255, 255, 255);
    margin: 5px;
    width: 30%;
    box-shadow: 0px 0px 3px 3px rgb(1, 35, 253);
}
.contact_method
{   
    font-size: 2vmin;
    color:rgb(20, 22, 27)
}
.rowcontact .colcontact
{
    display: flex;
    padding: 5px;
    display: inline-block;
    text-align: left;
    color: white;
    flex-direction: column;
}
.contact_detail
{   
    margin-top: 5px;
    font-size: 2vmin;
    color: rgb(0, 0, 0);
}



/* BURGER MENU */
.menu 
{
    display: flex;
    flex-direction: row;
    list-style-type: none;
    padding: 0;
    display: none;
}
.menu > li 
{
    margin: 0 1rem;
    overflow: hidden;
}
  
 .menu-button-container 
 {
    display: none;
    height: 100%;
    width: 30px;
    padding-right: 20px;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  #menu-toggle 
  {
    display: none;
  }
  
  .menu-button,
  .menu-button::before,
  .menu-button::after {
    display: block;
    background-color: #fff;
    position: absolute;
    height: 4px;
    width: 30px;
    transition: transform 400ms cubic-bezier(0.23, 1, 0.32, 1);
    border-radius: 2px;
  }
  .menu-button::before {
    content: '';
    margin-top: -8px;
  }
  
  .menu-button::after {
    content: '';
    margin-top: 8px;
  }
  
  #menu-toggle:checked + .menu-button-container .menu-button::before {
    margin-top: 0px;
    transform: rotate(405deg);
  }
  #menu-toggle:checked + .menu-button-container .menu-button {
    background: rgba(255, 255, 255, 0);
  }
  
  #menu-toggle:checked + .menu-button-container .menu-button::after {
    margin-top: 0px;
    transform: rotate(-405deg);
  }









 /* Footer */

  .footer
  {
    background-color: rgb(26, 66, 126);
    background-image: linear-gradient( rgb(0, 20, 50)rgb(26, 66, 126), rgb(0, 20, 50));

    padding:30px 0px;
    font-family: 'Play', sans-serif;
    text-align:center;
    }
    
    .footer .rowff
    {
        width:100%;
        margin:1% 0%;
        padding:0.6% 0%;
        color:rgb(159, 153, 153);
        font-size:0.8em;
    }
    
    .footer .rowff a
    {
        text-decoration:none;
        color:rgb(150, 147, 147);
        transition:0.5s;
    }
    
    .footer .rowff a:hover
    {
        color:#fff;
    }
    
    .footer .rowff ul
    {
        width:100%;
    }
    
    .footer .rowff ul li
    {
        display:inline-block;
        margin: 0px 30px;
    }
    
    .footer .rowff a i
    {
        font-size:2em;
        margin:0% 5%;
    }

    .rowcr
    {
        font-size:0.8em;
        color:rgb(152, 156, 184);
    }



/* Mobile Device Styles - These take over page controls when screen px is under 769 pixels */
@media only screen and (max-width:768px)
{

 
    /* MOBILE MENU TOGGLE */
    .menu-button-container 
    {
        display: flex;
    }

    .menu 
    {
        display: block;
        position: absolute;
        top: 0;
        margin-top: 60px;
        left: 1;
        flex-direction: column;
        width: 100%;
        justify-content: center;
        align-items: center;
    }
    #menu-toggle ~ .menu li 
    {
        height: 0;
        margin: 0;
        padding: 0;
        border: 0;
        transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
    }
    #menu-toggle:checked ~ .menu li 
    {
        border: 1px solid #dbdbdb;
        height: 3em;
        padding: 0.5em;
        transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
    }
    .menu > li 
    {
        display: flex;
        justify-content: center;
        margin: 0;
        padding: 0.5em 0;
        width: 100%;
        color: rgb(255, 255, 255);
        background: linear-gradient(to bottom, rgb(43, 78, 131,0.8), rgb(26, 66, 126,0.8));
    }
    .menu > li:not(:last-child) 
    {
        border-bottom: 1px solid #eceaea;
    }

    .nav-links
    {
        height: 0;
        flex-direction: column;
        width: 100%;
        height: 100vh;
        justify-content: center;
        background: dodgerblue;
        margin-top: -3000px;
    }
   


    .panel_spacer
{
    margin-top: 130px;
}


.about-img 
{
    width: 200px;
    height: 200px;
    border-radius: 50%;     
    object-fit: cover;
    border: 5px solid rgb(26, 66, 126);   
    position: absolute;
    left: 50%;
    transform: translateX(-50%) translateY(-70%);
    z-index: 1;              
}
   
    /* Mobile Menu HOME  */
    .col
    {
        width: 100%;
    }
    .row
    {
        flex-direction: column;
        
    }
    .row .col
    {
        margin: 0px auto;
        
    }
    .col .ctn
    {
        margin-top: 10px;
        margin-bottom: 20px;
    }


/* Gauge */
.container 
{
    margin-top: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
  }
  
  .gauge {
    position: relative;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: #011133;
    border: 5px solid #2e5ec6;
  }
  
  .ticks 
  {
    position: absolute;
    width: 100%;
    height: 100%;
  }
  
  .tick 
  {
    --angle: calc(270deg / 10 * var(--i) - 135deg);
    position: absolute;
    top: 48%;
    left: 50%;
    transform: rotate(var(--angle));
    transform-origin: center;
  }
  
  .tick::before 
  {
    content: '';
    display: block;
    width: 2px;
    height: 10px;
    background: #fff;
    margin-left: -1px;
    transform: translateY(-120px);
  }
  
  .tick::after 
  {
    content: attr(data-val);
    position: absolute;
    top: -160px;
    left: -20px;
    color: #3391e2;
    font-size: 15px;
    transform: rotate(calc(-1 * var(--angle)));
  }
  
  

  .needle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 4px;
    height: 110px;
    background: #2a3bf9; /* Bright neon red */
    transform: translate(-50%, -100%) rotate(var(--rotation));
    transform-origin: bottom;
    transition: transform 0.3s ease-out;
    box-shadow: 0 0 15px #2a3bf9, 0 0 30px #2a3bf9;
  }
  
  /* Neon point */
  .needle::after {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 10px solid #2a3bf9;
    filter: drop-shadow(0 0 5px #2a3bf9) drop-shadow(0 0 10px #2a3bf9);
  }

    
    /* Mobile Menu Footer */
    .footer
    {
        text-align:left;
        padding:3%;
    }
    .footer .rowff ul li
    {
        display: block;
        margin: 4px;
        margin-left: 15px;
        text-align: left;
    }
    .footer .rowff a i
    {
        margin:0% 4%;
    }
    .rowcr
    {
        margin-left: 15px;
    }



}


   /* Annimations */
.ctn:hover
{
    background: rgb(75, 132, 255);
}