/*
Theme Name: Astra Child
Template: astra
*/

header{
    background-color: transparent;
}

header div{
    background-color: transparent !important;
}

header ul li a:hover{
  color: #000 !important;
  text-decoration: underline !important;
}

/* FOOTER STYLE */
footer{
  background-color: #272727;
  min-height: 300px;
  display: block;
}

footer p{
  color: #FAFAFA !important;
  margin:0;
  font-weight: 200;
}

.inner-footer{
  display: flex;
  padding: 50px 100px;
  justify-content: end;
  gap: 200px;
}

footer .links{
  display: flex;
  flex-direction: column;
}

footer .links p:hover{
  text-decoration: underline !important;
}

footer .newsletter form input{
    background: transparent;
    border: 0px;
    border-bottom: 1px solid #fafafa;
    border-radius: 0;
    padding: 0;
    width: 200px;
}

footer .newsletter form button{
  color: #fafafa;
  font-size: 16px;
  font-weight: 200;
}

footer .newsletter form button:hover{
  text-decoration: underline;
}

footer .newsletter form input:focus {
    background-color: transparent;
    border:none;
    color: #fafafa;
}

.newsletter-msg {
    margin-top: 10px;
    font-size: 13px;
    opacity: 0;
    transition: opacity .4s ease;
}

.newsletter-msg.success {
    color: #fafafa;
}

.newsletter-msg.error {
    color: #b30000;
}

.newsletter-msg.show {
    opacity: 1;
}



/* MENU MOBILE */
 .mobile-menu-toggle-icon .ahfb-svg-iconset.ast-inline-flex.svg-baseline svg{
  stroke: #000;
  fill: #000;
}

/* UNIVERSAL PAGE WRAPPER */
.container {
  max-width: 1440px;
  margin: 0 auto;               /* centers the content */
  padding-left: 40px;
  padding-right: 40px;
}

.ast-container{
    padding: 0;
    margin: 0;
    max-width: 100%;
}

/* MOBILE */
@media (max-width: 768px) {
  .container {
    padding-left: 24px;
    padding-right: 24px;
  }
}

body, 
html {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: #111;
  letter-spacing: -0.05em;
}

p{
    font-size: 18px;
}

body {
    background-color: #FAFAFA;
}

/* DETAIL buttons */

a,
a:focus,
a:active {
    outline: none !important;
    box-shadow: none !important;
}


/* *******************************
   HELVETICA NEUE — WOFF WEB FONTS
   ******************************* */

/* LIGHT — 300 */
@font-face {
  font-family: "Helvetica Neue";
  src: url("./fonts/HelveticaNeueLight.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Helvetica Neue";
  src: url("./fonts/HelveticaNeueLightItalic.woff") format("woff");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

/* REGULAR — 400 */
@font-face {
  font-family: "Helvetica Neue";
  src: url("./fonts/HelveticaNeueRoman.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Helvetica Neue";
  src: url("./fonts/HelveticaNeueItalic.woff") format("woff");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

/* MEDIUM — 500 */
@font-face {
  font-family: "Helvetica Neue";
  src: url("./fonts/HelveticaNeueMedium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Helvetica Neue";
  src: url("./fonts/HelveticaNeueMediumItalic.woff") format("woff");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

/* BOLD — 700 */
@font-face {
  font-family: "Helvetica Neue";
  src: url("./fonts/HelveticaNeueBold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Helvetica Neue";
  src: url("./fonts/HelveticaNeueBoldItalic.woff") format("woff");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

/* Header styles */
.current-menu-item a{
  color: black !important;
  font-weight: 700;
}

/* Buttons */
button{
  box-shadow: none;
}

@media (max-width: 1024px){
  .inner-footer{
    
    justify-content: space-between;
    gap: 0px;
  }
}

@media (max-width: 700px){
    footer{
        min-height:0;
    }
    .inner-footer{
      flex-direction: column;
      gap: 50px;
    }
}

@media (max-width: 520px){
    .inner-footer{
        padding:50px 20px;
    }
    
}