body, html {
    margin: 0;
    padding: 0;
}

#main {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* padding-left: 20px;
    padding-right: 20px; */

    color: var(--main-white);
    background-color: var(--main-beige);

    font-family: 'Times New Roman', Times, serif;

}

#accom-title-section {
    min-width: 60vw;
    height: 85vh;
    position: relative;

    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    margin: 0;
    padding: 0;

    will-change: transform;
}

#hotel-photo-outer-div {
    /* display: flex; */
    position: relative;
    height: 50vh;
    width: 100vw;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

#hotel-photo {
    background-image: url('/assets/images/hotel-bg.avif');
    background-repeat: no-repeat;
    /* background-attachment: fixed; */
    background-position: center center;
    background-size: cover;
    /* background-size: 100%; */

    /* position: relative; */
    position: absolute;

    width: 100%;
    height: 140%;
    
    top: -7%;
    left: 0;

    z-index: -1;
    will-change: transform;
}

#accom-title-text {
    width: 60vw;
    font-family: var(--main-text-font), sans-serif;
    color: var(--main-white);
    position: absolute;
    font-size: 60px;
}

#hotel-info-section {

    margin-top: -450px;

    position: relative;

    height: 50vh;
    width: 100vw;

    background-color: var(--main-beige);

    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    padding-top: 5vh;
    padding-bottom: 5vh;
}

#choices-title-text {
    font-size: 40px;
    color: var(--main-blue);
    text-wrap: wrap;
    margin-right: 6vw;
    margin-left: 6vw;
    text-align: center;
}

#choices-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6vw;
}

.choice-title {
    margin-top: 25px;

    background-color: var(--main-white);
    color: black;
    font-weight: bold;
    font-family: 'amatic sc', cursive;
    /* border-radius: 5px; */
    font-size: calc((2vw + 25px) / 2);

    text-align: center; /* for small viewport width */
    padding-left: 30px;
    padding-right: 50px; /* for bookmark */

    clip-path: polygon(
        0   0,            /* top-left */
        calc(100% - 16px) 0,  /* move in 16px from top-right */
        100% 50%,        /* tip of the bookmark */
        calc(100% - 16px) 100%, /* back in 16px from bottom */
        0   100%         /* bottom-left */
    );
}


.choice-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    min-width: 320px;
    min-height: 50vh;
    margin-top: 50px;

    gap: 2vw;

    border-radius: 25px;

    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    
    height: 100%;
    width: 100%;

    /* Animation */

    transition: transform 0.3s ease;
    transform-origin: center;

    flex-wrap: wrap;

    /* for displaying info card */
    position: relative;
    overflow: hidden;
}

.choice-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: whitesmoke;
    color: black;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    font-family: 'Roboto Condensed', cursive;
    font-size: 16px;
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
}

.choice-container:hover .choice-info {
    transform: translateY(0);
}

/* Adjust the hover scale effect to account for the info card */
.choice-container:hover {
    transform: scale(1.05) translateY(-10px);
}

.choice-info h3 {
    margin-top: 0;
    font-size: 2em;
    color: var(--main-blue);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 10px;
}

.choice-info p {
    margin-bottom: 10px;
    line-height: 1.5;
}

.price {
    font-weight: bold;
    color: hsl(183, 71%, 34%); /* Gold color for price */
    font-size: 1.4em;
}

/* for mobile / narrow viewports */

@media (max-width: 1080px) {
    #choices-container {
        flex-direction: column;
    }
    .choice-container {
        width: 100%;
        min-width: 60vw;
        /* min-width: 320px; */
        flex: 1 1 auto;
    }
}

.choice-container:hover {
    transform: scale(1.02);
    cursor: pointer;
}


/* for mobile  support */

.choice-container.active .choice-info,
.choice-container:focus .choice-info,
.choice-container:focus-within .choice-info {
    transform: translateY(0);
}

.choice-container.active,
.choice-container:focus {
    transform: scale(1.02) translateY(-10px);
    outline: none; /* Remove default focus outline */
}

/* For better mobile UX, make sure taps are recognized */
.choice-container {
    -webkit-tap-highlight-color: transparent; /* Remove tap highlight on mobile */
    cursor: pointer;
}

.links {
    color: #2e2e2e;
}


#le-meridien-hotel-container {
    background-image: url('/assets/images/le-meridien.avif');

}

#plh-hotels-container {
    background-image: url('/assets/images/plh-apartments.avif');
}

#others-container {
    background-image: url('/assets/images/other-hotels.avif');
}

#transportation-info-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 0;
    flex-wrap: wrap;
}

#transportation-title {
    display: flex;
    justify-content: center;
    align-items: center;
}

#transportation-title-text {
    font-family: var(--main-text-font), sans-serif;
    position: relative;
    
    font-size: 45px;
    color: var(--main-blue);
    text-wrap: wrap;
}

#transportation-description {
    color: black;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: normal;
    font-size: 16px;
    margin-left: 10vw;
    margin-right: 10vw;
    text-align: center;
}

#transportation-NOT {
    color: #ac0b0b;
}

#transportation-info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5vw;
    flex-wrap: wrap;
}

.transp-container {
    width: 320px;
    min-height: 30vh;
    margin-top: 50px;

    display: flex;
    flex-direction: column;
}

.transp-title {
    color: black;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 28px;
    margin-left: 10px;
    margin-right: 10px;
}

.transp-options-ul {
    color: black;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 24px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 2vh;
}

#bus-schedule-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80%;
}

#bus-schedule-image {
    width: clamp(500px, 60vw, 800px);
    object-fit: cover;
    margin-bottom: 5vh;
    border-radius: 10px;
    transition: transform 0.3s ease; /* Add smooth transition */
}

#bus-schedule-image:hover,
#bus-schedule-image:active { /* :active will work for tap on mobile */
    transform: scale(1.02); /* Scale to 1.05 times the original size */
    cursor: pointer; /* Optional: changes cursor to indicate it's interactive */
}