body {
    background-image: url('../img/bg_top.png');
    background-size: 1920px auto;
    background-repeat: no-repeat;
    background-position: top center;
    position: relative;
}

section .content-wrap {
    width: 1280px;
    margin: 0 auto;
}

.section-title {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    position: relative;
}
.section-title a {
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 700;
    position: absolute;
    right: 0;
    top: 0;
}
.section-title a:hover {
    text-decoration: underline;
}
.section-title a img {
    filter: invert(1);
    width: 28px;
}
.section-title h2 {
    font-size: 36px;
    font-weight: 800;
    position: relative;
    color: #1d2088;
    line-height: 1;
    padding-right: 20px;
}
.section-title h2:after {
    content: '';
    position: absolute;
    width: 2px;
    height: 80%;
    right: 0;
    top: 10%;
    background-color: #1d2088;
}
.section-title p {
    font-size: 24px;
    color: #353570;
    font-weight: 500;
    margin-left: 20px;
}
/* main section styles */
.main-section {
    padding: 180px 0;
}

.main-section .text-area {
    padding: 100px 0 50px 0;
}

.main-section p {
    font-size: 36px;
    color: #040521;
    text-align: center;
    line-height: 1.5;
    letter-spacing: -1px;
    font-weight: 700;
    margin-bottom: 100px;
}
.main-section h1 {
    font-size: 52px;
    font-weight: 900;
    color: #24288c;
    text-align: center;
    line-height: 1;
}

.short-cuts-area {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 100px;
}

.short-cut-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: transform 0.5s;
}

.short-cut-item .img-box {
    background-color: rgba(255,255,255,0.7);
    border-radius: 20px;
    width: 120px;
    height: 120px;
    position: relative;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background 0.5s;
}

.short-cut-item .img-box img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.short-cut-item .img-box .on {
    opacity: 0;
}

.short-cut-item span {
    font-size: 18px;
    font-weight: 700;
}

.short-cut-item:hover .img-box .normal {
    opacity: 0;
}
.short-cut-item:hover .img-box .on {
    opacity: 1;
}

.short-cut-item:hover .img-box {
    background: linear-gradient(45deg, #5e62e4, #1d2088);
}
.short-cut-item:hover {
    transform: translateY(-20px);
}

/* realtime parking lots status (section2) styles */
.parking-lot-section {
    padding-bottom: 100px;
}
.parking-lot-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.parking-lot-item {
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    border: 1px solid #ccc;
    position: relative;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.parking-lot-status {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 20px;
    font-weight: 700;
    padding: 7px 20px;
    border-radius: 10px;
    color: #fff;
    background-color: #00af3a;
}

.parking-lot-status.confuse {background-color: #dca600;}
.parking-lot-status.very-confuse {background-color: #dc3e00;}
.parking-lot-status.full {background-color: #868686;}

.parking-lot-name {
    color: #09093c;
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 18px;
    margin-top: 6px;
}
.parking-lot-addr {
    display: flex;
    gap: 5px;
    font-size: 16px;
    color: #444452;
    align-items: center;
    cursor: pointer;
}
.parking-lot-addr a {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: calc(33vw - 73px);
}
.parking-lot-addr:hover {
    text-decoration: underline;
}

.parking-count {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.parking-count > div {
    flex:1;
    border-radius: 10px;
    background-color: #2c2c8422;
    padding: 15px;
}
.parking-count > div > p {
    font-size: 24px;
    font-weight: 500;
    text-align: center;
    color: #09093c;
}
.parking-count > div > div {
    margin-top: 20px;
    text-align: center;
}

.parking-count > div > div > .count-num {
    font-size: 48px;
    font-weight: 800;
    /*color: #09093c;*/

}
.parking-count > div:first-child > div > .count-num {
    color: #00af3a;
}
.parking-count > div:first-child > div > .count-num.confuse {color: #dca600;}
.parking-count > div:first-child > div > .count-num.very-confuse {color: #dc3e00;}
.parking-count > div:first-child > div > .count-num.full-confuse {color: #868686;}
.parking-count > div > div > .count-unit {
    color: #09093c;
    font-size: 24px;
    font-weight: 700;
}

.notice-section {
    padding-top: 100px;
    padding-bottom: 300px;
}

.notice-board-item {
    border: 1px solid #ccc;
    border-radius: 10px;
    margin: 0 10px;
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.notice-board-item a {
    display: flex;
    flex-direction: column;
}

.notice-board-item .post-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
}
.post-title .board-type {
    font-weight: 700;
    border-radius: 10px;
    background-color: #09093c;
    color: #fff;
    display: inline-block;
    padding: 5px 15px;
}
.post-title .reg-dttm {
    text-align: right;
    font-size: 14px;
    color: #47475c;
    line-height: 1.3;
}
.post-text {
    display: flex;
    flex-direction: column;
    padding: 0 15px;
}
.post-text .tit {
    border-bottom: 1px solid #868686;
    margin-bottom: 15px;
    padding-bottom: 15px;
    white-space: nowrap;
    text-overflow:ellipsis;
    overflow: hidden;
    font-size: 18px;
    font-weight: 700;
    color: #040421;
}

.post-text .txt {
    /*    2줄 이후 ... 처리 */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.5;
    height: 50px;
    margin-bottom: 15px;
    position: relative;
}
.post-text .txt span {
    position: absolute;
    left: 50%;
    top: 50%;
    font-size: 18px;
    color: #9f9f9f;
    transform: translate(-50%, -50%);
}

.notice-item-wrap {
    position: relative;
}
.notice-item-wrap .notice-prev {
    position: absolute;
    top: 50%;
    margin-top: -32.5px;
    left: -75px;
    cursor: pointer;
}
.notice-item-wrap .notice-next {
    position: absolute;
    top: 50%;
    margin-top: -32.5px;
    right: -75px;
    cursor: pointer;
}


.bottom-info-section {
    padding-bottom: 250px;
}
.bottom-info-section .content-wrap {
    display: flex;
    gap: 20px;
}
.bottom-info-content {
    flex: 1;
    flex-shrink: 0;
    display: flex;
    gap: 20px;
    height: 300px;
}
.bottom-info-content:last-child {
    background-color: #ffffffB2;
    border-radius: 15px;
    box-sizing: border-box;
    padding: 30px;
    position: relative;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid #ccc;
}

.button-content-small {
    flex: 1;
    background-color: #ffffffB2;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    transition: background 0.5s;
    cursor: pointer;
    font-size: 30px;
    font-weight: 800;
    color: #24288c;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid #ccc;
}

.button-content-small img:last-of-type {
    display: none;
}
.button-content-small:hover img:first-of-type {
    display: none;
}
.button-content-small:hover img:last-of-type {
    display: block;
}
.button-content-small:hover {
    background: linear-gradient(45deg, #5e62e4, #1d2088);
    color: #fff;
    border: 0;
}

.bottom-info-content .text-box h2 {
    font-size: 60px;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -1px;
}
.bottom-info-content .text-box h2:first-child {
    color:#24288c;
}
.bottom-info-content .text-box h2:last-child {
    color:#fff;
    -webkit-text-stroke: 1px #24288c;
    text-stroke: 1px #24288c;
}
.bottom-info-content .phone-num-box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    position: absolute;
    right: 30px;
    bottom: 30px;
}
.bottom-info-content .phone-num-box p {
    font-size: 24px;
    color: #24288c;
    line-height: 1.2;
    font-weight: 800;
}
.bottom-info-content .phone-num-box h3 {
    font-size: 30px;
    color: #24288c;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -1px;
}

.main-banner-area {
    position: relative;
}
.main-banner {
    width: 1100px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.banner-prev {
    position: absolute;
    top: 50%;
    left: 0px;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 10;
}
.banner-next {
    position: absolute;
    top: 50%;
    right: 0px;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 10;
}

.banner-pause-play {
    width: 25px; height: 25px;
    background-image: url("../img/banner-controls.png");
    background-repeat: no-repeat;
    background-position: -97px 0;
}
.banner-pause-play.pause {
    background-position: -32px 0;
}
.pager-and-btns {
    margin-top: 20px;
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -50px;
}
.pager-area {
    background-color: rgba(0,0,0,0.5);
    padding: 3px 15px;
    font-size: 14px;
    border-radius: 5px;
    color: #fff;
}
.pager-area .total-page {
    font-weight: 700;
}
.pager-area .dots {
    letter-spacing: 3px;
    margin-left: 6px;
}


@media screen and (max-width:1280px) {
    section .content-wrap {
        width: 100%;
        box-sizing: border-box;
        padding: 0 20px;
    }
    .main-section {
        padding: 100px 0;
        padding-bottom: 100px;
    }
    .main-section p {
        margin-bottom: 90px;
    }
    .short-cuts-area {
        margin-top: 100px;
        gap: 20px;
    }
    .short-cut-item .img-box {
        width: 90px;
        height: 90px;
    }
    .short-cut-item .img-box img {
        transform:translate(-50%, -50%) scale(0.8);
    }
    .section-title {
        margin-bottom: 30px;
    }
    .parking-lot-list {
        gap: 20px;
    }
    .parking-lot-item {
        padding: 15px;
    }
    .parking-lot-name {
        font-size: 22px;
        margin-top: 0;
        margin-bottom: 10px;
    }
    .parking-lot-status {
        font-size: 16px;
        padding: 5px 15px;
        right: 10px; top: 10px;
    }
    .parking-count > div > p {
        font-size: 18px;
    }
    .parking-count > div > div > .count-num {
        font-size: 36px;
    }
    .parking-count > div > div > .count-unit {
        font-size: 18px;
    }
    .parking-count > div > div {
        margin-top: 10px;
    }
    .parking-lot-addr {
        font-size: 14px;
    }
    .notice-item-wrap .notice-prev {
        margin-top: 0;
        top: -76px;
        left: 650px;
        right: auto;
    }
    .notice-item-wrap .notice-next {
        margin-top: 0;
        top: -76px;
        left: 710px;
        right: auto;
    }
    .notice-section {
        padding-top: 20px;
        padding-bottom: 200px;
    }

    .bottom-info-section {
        padding-bottom: 200px;
    }

    .main-banner {
        width: calc(100% - 160px);
    }
    .main-banner .banner-item img {
        width: 100%;
    }
}

@media screen and (max-width: 1100px) {
    .bottom-info-content {
        height: 250px;
    }
    .button-content-small {
        font-size: 24px;
    }
    .button-content-small img {
        transform: scale(0.8);
    }
    .bottom-info-content .text-box h2 {
        font-size: 52px;
    }
    .bottom-info-content .phone-num-box {
        gap: 10px;
    }
    .bottom-info-content .phone-num-box p {
        font-size: 20px;
    }
    .bottom-info-content .phone-num-box h3 {
        font-size: 24px;
    }
    .bottom-info-content .phone-num-box img {
        height: 60px;
    }

}

@media screen and (max-width: 975px) {
    .main-section p {
        font-size: 28px;
        margin-bottom: 50px;
    }
    .main-section h1 {
        font-size: 48px;
    }
    .short-cuts-area {
        width: 420px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        margin-top: 50px;
    }
    .short-cut-item span {
        font-size: 16px;
        letter-spacing: -1px;
    }

    .section-title h2 {
        font-size: 28px;
    }
    .section-title p {
        font-size: 18px;
    }

    .notice-item-wrap .notice-prev {
        left: 495px;
    }
    .notice-item-wrap .notice-next {
        left: 555px;
    }

    .parking-count > div > div > .count-num {
        font-size: 30px;
    }
    .parking-count > div > p {
        font-size: 16px;
    }
    .post-text .txt span {
        font-size: 16px;
    }

    .banner-prev, .banner-next {
        display: none !important;
    }
    .main-banner-area {
        margin-bottom: 90px;
    }
    .main-banner {
        width: 100%;
    }
    .main-section {
        padding-top: 80px;
    }

}

@media screen and (max-width: 887px) {
    .parking-lot-list {
        grid-template-columns: repeat(2, 1fr);
    }
    .parking-lot-addr a {
        max-width: calc(48vw - 73px);
    }
}

@media screen and (max-width: 810px) {
    .section-title p {
        display: none;
    }
    .section-title h2:after {
        display: none;
    }
    .notice-item-wrap .notice-prev {
        left: 105px;
    }
    .notice-item-wrap .notice-next {
        left: 165px;
    }
    .bottom-info-section .content-wrap {
        flex-direction: column;
    }
    .button-content-small {
        gap: 10px;
        padding: 10px 0 20px 0;
    }
    .button-content-small img {
        height: 100px;
    }
    .post-text .txt {
        height: 43px;
    }
}
@media screen and (max-width: 607px) {
    section .content-wrap {
        padding: 0 10px;
    }
    .main-section {
        padding: 80px 0 80px 0;
    }
    .main-section h1 {
        font-size: 32px;
    }
    .main-section p {
        font-size: 20px;
        margin-bottom: 20px;
    }
    .short-cuts-area {
        gap: 10px;
        width: 270px;
        grid-template-columns: repeat(3, 1fr);
        margin-top: 30px;
    }
    .short-cut-item .img-box {
        width: 80px;
        height: 80px;
    }
    .short-cut-item span {
        font-size: 14px;
    }
    .short-cut-item .img-box img {
        transform:translate(-50%, -50%) scale(0.6);
    }
    .parking-lot-list {
        grid-template-columns: repeat(1, 1fr);
    }
    .parking-lot-addr a {
        max-width: calc(97vw - 73px);
    }
    .parking-count > div > p {
        font-size: 20px;
    }
    .parking-count > div > div > .count-num {
        font-size: 42px;
    }
    .parking-count > div > div > .count-unit {
        font-size: 20px;
    }
    .parking-count > div > div {
        margin-top: 18px;
    }
    .parking-lot-name {
        font-size: 24px;
        margin-bottom: 18px;
        margin-top: 6px;
    }
    .parking-lot-status {
        top: 15px;
        right: 15px;
        font-size: 18px;
        padding: 7px 20px;
    }
    .parking-lot-addr {
        font-size: 16px;
    }
    .bottom-info-section .text-box {
        display: flex; gap: 5px;
    }
    .bottom-info-section .text-box h2 {
        font-size: 32px;
    }
    .bottom-info-section .phone-num-box {
        position: static;
        justify-content: right;
    }
    .bottom-info-content:last-child {
        display: flex;
        flex-direction: column;
        padding: 20px;
    }
    .bottom-info-content .phone-num-box p {
        font-size: 16px;
    }
    .bottom-info-content .phone-num-box h3 {
        font-size: 18px;
    }
    .bottom-info-content .phone-num-box img {
        height: 50px;
    }
    .notice-section {
        padding-bottom: 140px;
    }
    .button-content-small {
        font-size: 16px;
    }
    .button-content-small img {
        height: 70px;
    }

    .pager-and-btns {
        bottom: -40px;
    }
}
@media screen and (max-width: 415px) {
    .section-title a {
        top:245px;
        right: auto;
        left: 53%;
        transform: translateX(-50%);
    }
    .main-section h1 {
        font-size: 24px;
    }
    .main-section p {
        font-size: 16px;
    }
    .button-content-small {
        padding-bottom: 15px;
    }
    .bottom-info-section .text-box h2 {
        font-size: 28px;
    }
    .notice-section {
        padding-bottom: 100px;
    }
    .bottom-info-section {
        padding-bottom: 80px;
    }
}