* {
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Courier New', Courier, monospace;
    background-color: rgb(20, 20, 20);
    color: white;
    overflow-y: hidden;
}
::-webkit-scrollbar {
    display: none;
}

a {
    text-decoration: none;
    color: #ffffffd7;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
button {
    cursor: pointer;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    font-family: 'Courier New', Courier, monospace;
}
img{
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

section.hidden {
    opacity: 0;
    /* Hidden state */
}

.type{
    background-color: #00000044;
    backdrop-filter: blur(7px);
    box-shadow: -5px 0 10px black;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    position: fixed;
    right:-30px;
    top:40vh;
    transition-duration: 0.3s;
    overflow: hidden;
}
.type a{
    padding: 20px;
    padding-right: 50px;
    border-radius: 10px;
    text-align: center;
    transition-duration: 0.3s;
}
#current{
    background-color: rgba(40, 40, 40, 0.318);
}
.intro{
    margin: 20px;
    margin-top: 10px;
    text-align: right;
    word-wrap: break-word;
}
.write{
    display: block;
    width: max-content;
    padding: 5px 10px 5px 10px;
    margin-left: 100%;
    transform: translate(calc(-100% - 20px));
    border-radius: 20px;
    color: white;
    background-color: #00000000;
    border: 1px solid white;
    transition-duration: 0.3s;
}
.write:hover{
    background-color: white;
    color: #000;
}
.heading {
    font-size: 30px;
    font-weight: 800;
    margin-right: 20px;
    text-align: right;
}
.calanderBtn {
    background-color: #00000000;
    border: none;
}

.calanderBtn img {
    filter: invert(1);
    height: 40px;
    position: fixed;
    z-index: 20;
    top: 20px;
    left: 20px;
    transition-duration: 0.3s;
    border-radius: 10px;
    padding: 5px;
    backdrop-filter: blur(2px) invert(1);
    box-shadow: 0 0 10px rgb(255, 255, 255);
}

#calanderImg{
    transition-duration: 0.3s;
}

.calanderBtn img:hover {
    background-color: #9c9c9c4a;
}

.calander {
    z-index: 10;
    padding-top: 100px;
    position: fixed;
    top: 0;
    display: flex;
    flex-direction: column;
    background-color: #00000044;
    backdrop-filter: blur(7px);
    box-shadow: 5px 0 10px black;
    height: 100vh;
    width: 10vw;
    transition-duration: 0.4s;
}

.calander a {
    padding: 20px;
    text-align: center;
    transition-duration: 0.3s;
}

.calander a:hover {
    background-color: rgba(194, 194, 194, 0.16);
}


.container {
    display: flex;
    flex-direction: row; /* Row layout for desktop */
    margin-top: 20px;
    overflow-x: scroll; /* Horizontal scroll */
    scroll-behavior: smooth; /* Smooth scroll for horizontal navigation */
}

.art {
    margin: 40px;
    margin-bottom: 80px;
    margin-top: 0;
    height: 500px;
    box-shadow: 0 0 20px black;
    cursor: pointer;
    border-radius: 5px;
    height: 60vh;
}

.frame {
    display: flex;
    flex-direction: column;
}

.info {
    display: flex;
    justify-content: space-around;
    margin-top: -70px;
}

.credits {
    bottom: 0px;
    position: fixed;
    color: #ffffff83;
    padding: 10px;
    text-align: center;
    width: calc(100vw - 20px);
    background-image: linear-gradient(to bottom, transparent,rgb(20, 20, 20),rgb(20, 20, 20),rgb(20, 20, 20));
}

/* Modal styles */
.modal {
    display: none;
    position: fixed;
    z-index: 30;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
    margin: auto;
    display: block;
    max-height: 80vh;
    max-width: 90vw;
}

#caption {
    text-align: center;
    color: #ccc;
    padding: 10px;
    font-size: 20px;
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

form{
    color: #e2e2e2;
    display: flex;
    flex-direction: column;
    margin: 20px;
    padding: 10px;
    border-radius: 10px;
    text-align: center;
}
input{
    border: none;
    color: rgb(255, 255, 255);
    margin-top: 5px;
    background-color: #32323200;
    border-bottom: 1px solid rgba(128, 128, 128, 0.674);
    padding: 10px;
    font-family: 'Courier New', Courier, monospace;
}
#name{
    height: 20px;
}
#email{
    height: 20px;
}
#message{
    font-family: 'Courier New', Courier, monospace;
    margin-top: 5px;
    resize: none;
    margin-bottom: 10px;
    border: none;
    color: rgb(255, 255, 255);
    margin-top: 10px;
    background-color: #32323200;
    border-bottom: 1px solid rgba(128, 128, 128, 0.674);
    padding: 10px;
}


.star-rating {
    display: flex;
    justify-content: center;
    direction: rtl;
}

.star-rating input {
    display: none;
}

.star-rating label {
    font-size: 2em;
    color: grey;
    cursor: pointer;
}

.star-rating input:checked~label {
    color: gold;
}

.star-rating label:hover,
.star-rating label:hover~label {
    color: gold;
}

#submit{
    margin-left: calc(100% - 70px);
    width: 70px;
    height: 40px;
    transition-duration: 0.3s;
    border-bottom: none;
    background-color: #5f5f5f4a;
    border-radius: 10px;
    cursor: pointer;
}
#submit:hover{
    color: black;
    background-color: white;
}

.back{
    background-color: #7d7d7d44;
    padding: 10px;
    margin: 20px;
    position: fixed;
    bottom: 0;
    left:0;
    box-shadow: 0 0 10px black;
    width: max-content;
    backdrop-filter: blur(5px);
    transition-duration: 0.3s;
    border-radius: 10px;
    z-index: 10;
    border: none;
    color: #ccc;
}
.back:hover{
    color: #000;
    background-color: rgb(220, 220, 220);
}
.scrollable-wrapper{
    text-align: center;
    background-color: #252525dc;
    padding: 0;
    border-radius: 10px;
    overflow: scroll;
    margin: 20px;
    height: 30vh;
}
.scrollable-wrapper p{
    padding: 10px;
}
.reviews{
    border-radius: 10px;
    overflow-y: hidden;
    background-color: #333333;
    width: calc(100vw - 40px);
}
tr{
    height: 30px;
    padding: 5px;
}
td{
    padding: 10px;
}
th{
    height: 30px;
    padding: 5px;
}
tr:nth-child(odd) {
    background-color: #252525dc;
}

.BigContainer{
    display: flex;
    flex-direction: column;
    transition-duration: 0.3s;
}
#feedbackSection{
    margin-top: 100vh;
    height: 100vh;
    margin-left: 0;
}
@media screen and (max-width: 700px) {
    #feedbackSection{
        margin-top: 0vh;
        height: 100vh;
        margin-left: 10vw;
    }
    body {
        overflow-x: hidden;
        overflow-y: scroll;
    }
    .BigContainer{
        flex-direction: row;
        overflow-x: hidden;
    }

    .container {
        flex-direction: column; /* Column layout for mobile */
        margin-left: calc(10vw - 30px);
        overflow-y: scroll; /* Enable vertical scroll */
        overflow-x: hidden; /* Disable horizontal scroll */
    }

    .art {
        margin: 30px;
        margin-top: 40px;
        width: 80vw;
        height: auto;
    }

    .calander {
        width: 30vw;
        position: fixed;
        overflow-x: scroll;
    }

    .info {
        margin-top: -20px;
        font-size: 10px;
    }

    .credits {
        margin-top: 50px;
        margin-bottom: 20px;
        position: relative;
        z-index: 0;
    }

    .calanderBtn img {
        background-color: #d4d4d48a;
    }
    .modal-content{
        margin-top: 20vh;
    }
}
