html::-webkit-scrollbar {
    display: none;
}

html {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

body {
    font-family: 'Cochin', serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-image: url('media/theme/background.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

header {
    font-family: sans-serif;
    background-color: #ffffff;
    color: #b23772;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0px 4px 8px rgba(0,0,0,0.2);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-button {
    font-family: sans-serif;
    font-size: 1.5rem;
    background-color: #ffffff;
    color: #b23772;
    padding: 15px;
    border-radius: 5px;
    margin-left: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dropdown-button:hover {
    background-color: #ddd;
}

.dropdown-content {
    font-family: sans-serif;
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
    z-index: 1;
    margin-left: 50px;
}

.dropdown-content a {
    color: #b23772;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
}

.dropdown-content a:hover {
    background-color: #ddd;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.logo img {
    height: 150px;
    margin: 0;
    padding: 0;
}

.contact a {
    font-family: sans-serif;
    font-size: 1.5rem;
    color: #b23772;
    text-decoration: none;
    padding: 15px;
    border-radius: 5px;
    margin-right: 75px;
    transition: all 0.3s ease;
}

.contact a:hover {
    background-color: #ddd;
}

main {
    flex: 1;
    padding: 20px;
    text-align: center;
    padding-top: 180px;
    padding-bottom: 80px;
}

.how-to-order {
    margin: 20px 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.how-to-order h2 {
    font-family: sans-serif;
    font-size: 2rem;
    color: #b23772;
    margin-bottom: 20px;
}

.how-to-order ol {
    background-color: rgba(255, 255, 255, 0.6);
    padding: 30px;
    border-radius: 10px;
    border: 2px solid #b23772;
    box-shadow: 0 4px 8px rgba(0,0,0,0.4);
    font-family: sans-serif;
    font-size: 1.2rem;
    color: #333;
    text-align: left;
    padding-left: 50px;
    margin: 0;
}

.how-to-order li {
    margin-bottom: 15px;
    padding-left: 15px;
}

.how-to-order ul {
    font-family: sans-serif;
    font-size: 1.1rem;
    color: #333;
    padding-left: 20px;
    margin-top: 10px;
}

.how-to-order ul li {
    margin-bottom: 8px;
}

.border-image {
    width: 50%;
    height: auto;
    margin: 20px auto;
    display: block;
}

#border_top, #border_bottom {
    display: none;
}

.contact-info {
    margin: 20px 0;
    padding-bottom: 10px;
}

.contact-info h2 {
    font-family: sans-serif;
    font-size: 2rem;
    color: #b23772;
    margin-bottom: 20px;
}

.contact-info p {
    font-family: sans-serif;
    font-size: 1.5rem;
    color: #333;
    margin: 10px 0;
}

.contact-info a {
    color: #b23772;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

footer {
    position:fixed;
    bottom:0px;
    width: 100%;
    font-family: sans-serif;
    background-color: #ffffff;
    color: #b23772;
    text-align: center;
    padding: 10px;
    box-shadow: 0px -4px -8px rgba(0,0,0,0.2);
}

footer a {
    color: #b23772;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

@media screen and (max-width: 1800px) {
    main {
        padding-top: 140px;
        padding-bottom: 60px;
    }
    .logo img {
        height:120px;
    }
}

@media screen and (max-width: 1000px) {
    .logo img {
        height: 120px;
    }
    .border-image {
        width: 70%;
        height: auto
    }
}

@media screen and (max-width: 700px) {
    main {
        padding-top: 120px;
    }
    .dropdown-button {
        margin-left: 15px;
    }
    .logo img {
        height: 100px;
    }
    .how-to-order ol {
        font-size: 1.1rem;
        padding: 20px;
        padding-left: 40px;
        max-width: 70%;
        margin: 0 auto;
    }
    .how-to-order ul {
        font-size: 1rem;
        padding-left: 20px;
    }
    .border-image {
        width: 85%;
        height: auto
    }
    .contact a {
        margin-right: 50px;
    }
    .contact-info {
        margin: 15px 0;
        padding-bottom: 5px;
    }
    .contact-info h2 {
        font-size: 1.8rem;
        color: #b23772;
        margin-bottom: 20px;
    }

    .contact-info p {
        font-family: sans-serif;
        font-size: 1.3rem;
        color: #333;
        margin: 10px 0;
}

}

@media screen and (max-width: 600px) {
    main {
        padding-top: 120px;
    }
    .dropdown-button {
        font-size: 0;
        padding: 10px;
        margin-left: 10px;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .dropdown-button::before {
        content: "☰";
        font-size: 1.5rem;
        color: #b23772;
    }

    .dropdown-content {
        margin-left: 20px;
    }

    .contact {
        margin-right: 20px;
    }
    .contact a {
        font-size: 0;
        padding: 10px;
        margin-right: 20px;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .contact a::before {
        content: '';
        background-image: url('media/theme/contact.png');
        background-size: 30px 30px;
        background-repeat: no-repeat;
        background-position: center;
        display: inline-block;
        width: 30px;
        height: 30px;
    }
    .how-to-order ol {
        font-size: 1rem;
        padding: 20px;
        padding-left: 40px;
        max-width: 65%;
        margin: 0 auto;
    }
    .how-to-order ul {
        font-size: 0.9rem;
        padding-left: 15px;
    }
    .border-image {
        display: none;
    }
    #border_top {
        display: block;
        margin: 0 auto;
        height: 60px;
        background: url('media/theme/border_top_short.png') no-repeat center;
        background-size: 100% ;
        
    }
    #border_bottom {
        display: block;
        margin: 0 auto;
        height: 60px;
        background: url('media/theme/border_bottom_short.png') no-repeat center;
        background-size: 100% ;
    }
    .contact-info {
        margin: 0px;
        padding: 0px;
    }
    .contact-info h2 {
        margin: 0px 0px 20px 0px;
    }
    .contact-info p {
        font-family: sans-serif;
        font-size: 0.9rem;
        color: #333;
    }
}

@media screen and (max-width: 580px) {
    .border-image {
        width: 100%;
        height: auto;
    }
    .contact-info h2 {
        font-size: 1.4rem;
        color: #b23772;
    }

    .contact-info p {
        font-family: sans-serif;
        font-size: 1rem;
        color: #333;
    }
    footer {
        font-size: 0.9rem;
        padding: 0px;
    }
}

@media screen and (max-width: 350px)  {
    .logo img {
        height: 70px;
    }
    main {
        padding-top: 90px;
    }
    .how-to-order ol {
        font-size: 0.8rem;
        padding: 20px;
        padding-left: 40px;
        max-width: 65%;
        margin: 0 auto;
    }
    .how-to-order ul {
        font-size: 0.7rem;
        padding-left: 15px;
    }
    footer {
        font-size: 0.9rem;
        padding: 0px;
    }
    
}