*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
.no-bar-scroll{
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.no-bar-scroll::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.blue {color: #196eec;}
#main {
    background-attachment: fixed !important;
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(10px, 2.083vw, 30px);
    padding-bottom: clamp(14px, 2.917vw, 42px);
}
#main::before{
    content: "";
    position: absolute;
    width: 100%;
    height: calc(614/1024*100%);
    top: 0;
    left: 0;
    background: linear-gradient(
        to bottom, 
        rgba(255, 255, 255, 1) 17%,
        rgba(255, 255, 255, 0) 100%
    );
}
#main .container{
    position: relative;
    z-index: 2;
    /* height: 100%; */
    overflow: scroll;
    width: 100%;
    max-width: 1440px;
}
.main-wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* height: 100%; */
}
.logo img{
    display: block;
    width: 9.797vw;
    max-width: 241.88px;
    min-width: 120px;
}
.heading{
    font-family: 'Quentin';
    font-weight: 400;
    font-size: clamp(40px, 3.639vw, 110px);
    line-height: calc(114.3/110);
    color: #186EEC;
    margin-top: clamp(20px, 1.525vw, 50.76px);
    margin-bottom: 0;
    text-align: center;
}
.info {
    margin-top: clamp(20px, 2.5vw, 36px);
    text-align: center;
}
.info .name{
    font-family: 'Minion Pro';
    font-size: clamp(12px, 1.528vw, 22px);
    line-height: calc(26/22);
    font-weight: 500;
    letter-spacing: 0.3em;
    color: #05244A;
    margin-bottom: 0;
    text-transform: uppercase;
}
.info .time {
    font-family: 'DM Sans';
    font-size: clamp(10px, 1.111vw, 16px);
    line-height: 1.3125;
    font-weight: 400;
    color: #5A687A;
    margin-top: clamp(4px, 0.556vw, 8px);
}
.post-lists {
    max-width: 900px;
    width: 100%;
    padding: clamp(12px, 1.667vw, 24px) 0;
    border-radius: 15px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    margin-top: clamp(12px, 2.083vw, 30px);
}
.post-lists .list{
    display: grid;
    grid-auto-flow: column;
    grid-template-rows: repeat(4, auto);
    gap: 15px;
    padding-right: 10px;
    /* overflow: scroll; */
    /* height: 100%; */
    padding: 0 clamp(12px, 1.667vw, 24px);
}

.post-lists .list .item{
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(255, 255, 255, 1);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25);
}
.post-lists .list .item a{
    text-decoration: none;
    display: block;
    padding: clamp(8px, 1.319vw, 19px);
}
.post-lists .list .item .date {
    font-family: 'Minion Pro';
    text-transform: uppercase;
    font-size: clamp(10px, 0.972vw, 14px);
    line-height: calc(17 / 14);
    letter-spacing: 0.3em;
    color: #5A687A;
    margin-bottom: 0;
    transition: all 0.3s;
}
.post-lists .list .item .title {
    font-family: 'DM Sans';
    font-size: clamp(10px, 1.111vw, 16px);
    line-height: 1.3125;
    color: #05244A;
    font-weight: 700;
    margin-top: 5px;
    letter-spacing: -0.1px;
    transition: all 0.3s;
}
.post-lists .list .item:hover .date, 
.post-lists .list .item:hover .title {
    color: #186EEC;
}
.btn-box .btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: 'Minion Pro';
    text-transform: uppercase;
    font-size: clamp(10px, 0.972vw, 14px);
    line-height: calc(17 / 14);
    letter-spacing: 0.3em;
    color: #186EEC;
    text-decoration: none;
    background: #ffffff;
    border-radius: 40px;
    margin-top: clamp(10px, 2.083vw, 30px);
    padding: clamp(9px, 1.146vw, 16.5px) clamp(16px, 2.083vw, 30px) clamp(7px, 1.007vw, 14.5px);
    transition: all 0.3s;
}
.btn-box .btn:hover {
    background: #186EEC;
    color: #ffffff;
}
@media(min-width: 1440px){
    .post-lists  {
        padding-right: 10px;
    }
}
@media(max-width: 767px){
    .post-lists .list .item .title {
        line-height: 1.2;
    }
    .post-lists .list{
        gap: 10px;
    }
}

/* Reserve Seat Modal Styles */
#reserveSeatModal .modal-content {border-radius: 15px; border: none; box-shadow: 0 10px 30px rgba(0,0,0,0.2);}
#reserveSeatModal .modal-header {border-bottom: 1px solid #e9ecef; padding: 1.5rem;}
#reserveSeatModal .modal-title {font-family: 'Minion Pro'; font-size: 1.5rem; color: #186EEC; font-weight: 600;}
#reserveSeatModal .modal-body {padding: 1.5rem;}
#reserveSeatModal .close {font-size: 1.5rem; opacity: 0.7;}
#reserveSeatModal .close:hover {opacity: 1;}
#reserveSeatModal .text-muted {color: #666!important;}