
/* CSS Variables for Theme */
                            
      /* to add custom fonts*/
        @font-face {
                                font-family: 'goudy_heavyface';
                                src: url('https://cdn.jsdelivr.net/gh/pargaimanish/experince_shit@main/goudy_heavyface_condensed_regular.woff2') format('woff2'),
                                    url('https://cdn.jsdelivr.net/gh/pargaimanish/experince_shit@main/goudy_heavyface_condensed_regular.woff') format('woff'),
                                    url('https://cdn.jsdelivr.net/gh/pargaimanish/experince_shit@main/goudy_heavyface_condensed_regular.ttf') format('truetype');
                                font-weight: normal;
                                font-style: normal;
                            }


            @font-face {
                                    font-family: 'jmh_typewriter';
                                    src: url('https://cdn.jsdelivr.net/gh/pargaimanish/experince_shit@main/jmh_typewriter.woff2') format('woff2'),
                                        url('https://cdn.jsdelivr.net/gh/pargaimanish/experince_shit@main/jmh_typewriter.woff') format('woff'),
                                        url('https://cdn.jsdelivr.net/gh/pargaimanish/experince_shit@main/jmh_typewriter.ttf') format('truetype');
                                        
                                    font-weight: normal;
                                    font-style: normal;
                                    font-display: swap; 
            }

                :root {
    --primary-color: #3498db;
    --secondary-color: #2ecc71;
    --bg-color: #f4f4f4;
    --text-color: #333;
    --spacing: 16px;
}

body {
    font-family: 'jmh_typewriter';
    background-color: var(--bg-color);
    color: var(--text-color);
    margin: 0;
    padding: var(--spacing);
}

h1 {
    font-family: 'goudy_heavyface' ;
    text-align: Left;
    font-size: clamp(3rem, 9vw, 5rem);
}

h2 {
    font-family: 'goudy_heavyface' ;
}

#menuStructure {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing);
    padding: var(--spacing);
}

.category {
    background: var(--primary-color);
    color: white;
    padding: var(--spacing);
    border-radius: 8px;
}

.category h2 {
    text-align: center;
}

.dish {
    background: white;
    padding: var(--spacing);
    margin: var(--spacing) 0;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.usersExperience {
    display: grid;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: var(--spacing);
    padding: var(--spacing);
}

.usersExperience div {
    min-width: 300px;
    padding: var(--spacing);
    background: var(--secondary-color);
    color: white;
    border-radius: 8px;
    scroll-snap-align: start;
}

form {
    text-align: center;
    margin: var(--spacing) 0;
}

input[type="file"] {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.submit {
    background: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.category h2 {
    text-align: center;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.2);
    padding: 10px;
    border-radius: 4px;
}

.category-content {
    display: none;
    padding: var(--spacing);
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-top: var(--spacing);
}

.category.open .category-content {
    display: block;
}

.dish {
    background: var(--secondary-color);
    color: white;
    padding: var(--spacing);
    margin-top: var(--spacing);
    border-radius: 8px;
    cursor: pointer;
}

.dish-details {
    display: none;
    background: white;
    color: var(--text-color);
    padding: var(--spacing);
    border-radius: 8px;
    margin-top: var(--spacing);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.dish.open .dish-details {
    display: block;
}

.dropdown-content,
.dropdown-content-0 {
    display: none;
}

.share_exp-bt {
    background: none;
    border: none;
    text-shadow: 2px 8px 10px #2776EA;
    font-size: xx-large;
    position: fixed;
    z-index: 999;
    bottom: 20px;
    right: 20px;
}



body {
font-family: 'jmh_typewriter',sans-serif;
padding: 20px;
}

.filter-button {
display: inline-flex;
align-items: center;
background-color: #f1f1f1;
border: none;
padding: 10px 16px;
border-radius: 8px;
cursor: pointer;
font-size: 16px;
}

.filter-icon {
margin-right: 8px;
}

.filter-options {
margin-top: 10px;
display: block;
background-color: #ffffff;
padding: 10px;
border: 1px solid #ddd;
border-radius: 8px;
width: fit-content;
}

.filter-options label {
display: block;
margin-bottom: 5px;
}

.rotated {
    transform: rotate(180deg);
}
.orderForm {
    background: none;
    border: none;
    text-shadow: 2px 8px 10px #2776EA;
    font-size: xx-large;
    position: fixed;
    z-index: 999;
    bottom: 20px;
    right: 20px;
}
@media only screen and (max-width: 600px) {

    h2{

  overflow-wrap: break-word;
  word-break: break-word; 
  white-space: normal;
  
  
 
    }

    #filterOptions { 
        display: flex;
        overflow: scroll;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-around;
    }
    #menuStructure {
        display:flex;
        flex-direction:column;
        
    }
textarea {
        width: 90vw;   /* 90% of the viewport width */
        height: 70px;
        font-size: large; /* Adjust font size for smaller screens */
        right: 5vw;
        bottom: 10px;
      }
}

