/* Custom CSS added by eKamria 
============================================*/

h1, h2, h3, h4, h5 {
    font-family: Anton !important;
    color: #333399 !important;
}

body {
    font-family: work sans!important;
}
    
textsize14 {
    font-size: 14px !important;
}

.card, .article-wraper-inner {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: white;
    background-clip: border-box;
    border: 1px solid rgba(0, 0, 0, 0) !important; 
    border-radius: 0.25rem;
}

 .astroid-contact-info {
     font-size: 13px !important;
 } 

/* Album styling
============================================*/ 

span.badge.badge-info.tip.hasTooltip {
    color: #000;
    background: none;
    font-weight: normal;
}

.astroid-logo img {
    max-height: 300px !Important;
    
/* Transparent header on home page
============================================*/    
 
.astroid-header-section {
background: transparent;
z-index: 9999;
border-bottom: 1px solid rgba(255, 255, 255, 0.26);
}

.megamenu-container {
    background-color: rgba(255, 190, 0, .5);
}






/* Megamenu
============================================*/ 

megamenu-container {
    background-color: yellow !important;
}



/* Artist Category Page - lower title
============================================*/

.article-title .page-header [itemprop="name"] {
    font-size: 24px;
    margin-top: 2em;
}

/* Removed after update to Astroid Framework
 .card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0, 0, 0, .125);
    border-radius: 0.25rem;
	padding: 4rem 4rem 0rem 4rem;
}*/

.category-desc {
  text-align: center;
}

.category-desc >img {
  margin-bottom: 10px;
}

.category-desc >p {
  width: 75%;
   margin: 10px auto;
}

/*Sticky Header - not working yet
============================================*/
.astroid-sticky-header {
    width: 100% !important;
    max-width: none !important;
}

/* If using container classes */
.astroid-sticky-header .container,
.astroid-sticky-header .container-fluid {
    max-width: 1200px !important;
    width: 100% !important;
}

/* Match the normal menu width specifically */
.header-right-section {
    max-width: 1200p!Important; /* Adjust this value to match your main menu */
    margin: 0 auto;
}

/* Two Columns
===============================================*/
.twoColumns {
  column-gap: 20px; /* Consistent gap for all screen sizes */
}

.twoColumns {
  display: block;
}


/* Large screens (two columns) */
@media (min-width: 768px) {
  .twoColumns {
    column-count: 2;
  }
}

/* Small screens (single column) */
@media (max-width: 768px) {
  .twoColumns {
    column-count: 1;
  }
}

/* Album Pages 
============================================*/


/* Album display on artist page
============================================*/ 
.article-wraper {
  padding-top: 30px;
}

.card-body {
    padding: 0rem !important;
}

.card .article-wraper-inner {
    border: none;
}

.article-wraper-inner .img {
    padding: 30px !important;
}

dd {
    margin-bottom: .5rem;
    margin-left: 10px !Important;
}

/* New Venue Animation
============================================*/ 
/* The text element that we want to animate */
.venue {
  animation-name: shake;
    animation-duration: 5s, 5s, 5s;
    animation-iteration-count: infinite;
}

/* The animation */
@keyframes shake {
  0% {
    transform: translateX(0);
  }
  10% {
    transform: translateX(-10px);
  }
  20% {
    transform: translateX(10px);
  }
  30% {
    transform: translateX(-10px);
  }
  40% {
    transform: translateX(10px);
  }
  50% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(0);
  }
}