* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    margin-right: auto;
    margin-left: auto;
    background-color: rgb(243, 243, 243);
    line-height: 1.7em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

header {
    background-color: rgb(12, 12, 12);
}

li {
    list-style: none;
}

a {
    color: white;
    text-decoration: none;
    font-family: "Open Sans", sans-serif;
}

h1 {
    font-family: "Open Sans", sans-serif;
}

h2 {
    font-family: "Open Sans", sans-serif;
}

h3 {
    font-family: "Open Sans", sans-serif;
}

h4 {
    font-family: "Open Sans", sans-serif;
}

p {
    font-family: "Open Sans", sans-serif;
}

dt {
    font-family: "Open Sans", sans-serif;
}

dd {
    font-family: "Open Sans", sans-serif;
}

li {
    font-family: "Open Sans", sans-serif;
}

label {
    font-family: "Open Sans", sans-serif;
}

/* .nav-branding img {
    height: 100px;
    display: flex;
    align-items: center;
}

.nav-branding img:hover {
    opacity: 90%;
}

.navbar {
    min-height: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.nav-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

.nav-branding {
    font-size: 2rem;
}

.nav-link {
    transition: all 0.3s ease-in-out;
}

.nav-link:hover {
    color: red;
}

#active {
    font-weight: 900;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: white;
} */

/* @media (max-width: 481px) {
    .hamburger {
        display: block;
    }
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(-45deg);
    }
    .hamburger.active .bar:nth-child(2) {
        opacity: 0%;
    }
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(45deg);
    }
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        gap: 0px;
        flex-direction: column;
        background-color: rgb(12, 12, 12);
        width: 100%;
        height: 50%;
        text-align: center;
        transition: 0.3s;
    }
    .nav-item {
        margin: 16px 0;
    }
    .nav-menu.active {
        left: 0;
    }
} */

.disclosure {
    text-align: center;
    background-color: rgb(12, 12, 12);
}

.disclosure p {
    color: gray;
    padding: 10px;
    font-size: 12px;
}

.splash {
    background-image: linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.25),
            rgba(0, 0, 0, 0.75)
        ),
        url("../img/splash.webp");
    background-position: center;
    background-color: black;
    background-size: cover;
    background-repeat: no-repeat;
    height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.splash img {
    width: 500px;
}

.booking-selector {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
    max-width: 1020px;
    margin: -50px auto;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    column-count: 2;
    -webkit-transition: all .3s ease-in-out;
}

.dropdown-content a {
    color: black;
    padding: 20px 50px;
    text-decoration: none;
    display: block;
    -webkit-transition: all .3s ease-in-out;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
    -webkit-transition: all .3s ease-in-out;
}

.dropdown:hover .dropdown-content {
    display: block;
    -webkit-transition: all .3s ease-in-out;
}

.picker {
    background-color: white;
    color: rgb(12, 12, 12);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 15px;
    text-align: left;
    padding-left: 50px;
    padding-right: 75px;
    padding-top: 25px;
    padding-bottom: 25px;
    display: inline-block;
    -webkit-transition: all .3s ease-in-out;
}

.picker p {
    font-weight: 900;
    padding-top: 5px;
}

.picker:hover {
    background-color: rgb(248, 248, 248);
    -webkit-transition: all .3s ease-in-out;
}

.submit {
    background-color: blue;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 20px;
    margin: 10px;
    padding-left: 40px;
    padding-right: 40px;
    padding-top: 25px;
    padding-bottom: 25px;
    -webkit-transition: all .3s ease-in-out;
}

.submit:hover {
    opacity: 80%;
    -webkit-transition: all .3s ease-in-out;
}

.line {
    height: 55px;
    width: 1px;
    background-color: rgb(168, 168, 168);
    z-index: 2;
    opacity: 50%;
    padding-left: .01px;
    padding-right: .01px;
}

button:hover {
    opacity: 90%;
}

.vertical {
    border-left: 1px solid black;
    height: 40px;
    position: absolute;
    left: 50%;
}

main {
    max-width: 1000px;
    margin: 0 auto;
}

.description {
    max-width: 1000px;
    margin-top: 55px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
}

.description h1, h2, h3, h4, li {
    margin-top: 10px;
}

.description p {
    margin-top: 10px;
    font-size: 16px;
}

.description a {
    margin-top: 10px;
    color: rgb(12, 12, 12);
}

.description a:hover {
    color: red;
}

.description dt {
    margin-top: 10px;
    font-size: 24px;
    font-weight: 700;
}

.description dd {
    margin-top: 10px;
}

#des2 {
    margin-top: 0px;
}

.smlink {
    color: rgb(12, 12, 12);
}

.rooms {
    display: flex;
    flex-wrap: wrap;
    flex: 0 0 30%;
    justify-content: center;
}

.room {
    max-width: 500px;
    padding: 10px;
}

.roomimg {
    height: 350px;
    width: 100%;
    background-position: center;
    object-fit: cover;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
}

.roomdes h2 {
    margin-top: 10px;
    margin-bottom: 10px;
}

.details {
    margin-bottom: 10px;
}

.details p {
    font-size: 14px;
}

.smlink:hover {
    color: red;
}

.desimg {
    margin-top: 10px;
    width: 1000px;
    height: 350px;
    background-position: center;
    object-fit: cover;
    background-repeat: no-repeat;
}

.card-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-top: 50px;
}

.card {
    background-image: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.25),
        rgba(0, 0, 0, 0.75)
    );
    background-position: left;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 10px;
    padding: 15% 0;
    text-align: center;
    display: flex;
    justify-content: center;
    margin: 10px;
    width: calc(50% - 20px);
    filter: drop-shadow(0 0.25rem 0.25rem rgba(0, 0, 0, 0.5));
    transition: all 0.3s ease-in-out;
}

#aria {
    background-image: linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.25),
            rgba(0, 0, 0, 0.75)
        ),
        url(../img/aria.webp);
}

#bellagio {
    background-image: linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.25),
            rgba(0, 0, 0, 0.75)
        ),
        url(../img/bellagio.webp);
}

#delano {
    background-image: linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.25),
            rgba(0, 0, 0, 0.75)
        ),
        url(../img/delano.webp);
}

#excalibur {
    background-image: linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.25),
            rgba(0, 0, 0, 0.75)
        ),
        url(../img/excalibur.webp);
}

#mgm {
    background-image: linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.25),
            rgba(0, 0, 0, 0.75)
        ),
        url(../img/mgm.webp);
}

#luxor {
    background-image: linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.25),
            rgba(0, 0, 0, 0.75)
        ),
        url(../img/luxor.webp);
}

#mandalay {
    background-image: linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.25),
            rgba(0, 0, 0, 0.75)
        ),
        url(../img/mandalay.webp);
}

#ny {
    background-image: linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.25),
            rgba(0, 0, 0, 0.75)
        ),
        url(../img/ny.webp);
}

#vdara {
    background-image: linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.25),
            rgba(0, 0, 0, 0.75)
        ),
        url(../img/vdara.webp);
}

#park {
    background-image: linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.25),
            rgba(0, 0, 0, 0.75)
        ),
        url(../img/park.webp);
}

#nomad {
    background-image: linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.25),
            rgba(0, 0, 0, 0.75)
        ),
        url(../img/nomad.webp);
}

.card:hover {
    opacity: 90%;
    transform: scale(1.03);
}

.card h2 {
    color: white;
    font-size: 30px;
    filter: drop-shadow(0 0.5rem 0.5rem rgba(0, 0, 0, 0.75));
}

footer {
    background-color: rgb(12, 12, 12);
    color: white;
    text-align: center;
    padding: 1em;
    bottom: 0;
    width: 100%;
    margin-top: 50px;
}

footer .footer-links {
    padding: 10px;
}

footer .footer-links a {
    padding: 10px;
}

.deals {
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dealbtn {
    background-color: green;
    font-size: 14px;
    border-radius: 21px;
    color: white;
    font-weight: 700;
    margin-top: 32px;
    height: auto;
    width: auto;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 12px;
    padding-right: 12px;
    cursor: pointer;
    border: none;
    -webkit-transition: all .3s ease-in-out;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
    text-align: center;
}

.dealbtn:hover {
    background-color: rgb(1, 177, 1);
    -webkit-transition: all .3s ease-in-out;
}

@media (max-width: 1025px) {
    .description {
        padding-left: 5vw;
        padding-right: 5vw;
    }

    .booking-selector {
        max-width: 800px;
    }

    .picker {
        padding-left: 37px;
        padding-right: 55px;
        font-size: 12px;
    }

    .picker p {
        font-size: 13px;
    }

    .submit {
        padding-right: 20px;
        padding-left: 20px;
    }
}

@media (max-width: 481px) {
    .splash {
        height: auto;
    }
    
    .description {
        margin-top: 20px;
    }

    .disclosure p {
        color: gray;
        padding: 10px;
        font-size: 10px;
    }

    .splash img {
        width: 250px;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .booking-selector {
        width: 100vw;
        max-width: 100vw;
        height: auto;
        margin: 0 auto;
        display: inline-block;
        vertical-align: top;
        justify-content: center;
    }

    .picker {
        width: 100vw;
        text-align: center;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .submit {
        display: flex;
        justify-content: center;
        width: 95%;
    }

    .description {
        padding-left: 5vw;
        padding-right: 5vw;
    }

    .description h1 {
        font-size: 24px;
    }

    .description h2 {
        font-size: 20px;
    }

    .description p {
        font-size: 14px;
    }

    .room h2 {
        font-size: 20px;
    }

    .line {
        display: none;
    }

    .rooms {
        display: flex;
        flex-wrap: wrap;
        flex: 0 0 90%;
        justify-content: center;
    }

    .room {
        padding: 0%;
        width: 90%;
        margin-top: 10px;
    }

    .desimg {
        width: 100%;
        background-size: contain;
    }

    .card-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around;
        margin-top: 30px;
        margin-left: 5%;
        margin-right: 5%;
    }

    .card {
        width: calc(100% - 20px);
    }

    footer {
        font-size: 14px;
    }

    .dealbtn {
        width: 90vw;
    }
}

@media screen and (max-width: 900px) and (orientation: landscape) {
    .splash {
        height: auto;
    }
    
    .description {
        margin-top: 20px;
    }

    .disclosure p {
        color: gray;
        padding: 10px;
        font-size: 10px;
    }

    .splash img {
        width: 250px;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .booking-selector {
        width: 100%;
        max-width: 100%;
        height: auto;
        margin: 0 auto;
        display: inline-block;
        vertical-align: top;
        justify-content: center;
    }

    .picker {
        width: 100%;
        text-align: center;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .submit {
        display: flex;
        justify-content: center;
        width: 97%;
    }

    .description {
        padding-left: 5vw;
        padding-right: 5vw;
    }

    .description h1 {
        font-size: 24px;
    }

    .description h2 {
        font-size: 20px;
    }

    .description p {
        font-size: 14px;
    }

    .room h2 {
        font-size: 20px;
    }

    .line {
        display: none;
    }

    .rooms {
        display: flex;
        flex-wrap: wrap;
        flex: 0 0 90%;
        justify-content: center;
    }

    .room {
        padding: 0%;
        width: 90%;
        margin-top: 10px;
    }

    .desimg {
        width: 100%;
        background-size: contain;
    }

    .card-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around;
        margin-top: 30px;
        margin-left: 5%;
        margin-right: 5%;
    }

    .card {
        width: calc(100% - 20px);
    }

    footer {
        font-size: 14px;
    }

    .dealbtn {
        width: 90vw;
    }
}