/* Reset CSS */
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
/*
1. Từ ngoài vào trong
2. Từ trên xuống dưới
3. Tổng quan đến chi tiết
*/

/*
1. Vị trí
2.Kích thước(width, height)
3. Màu sắc
4. Kiểu dáng(hình tròn, vuông, chữ nhật,...)
*/

/* Common */

.clear {
    clear: both;
}

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

.row {
    margin-left: -4px;
    margin-right: 5px;
}

.mt-16 {
    margin-top: 16px !important;
}

.mt-32 {
    margin-top: 32px !important;
}

.col {
    float: left;
    padding-left: 8px;
    padding-right: 0;
}

.col-full {
    width: 100%;
}

.col-half {
    width: 50%;
}

.col-third {
    width: 33.33333%;
}

/* Main(nội dung) */
#main {

}

#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 46px;
    background-color: #000;
    z-index: 1;
}

#nav {
    display: inline-block;
}

#nav, .subnav {
    list-style-type: none;
}

#nav > li {
    display: inline-block;
} 

#nav > li > a {
    color: #fff;
    text-transform: uppercase;
}

#nav li {
    position: relative;
}

#nav li a {
    color: #fff;
    text-decoration: none;
    line-height: 46px;
    padding: 0 24px;
    display: block;
}

#nav li:hover .subnav {
    display: block;
}


#nav > li:hover > a,
#nav .subnav li:hover {
    color: #000;
    background-color: #ccc;

}

#nav .subnav {
    display: none;
    min-width: 160px;
    position: absolute;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

#nav .subnav a {
    color: #000;
    padding: 0 12px;
    line-height: 38px;
}

#nav .nav-arrow-down {
    font-size: 12px;
}

#header .search-btn {
    float: right;
    padding: 0 21px;
    color: #fff;
}


#header .search-btn:hover {
    background-color: #f44336;
    cursor: pointer;
}

#header .search-icon {
    color: #fff;
    font-size: 16px;
    line-height: 46px;
}

#slider {
    position: relative;
    margin-top: 46px;
    padding-top: 50%;
    background: url('../img/slider.jpg') top center / cover no-repeat;
}

#slider .text-content {
    position: absolute;
    bottom: 47px;
    color: #000;
    width: 100%;
    text-align: center;
}

#slider .text-heading {
    font-weight: 500;
    font-size: 24px;
}

#slider .text-description {
    font-size: 15px;
    margin-top: 20px;
    text-shadow: 0 0 1px #000;
}
 
/* Content */
#content {

}

#content .content-section {
    width: 800px;
    max-width: 100%;
    padding: 64px 0 112px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 16px;
    padding-right: 16px;
}

#content .section-heading {
    font-size: 30px;
    text-align: center;
    font-weight: 500;
    letter-spacing: 4px;
}

#content .section-subheading {
    font-size: 15px;
    text-align: center;
    margin-top: 25px;
    font-style: italic;
    color: #AAAAAA;
}

#content .about-text {
    margin-top: 25px;
    font-size: 15px;
    text-align: justify;
    line-height: 1.4;
}

#content .members {
    margin-top: 20px;
    margin-right: 0px;
}

#content .members-item {
    text-align: center;
}

#content .member-name {
    font-size: 15px;
}

#content .member-img {
    margin-top: 10px;
    width: 154px;
    border-radius: 5px;
    height: 200px;
    box-sizing: border-box;
}

/* Tour Section */
.tour-section {
    margin-top: 64px;
    padding-top: 64px;
    padding-bottom: 64px;
    background-color: #000;
}

.tour-section h2 {
    padding-top: 25px;
    padding-bottom: 25px;
    font-size: 35px;
    text-align: center;
    color: #fff
}

.tour-section .section-subheading {
    font-size: 15px;
    font-style: italic;
    color: #AAAAAA;
    text-align: center;
}

.tickets-list {
    background-color: #fff;
    margin-top: 64px;
    margin-left: 200px;
    margin-right: 200px;
}

.tickets-list li {
    color: #757575;
    list-style: none;
    font-size: 15px;
    padding: 11px 16px;
    border-bottom: 1px solid #ddd;
}

.tickets-list .sold-out {
    background-color: #f44336;
    color: #fff;
    padding: 3px 4px;
    margin-left: 12px;
}

.tickets-list .quantity {
    float: right;
    width: 24px;
    height: 24px;
    background-color: #000;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 24px;
}

/* Place */
.place-list {
    margin-top: 16px;
    justify-content: center;
}

.place-img {
    width: 100%;
    display: block;
}

.place-img:hover {
    opacity: 0.6;
}

.place-main {
    padding: 16px;
    font-size: 15px;
    background-color: #fff;
}

.place-heading {
    font-size: 15px;
}

.place-time {
    margin-top: 15px;
    color: #757575;        
}

.place-desc {
    margin-top: 15px;
    line-height: 1.4;
}

.place-buy-btn {
    margin-top: 15px;
    background-color: #000;
    color: #fff;
    text-decoration: none;
    padding: 11px 16px;
    display: inline-block;
    cursor: pointer;
    border: none;
    font-size: 15px;
    text-align: center;
}

.place-buy-btn:hover {
    color: #000;
    background-color: #ccc;
}

.modal.open {
    display: flex;
}

.modal {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.4);
    align-items: center;
    justify-content: center;
    display: none;
}

.modal-container {
    background: #fff;
    width: 900px;
    min-height: 200px;
    position: relative;   
    max-width: calc(100% - 32%);
    animation: modalFadeIn ease .5s;
}

.modal-header {
    background: #009688;
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #fff;
}

.modal-heading-icon {
    margin-right: 16px;
}

.modal-label {
    display: block;
    font-size: 15px;
    margin-bottom: 10px;
}

.modal-input {
    border: 1px solid #ccc;
    width: 100%;
    padding: 10px;
    font-size: 15px;
    margin-bottom: 15px;
}

.modal-close {
    position: absolute;
    right: 0;
    top: 0;
    color: #fff;
    padding: 12px;
    cursor: pointer;
    opacity: 0.9;
}

.modal-close:hover {
    opacity: 1;
}

.modal-body {
    padding: 16px;
}

#buy-ticket:hover {
    opacity: 0.8;
}

#buy-ticket {
    background: #009688;
    border: none;
    color: #fff;
    width: 100%;
    font-size: 15px;
    text-transform: uppercase;
    padding: 18px;
    cursor: pointer;
}

.modal-footer {
    text-align: right;
    padding: 16px;
}

.modal-footer a {
    color: #2196F3;
}

@keyframes modalFadeIn{
    from {
        opacity: 0;
        transform: translateY(-140px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-section h2, p {
    display: flex;
    justify-content: center;
}

/* Map */
.map-section img {
    width: 100%;
}

/* Footer */
.footer {
    padding: 64px 16px;
    text-align: center;
}
#footer .socials {
    margin-top: 64px;
    text-align: center;
    font-size: 48px;
}

#footer .socials a {
    text-decoration: none;
    color: rgba(0, 0, 0, 0.6);
    padding: 0 8px;
} 

#footer .copyright a:hover,
#footer .socials a:hover {
    color: rgba(0, 0, 0, 0.3);
}

#footer .copyright {
    margin-top: 16px;
    color: rgba(0, 0, 0, 0.6);
    padding: 8px 0;
    font-size: 20px;
}

#footer .copyright a {
    color: rgba(0, 0, 0, 0.6);
    padding: 0 8px;
}

 