html, body, div, span, applet, object, iframe, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
}
html {
    /*font-family: 'Source Sans Pro', sans-serif;*/
    /*font-family: 'Noto Sans JP', sans-serif;*/
    font-family: 'corbelregular', 'Roboto', sans-serif;
    background-color: #0b3140;
}

html,body
{
    width: 100%;
    margin: 0px;
    padding: 0px;
    overflow-x: hidden; 
}

body {
    margin: 0;
    font-size:18px;
    background-color: lightgray;
    background-color: #0b3140;
    background-image:linear-gradient(50deg, #2c2d40 0%, #2c3a40 1%, #2c2d40 50%, #2c3a40 95%, #2c2d40 100%);
}


p {
    margin-bottom:16px;
    font-size:18px;
    color:var(--nTime-text-color);
}

::selection {
    color: white;
    background-color: #2a81e8;
}
a::selection {
    color: white;
    background-color: #1d60b0;
}
.link {
    color:#0894cc;
    text-decoration:none !important;
    font-weight:unset !important;
}
.link, a {
    color: #0894cc; /*#12afed;*/
    text-decoration: none !important;
    font-weight: unset !important;
}
.link:hover, a:hover {
    color: #046ad6;
    cursor: pointer;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}

hr {
    display: block;
    height: 2px;
    border: 0;
    border-top: 2px solid #c2e8ff;
    margin: 1em 0;
    padding: 0;
}

@font-face {
    font-family: 'corbelbold_italic';
    src: url('fonts/corbel/corbel_bold_italic-webfont.woff2') format('woff2'),
         url('fonts/corbel/corbel_bold_italic-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'corbelbold';
    src: url('fonts/corbel/corbel_bold-webfont.woff2') format('woff2'),
         url('fonts/corbel/corbel_bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'corbelitalic';
    src: url('fonts/corbel/corbel_italic-webfont.woff2') format('woff2'),
         url('fonts/corbel/corbel_italic-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'corbelregular';
    src: url('fonts/corbel/corbel-webfont.woff2') format('woff2'),
         url('fonts/corbel/corbel-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'evil_dead';
    src: url('fonts/evildead/evildead-webfont.woff2') format('woff2'),
         url('fonts/evildead/evildead-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}



.header {
    position: fixed;
    display: flex;
    justify-content: center;
    height: 50px;
    margin: 0px;
    top:0;
    left: 0;
    right: 0;
    font-size: 26px;
    font-weight: 800;
    color: rgba(17, 139, 79, 1);
    text-shadow: 1px 1px 4px rgba(44, 45, 64, 0.75);
    background-image: linear-gradient(50deg, #0b3140 0%, #3f606e 50%, #0b3140 100%);
    box-shadow: 0 8px 6px -8px #118B4F;
    z-index: 9999;
    transition: height .2s linear, background-color .2s linear;
}

.header-overlay {    
    position: absolute;
    display: flex;
    justify-content: center;
    width: 100%;
    height: 50px;
    top: -50px;
    left: 0;
    right: 0;
    margin: 0px;
    align-items: center;
    font-size: 26px;
    font-weight: 800;
    color: #118B4F;
    background-image: linear-gradient(50deg, #0b3140 0%, #3f606e 50%, #0b3140 100%);
    box-shadow: 0 0px 40px -8px #118B4F;
    z-index: 9999;
    transition: height .2s linear, background-color .2s linear;
}

.green {
    color: #118B4F;
}

.faq-logo {
    width:30px;
    height:30px;
}

.faq-wrapper {
    max-width: 60%;
    margin: auto;
}
  
.faq-wrapper > p,
.faq-wrapper > h1 {
    margin: 1.5rem 0;
    text-align: center;
}
  
.faq-wrapper > h1 {
    letter-spacing: 3px;
}
  
.question {
    background-color: #118B4F;
    color: #eee;
    cursor: pointer;
    font-size: 22px;
    width: 100%;
    padding: 12px 32px;
    border: none;
    outline: none;
    transition: 0.4s;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    border-radius: 6px;
    transition: all .2s ease;
}

.question i {
    font-size: 24px;
}

.active {
    background-color: #118B4F;
}
.question:hover {
    background-color: #15ad62;
}
.answer {
    padding: 18px 36px;
    background-color: white;
    overflow: hidden;
    background-color: #f1f7f5;
    display: none;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
}
.answer p {
    color: rgba(0, 0, 0, 0.7);
    font-size: 20px;
    line-height: 1.4;
    margin: 0px;
    margin-bottom:6px;
}

.faq {
    border: 1px solid rgba(0, 0, 0, 0.2);
    margin: 10px 0;
}
.faq.active {
    border: none;  
    border-radius: 6px;
}

.venue-hours {
    background: rgba(44, 45, 64, 0.9);
    padding: 12px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    margin-bottom: 8px;
}

.hours-table {
    width: 100%;
    border-collapse: separate;
}

.day-column {
    font-weight: 500;
    color: #15b164;
    width: 88px;
}

.time-column {
    color: #ffffff;
    padding: 8px 0;
}

.hour-row {
    transition: background-color 0.2s ease;
    line-height: 1.4;
}

.hour-row:hover {
    background: none;
    padding: 0;
}

/* Status styling */
#status {
    background: rgba(17, 139, 79, 0.2);
    padding: 4px 12px;
    border-radius: 4px;
    font-family: inherit;
    font-size: 0.9em;
    white-space: nowrap;
}

.event-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    border-color: #15b164;
}

.event-ticket-link a {
    display: inline-block;
    padding: 8px 16px;
    background: #0894cc;
    color: white !important;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.2s ease;
    width: 100%;
    text-align: center;
}

.event-more-link {
    flex: 1;
}

.event-more-link a {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(17, 139, 79, 0.15);
    color: #15b164 !important;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.2s ease;
    width: 100%;
    text-align: center;
    border: 1px solid rgba(17, 139, 79, 0.3);
}

.event-ticket-link a:hover {
    background: #0678a8;
}

.event-more-link a:hover {
    background: rgba(17, 139, 79, 0.25);
}

.article-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.article-content p {
    margin-bottom: 1.5em;
}

hr {
    display: block;
    height: 2px;
    border: 0;
    border-top: 2px solid #0894cc;
    padding: 0;
}

.desktop-header-nav a{
    color:unset;
}

.section {
    display: flex;
    justify-content: center;
    color: #5a5a5a;
    color: #bbb;
    margin-bottom: 40px;
}

.section table {
    width: 100%;
}
.content {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.article-content {
    flex:1;text-align: left;
}

.header-content {
    width:1280px;
    position: relative;
    height: 100%;
}

ul {
    margin-left:36px;
}

ul li {
    margin-bottom:8px;
}

.about {
    color: #5a5a5a;
    color: #bbb;
    letter-spacing: .3px;
    line-height: 24px;
}

.desktop-hide {
    display:none;
}

.flex-row {
    display:flex;
}

.display-flex {
    display:flex;
}

@media(max-width: 800px) {
    .mobile-hide {
        display:none;
    }
    .desktop-hide {
        display:inherit;
    }
    .flex-row {
        display:flex;
        flex-direction:column !important;
    }

    .about {
        letter-spacing: .3px;
        line-height: 30px;
        font-size:20px;
    }
    .about h1 {
        line-height:46px;
        font-size:36px;
        text-align:center;
    }
    .mobileBottomMargin  {
        margin-bottom:40px;
    }
    .content {
        margin: 0px;
        padding:0px;
    }
    
    .faq-wrapper {
        max-width: 100%;
        margin: auto;
    }

    .faq {

    }
}

.mobile-header-nav {
    display:none;
    font-size:32px;
    padding:28px;
    font-family: 'evil_dead';
    letter-spacing: 0.0625em;
}
.mobile-header-nav a{
    padding:6px;
}
.mobile-header-nav a:not(:first-child) {
    margin-top:6px;
}
.desktop-header-nav {
    position: absolute;
    letter-spacing: 0.0625em;
    line-height: 50px;
    left: 320px;
    font-family: 'evil_dead';
    font-size: 20px;
    overflow: hidden;
    height: 50px;
}
.desktop-header-nav a:hover {
    color:rgba(44, 45, 64,1);
    text-shadow: 1px 1px 4px rgba(44, 45, 64, 0.75);
}

.desktop-header-nav a:not(:last-child) {
    margin-right:26px;
}

.overlay-desktop-header-nav {
    left: 472px;
}

.header .desktop-header-img-container {
    width: 268px;
    position: absolute;
    bottom: 0;
}

.header-overlay .desktop-header-img-container {
    width: 420px;
    position: absolute;
    bottom: 0;
}

.parallax-header-image {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    text-align: center;
    background-color: black;
    font-family: "Montserrat", sans-serif;
}
.parallax-header-home-image {
    background-image: url("images/bar.jpg");
    background-position: center;
    background-size: 46%;
    background-repeat: no-repeat;
    height:420px;
}
.parallax-header-about-us-image {
    background-image: url("images/for_the_graffiti.jpg");
    background-position: center;
    background-size: 70%;
    background-repeat: no-repeat;
    height:420px;
}
.parallax-header-beanie-image {
    background-image: url("images/beanie.png");
    background-position: center;
    background-size: 70%;
    background-repeat: no-repeat;
    height:420px;
}
.parallax-header-lounge-image {
    background-image: url("images/lounge_room.jpg");
    background-position: center;
    background-size: 70%;
    background-repeat: no-repeat;
    height:420px;
}
.parallax-header-food-image {
    background-image: url("images/for_the_hungry.jpg");
    background-position: center;
    background-size: 70%;
    background-repeat: no-repeat;
    height:420px;
}
.parallax-header-event-image {
    background-image: url("images/for_the_graffiti.jpg");
    background-position: center;
    background-size: 60%;
    background-repeat: no-repeat;
    height:420px;
}
.parallax-header-calendar-image {
    background-image: url("images/live_room.jpeg");
    background-position: center;
    background-size: 60%;
    background-repeat: no-repeat;
    height:420px;
}
.parallax-header-live-music-image {
    background-image: url("images/live_room.jpeg");
    background-position: center;
    background-size: 60%;
    background-repeat: no-repeat;
    height:420px;
}
.parallax-header-sponsorship-image {
    background-image: url("images/for_the_record_sponsorship_page.png");
    background-position: center;
    background-size: 60%;
    background-repeat: no-repeat;
    height:420px;
}
.parallax-header-handy-festival-2023-image {
    background-image: url("images/handy-festival-2023.jpg");
    background-position: center;
    background-size: 68%;
    background-repeat: no-repeat;
    height:420px;
}
.parallax-header-parking-image {
    background-image: url("images/roundaboutdiagram.jpg");
    background-position: center;
    background-size: 60%;
    background-repeat: no-repeat;
    height:420px;
}
.parallax-header-contact-image {
    background-image: url("images/for_the_record_contact_page.png");
    background-position: center;
    background-size: 60%;
    background-repeat: no-repeat;
    height:420px;
}
.parallax-header-image::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #2C2D40;
    opacity: 0.2;
}
.parallax-header-image-section {
    position: relative;
    padding: 15% 0 10%;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    color: white;
}
.page-wrapper {
    position: relative;
    margin-left: auto;
    margin-right: auto;
    padding: 32px;
}
.full-page-wrapper {
    padding:0px !important;
}
.article-logo {
    width:100px;
    height:100px;
}

.wrapping-image {
    float: left;
    padding: 0 10px 0 0;
}

.home-page-left {
    flex:.7;margin-right:40px;
}
.home-page-right {
    flex:.424;min-width:260px;
}
.mobile-header-nav-toggle-button {   
    width: 50px;
    height: 50px;
    background-color: #0b3140f0;
    right: 0px;
    position: absolute;
    justify-content: center;
    display: none;
    flex-direction: column;
    justify-content: space-around;
    border-bottom-left-radius: 8px;
}
.toggle-line {
    width:60%;
    height:4px;
    border-radius:2px;
    background-color:#118B4F;
    margin:auto;
}
.toggle-line:first-child{
    margin-top:12px;
}
.toggle-line:last-child {
    margin-bottom:12px;
}
.mobile-margin-top {
    margin-top:0px;
}
.mobile-margin-bottom {
    margin-bottom:0px;
}
  

img {
    max-width: 100%;
}
.home-fanimal-icon {    
    display: block;
    width: 30px;
    fill: #ff5e9d;
    margin: auto;
    margin-right: 10px;
    margin-left: 2px;
    transform: translateY(2px);
}
.desktop-row-reverse {
    flex-direction: row-reverse;
}

.display-box {
    color: rgba(222, 230, 255, .75);
    background-color: var(--nTime-white-alpha-05);
    padding: 20px;
    display: flex;
    flex-direction: column;
    text-align: center;
    border-radius: 4px;
}

.info-display-box {
    border: 1px dashed #37516a;
    background-color: rgba(222, 230, 255, .05);
}


.event-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 12px;
    row-gap: 16px;
}

.event-card-content {
    padding: 12px;
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 140px;
}

.event-title {
    font-size: 1.4em;
    line-height: 1.3;
    color: white;
}

.event-info {
    margin-top: auto;
    padding-top: 10px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.event-time, .event-price, .event-age, .event-get-tickets-button {
    background: rgba(17, 139, 79, 0.15);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.9em;
    height: 32px;
    display: inline-flex;
    align-items: center;
    flex: 1;
}

.event-get-tickets-button {
    background: rgba(16, 135, 205, .1);
    padding: 8px 12px;
    border: 1px solid #0f87cc;
    width:100%;
    margin-top:12px;
}

.event-time, .event-price {
    color: #15b164;
}

.event-age {
    color: #999;
}

/* Button styles */
.event-ticket-link a,
.event-more-link a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    padding: 0 16px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.2s ease;
    width: 100%;
    font-size: 0.9em;
}

.event-ticket-link a {
    background: #0894cc;
    color: white !important;
}

.event-more-link {
    flex: 1;
}

.listed-event-grid {
    display: grid;
}

h3 {
    font-size:22px;
}
.event-card h2, .listed-event-card h2 {
    margin-top: 0px;
    margin-bottom: 0px;
}
.event-card p {
    margin-bottom: 0px;
    font-size: 20px;
    font-weight: 700;
    margin-bottom:16px;
}
.listed-event-card p {
    margin-bottom: 0px;
    font-size: 20px;
    font-weight: 500;
}
.listed-event-card {    
    padding: 1em;
    border-radius: 6px;
    color: #D3D3D3 !important;
    display: flex;
    border-bottom: 1px solid #118B4F;
    box-shadow: 8px 6px 14px -8px black;
    margin-bottom: 18px;
    border-right: 1px solid #118b4f;
    line-height: 36px;
    padding-bottom: 8px;
}

.event-row {
    display:flex;
    margin:12px;
    padding:20px;
}

.event-row:not(:last-child) {
    border-bottom:1px solid gray;
}

.event-date-container {    
    border-radius: 6px;
    background-color: lightgray;
    color: black;
    font-weight: 700;
    width: 54px;
    height: 54px;
    min-width: 54px;
    min-height: 54px;
    font-size: 20px;
    text-align: center;
    margin-right: 20px;
}

.event-dow-container {   
    padding:2px; 
    border-radius: 6px;
    background-color: lightgray;
    color: black;
    font-weight: 700;
    font-size: 20px;
    text-align: center;
    margin-bottom: 16px;
}

.listed-event-dow-container {
    padding: 2px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 20px;
    text-align: center;
    border-right: 5px solid #118B4F;
    margin-right: 16px;
    padding-right: 10px;
    width: 300px;
    text-align: left;
    justify-content:space-between;
}

.listed-event-middle-section {
    border-right: 2px solid #118B4F;
    margin-right: 16px;
    padding-right: 10px;
    border-radius: 6px;
    font-size:18px;
}

.event-artists {
    font-size:20px;
}

.event-ticket-link {
}

.event-ticket-link a {
    color: white !important;
    background-color: #0894cc;/*#4287f5*/;
    text-decoration: none;
    padding: 8px;
    border-radius: 4px;
}


.dow-button-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
}
.dow-button {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    text-align: center;
    background-color:rgba(255, 255, 255, .2) !important;
}
.toggle-button{
    background-color:rgba(255, 255, 255, .2) !important;
}
.dow-button.active, .toggle-button.active {
    background-color: white !important;
    color: #ffffff;
}

/* Style for the vertical checkbox list */
.dow-checkbox-list {
    display: flex;
}

.dow-checkbox-label {
    padding: 6px;
    border-radius: 6px;
    border: 1px solid lightgray;
    margin-top: 12px;
    cursor: pointer;
}
.dow-checkbox-label:not(:last-child) {
    margin-right:6px;
}
.checkbox-container {
    display: block;
    text-align: left;
    position: relative;
    cursor: pointer;
    user-select: none;
    line-height: 28px;
    height: 28px;
    border: 1px solid lightgray;
    padding: 4px 36px;
    padding-right: 6px;
    border-radius:6px;
    margin-right:6px;
    margin-top:6px;
}

.checkbox-container-label-right {
    padding-top:0px;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
    top: 0;
    left: 0;
}

.checkmark {
    position: absolute;
    top: 6px;
    left: 6px;
    height: 22px;
    width: 22px;
    background-color: var(--nTime-input-bg-color);
    border: 1px solid var(--nTime-input-border-color);
    border-radius: 2px;
}
.checkmark-label-right {
}
.checkmark-disabled {
    background-color: var(--nTime-tertiary-bg);
}

.checkbox-container:hover input ~ .checkmark {
    background-color: var(--nTime-input-bg-hover-color);;
}

.checkbox-container input:checked ~ .checkmark {
    background-color: #0f87cc;
    border-color: #0f87cc;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-container .checkmark:after {
    left: 7px;
    top: 1px;
    width: 5px;
    height: 14px;
    border: solid white;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(40deg);
    -ms-transform: rotate(40deg);
    transform: rotate(40deg);
}

.sunday-dow { display: block; }
.monday-dow { display: block; }
.tuesday-dow { display: block; }
.wednesday-dow { display: block; }
.thursday-dow { display: block; }
.friday-dow { display: block; }
.saturday-dow { display: block; }

@media(max-width:800px) {
    .parallax-header-image {
        background-size: cover;
    }
    .parallax-header-image-section {
        min-height:200px;
    }
    .home-page-left {
      flex:1;margin-right:0px;
    }
    .home-page-right {
      flex:1;
      margin-bottom: 10px;
      margin: -8px;
    }
    .display-flex {
        flex-direction: column;
    }
    .page-wrapper {
        padding:20px;    
        margin-top: 40px;
    }
    .header .desktop-header-img-container {
        width: 280px;
        position: absolute;
        bottom: 0;
        margin-left:12px;
    }
    .header-overlay .desktop-header-img-container {
        width:280px;
        margin-left:12px;
    }
    .mobile-header-nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 50px;
        width: 100%;
        background-image: linear-gradient(50deg, #0b3140 0%, #3f606e 50%, #0b3140 100%);
        height: 390px;
    }
    .desktop-header-nav {
        display:none;
    }
    .mobile-header-nav-toggle-button{
        display:flex;
    }
    .mobile-margin-top {
        margin-top:20px !important;
    }
    .mobile-margin-bottom {
        margin-bottom:28px !important;
    }
    .desktop-row-reverse {
        flex-direction: column;
    }
    .home-fanimal-icon {    
        display: block;
        width: 30px;
        fill: #ff5e9d;
        margin: auto;
        margin-right: 10px;
        margin-left: 2px;
        transform: translateY(2px);
    }
}

@media (max-width: 1040px) {
    .event-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 1280px) {
    .desktop-header-img-container {
        margin-left:32px;
    }
    .desktop-header-nav {
        left: 332px;
    }
    .overlay-desktop-header-nav {
        left: 484px;
    }
}

@media(max-width: 800px) {
    .dow-checkbox-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
    .dow-checkbox-label:nth-child(1) {
        margin-right:8px;
    }
    .event-grid {
        display: grid;
        grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
    }
    
    .event-ticket-link {
        margin: 24px 0px;
        margin-bottom: 8px;
    }

    .event-ticket-link a {    
        padding: 14px 40px;
    }

    .event-card:not(:last-child) {
        border-radius:6px;
        margin-bottom: 12px;
    }
    
    .listed-event-card {
        line-height:unset;
        display:flex;
        flex-direction: column;
    }

    .event-dow-container {
        padding:4px;
    }

    .listed-event-dow-container {
        margin-right:0px;
        padding-right:0px;
        width:unset;
        border:none;
    }
    
    .dow-button-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
    }
    
    .listed-event-middle-section {
        border:none;
        margin: 14px 0px;
    }
}

.relative {position: relative;}
.absolute {position: absolute;}
.hidden {display:none;}
.inline-block {display:inline-block;}

.center {
    margin:16px auto;
}
.center-vertically {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.center-horizontally {
    justify-content:center;
    text-align:center;
}
.auto-margin {
    margin:auto;
}
.instant-scroll {
    scroll-behavior: unset;
}
.smooth-scroll {
    scroll-behavior: smooth;
}

.shadow {
    box-shadow: var(--nTime-elevated);
}

.transparent-text {color: var(--nTime-text-color-alpha-05);}
.disabled-text {color:var(--nTime-light-text-color-alpha-25) !important;}

.align-text-center {text-align: center !important;}

.display-flex {display:flex;}
.flex-row {display:flex;flex-direction:row;}
.stay-flex-on-mobile{display:flex;flex-direction:row !important};
.flex-wrap {flex-wrap:wrap;}
.scroll-row{overflow-x:scroll;}
.flex-col {flex-direction:column;}
.justify-flex-end{justify-content:flex-end;}
.justify-space-between {justify-content:space-between !important;}
.justify-normal {justify-content:normal !important;}

.rounded-bottom {
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
}

.border {border: 1px solid var(--nTime-text-color-alpha-25);} .bottom-border {border-bottom: 1px solid var(--nTime-text-color-alpha-25);}
.no-bottom-border { border-bottom-style: unset !important; }
.no-right-border { border-right-style: unset !important; }
.no-left-border { border-left-style: unset !important; }
.no-top-border { border-top-style: unset !important; }

.no-bottom-border-radius {
    border-bottom-left-radius: 0px !important;
    border-bottom-right-radius: 0px !important;
}
.no-border-radius{
    border-radius:0px !important;
}

.no-bottom-margin {margin-bottom: 0px !important;}
.no-margin {margin:0px !important;} .no-p-margin p {margin: 0px !important;}
.no-margin-top {margin-top: 0px !important;}
.no-left-margin {margin-left: 0px !important;}
.no-padding {padding:0px !important;} .no-padding-left { padding-left: 0px !important;} .no-padding-top{padding-top:0px !important;}
.no-horizontal-padding { padding-left:0px !important;padding-right:0px !important;}
.no-shadow {box-shadow: none !important;}
.no-border { border: none !important;} .no-top-border { border-top: none !important;}
.no-background-color { background-color: inherit !important;}
.half-a-border-on-right {
    border-right: 1px solid;
    border-image: linear-gradient(to bottom, #00000000 20%, var(--nTime-light-text-color-alpha-25) 21%, var(--nTime-light-text-color-alpha-25) 79%, #00000000 80%, #00000000 100%) 1;
}
.top-border { border-top: 1px solid var(--nTime-text-color-alpha-25) !important; }
.bottom-border { border-bottom: 1px solid var(--nTime-text-color-alpha-25) !important; }
.left-border { border-left: 1px solid var(--nTime-text-color-alpha-25) !important; }
.right-border { border-right: 1px solid var(--nTime-text-color-alpha-25) !important; }

.padding-6 {padding:6px;} .pv-6 {padding: 6px 0px;} .padding-10{padding:10px;} .padding-12 {padding:12px;} .pl-6{padding-left:6px;}
.margin-6 {margin:6px !important;} .mv-6 {margin: 6px 0px !important;} .ml-6 {margin-left:6px;} .mr-6 {margin-right:6px;}
.mr-12 {margin-right:12px;}.mr-20 {margin-right:20px;} .mt-10{margin-top:10px;}
.margin-14 {margin:14px;} .margin-30 {margin:30px;}
.padding-20 {padding:20px;}
.width-100 {width:100%;} .height-100 {height:100%;} .height-unset {height:unset;}

.light-text {color:var(--nTime-light-text-color);}
.fs-14{font-size:14px;} .fs-small{font-size:14px;}
.fs-16{font-size:18px;} .fs-med{font-size:18px;}
.fs-18{font-size:18px;}
.fs-20{font-size:20px;}

.default-cursor{cursor:default;} .cursor-pointer{cursor:pointer;}

.text-button {
    cursor:pointer;
    padding:4px 8px;
    background-color:none;
    transition:all .065s ease;
}
.text-button:hover {
    border-radius:4px;
    background-color:var(--nTime-input-bg-hover-color);
}

.mb-2{margin-bottom:2px;}.mb-8{margin-bottom:8px;}.mb-16{margin-bottom:16px;}
.mt-8{margin-top:8px;}.mt-16{margin-top:16px;}

/* Update overlay nav positioning */
.overlay-desktop-header-nav {
    left: 472px;
}

/* Add hover effect for nav items */
.desktop-header-nav a {
    position: relative;
    padding: 4px 8px;
    transition: color 0.2s ease;
}

.desktop-header-nav a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: #118B4F;
    transition: all 0.2s ease;
}

.desktop-header-nav a:hover:after {
    width: 100%;
    left: 0;
}

/* Update mobile nav styles */
@media(max-width: 800px) {
    .mobile-header-nav {
        padding: 20px;
    }
    
    .mobile-header-nav a {
        padding: 12px;
        border-bottom: 1px solid rgba(17, 139, 79, 0.2);
    }
    
    .mobile-header-nav a:last-child {
        border-bottom: none;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .event-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 10px 0;
    }

    .event-card {
        margin: 0;
    }

    .event-card h3 {
        font-size: 1.3em;
    }

    .event-card-buttons {
        flex-direction: column;
    }

    .event-ticket-link a, 
    .event-more-link a {
        padding: 12px 16px;
    }
}

.event-card.listed-view {
    margin-bottom: 12px;
}
/* List view specific styles */
.event-card.listed-view .event-card-content {
    flex-direction: row;
    align-items: center;
    gap: 16px;
}

.event-card.listed-view .event-info {
    margin-top: 0;
    margin-left: auto;
    padding-top: 0;
    border-top: none;
    display: flex;
    align-items: center;
    gap: 16px;
}

@media (max-width: 768px) {
    .event-card.listed-view .event-card-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .event-card.listed-view .event-info {
        margin-left: 0;
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Make sure links are clickable */
.event-card a {
    text-decoration: none;
    color: inherit;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .event-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 0px;
    }
}

/* Always show Sunday events */
.event-card.sunday-event {
    display: block !important;
}

/* Update event card base styles */
.event-card {
    background: linear-gradient(145deg, #1B3F50, #0b3140);
    color: #D3D3D3;
    border: 2px solid rgb(17, 139, 79);
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
    transition: all 0.1s ease;
    position: relative;
    box-shadow: 0 4px 15px rgb(17, 139, 79, 0.2);
    display: flex;
    flex-direction: column;
    cursor:pointer;
}

/* Keep hover effect */
.event-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    border-color: #15b164;
}

/* Condensed event card styles */
.event-card.condensed {
    padding: 12px;
    margin-bottom: 8px;
}

.event-card.condensed .event-card-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.event-card.condensed .event-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.event-date {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #D3D3D3;
    padding: 6px;
    border-radius: 6px;
    margin-bottom: 6px;
    background-color: rgb(17, 139, 79, 0.07);
    font-weight: 800;
    color: #D3D3D3;
    box-shadow: 0px 0px 8px -4px black;
}

.event-date svg {    
    color: #15b164;
}

.event-card.condensed .event-title {
    font-size: 1.2em;
    font-weight: 600;
}

.event-card.condensed .ticket-link,
.event-card.condensed .more-info-link {
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.9em;
    transition: all 0.2s ease;
}

.event-card.condensed .ticket-link {
    background: #118B4F;
    color: white;
}

.event-card.condensed .more-info-link {
    border: 1px solid #118B4F;
    color: #118B4F;
}

.event-card.condensed .ticket-link:hover,
.event-card.condensed .more-info-link:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .event-card.condensed .event-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
}

.placeholder-image {
    background: rgba(17, 139, 79, 0.1);
    border: 1px solid #15b164;
    text-align: center;
    color: #15b164;
    border-radius: 8px;
    min-height: 200px;
}

.cta-button {
    display: inline-block;
    background: #15b164;
    color: white;
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.cta-button:hover {
    background: #118B4F;
    transform: translateY(-2px);
}

.page-padding-top {
    padding-top:80px;
}

@media (max-width: 768px) {
    .placeholder-image {
        width: 100%;
    }

    .page-padding-top {
        padding-top:32px;
    }
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid #15b164;
    color: #15b164;
}

.cta-button.secondary:hover {
    background: rgba(21, 177, 100, 0.1);
}