/* Styles for the entire page */
* {
    text-decoration: none;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: unset;
    max-width: 100%;
}

/***** NAVIGATION BAR *****/
.navbar-section {
    width: 100%;
    background: rgb(255, 249, 225);
    font-family: 'Inter', sans-serif;
    font-weight: bolder;
    color: black;
    font-feature-settings: 'liga' 1, 'calt' 1;
    z-index: 1000;
}

.navbar {
    display: flex;
    padding: 1% 6%;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    background: rgb(255, 249, 225);
    z-index: 1000;
}

.navbar-toggler {
    border: none;
    font-size: 2rem;
    color: rgba(50,50,52,255);
}

@media (max-width: 768px) {
    .navbar-toggler {
        display: block;
    }
}

.dropdown-menu {
    flex-direction: column;
    background: rgb(255, 249, 225);
    position: absolute;
    top: 100%;
    width: 100%;
    z-index: 999;
}

.dropdown-menu ul {
    list-style: none;
    padding: 1em;
}

.dropdown-menu ul li {
    padding: 1em;
    border-bottom: 1px solid rgb(255, 249, 225);
}

.dropdown-menu ul li a {
    color: #777;
    font-size: 1.2rem;
}

nav a img {
    height: 100px;
}

button {
    background-color: #fff;
    margin-left: 10px;
    border-radius: 10px;
    padding: 5px;
    width: 80px;
    font-size: 14px;
    color: rgba(50, 50, 52, 255);
    border: 1px solid rgba(50, 50, 52, 255);
}

.navbar-nav .nav-item {
    margin-right: 8px;
    margin-bottom: 10px;
}

.navbar-nav .nav-item:last-child {
    margin-right: 0;
}

ul li {
    background: #fff;
    border-radius: 80px;
    list-style: none;
    display: inline-block;
    padding: 10px 20px;
    margin: 10px solid white;
    font-size: 16px;
    font-weight: 500;
    color: #777;
    cursor: pointer;
    position: relative;
    z-index: 2;
    transition: color 0.5s;
}

ul li::after {
    content: '';
    background: #bcbcc0;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    opacity: 0;
    transition: top 0.5s, opacity 0.5s;
}

.navicons {
    margin-right: 50px;
}

.imgbox {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

/***** MORE INFORMATION SECTION ******/
.moreinfo {
    height: 100%;
    width: 100%;
    background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(4, 9, 30, 0.7)), url(Images/Back.jpg);
    background-position: center;
    background-size: cover;
    position: relative;
    font-family: 'Inter', sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    color: #fff;
}

.goodwords {
    font-size: larger;
    padding: 20vh 0vh 0vh;
}

/***** ARROW ANIMATION *****/
.arrow-scroll {
    position: relative;
    height: 4em;
}

.arrow {
    border: solid #fff;
    border-width: 0 5px 5px 0;
    display: inline-block;
    padding: 8px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
}

.arrow:nth-child(2) {
    animation: arrow1 1.5s ease-in-out infinite;
}

.arrow:nth-child(3) {
    animation: arrow2 1.5s ease-in-out infinite;
}

@keyframes arrow1 {
    100% {
        opacity: 0;
        top: 100%;
    }
}

@keyframes arrow2 {
    100% {
        opacity: 0;
        top: 50%;
    }
}

/***** MENU SECTION *****/
.menu {
    width: 100%;
    background-color: #fdf9ed;
    padding: 60px 0px 30px 0px;
}

.main {
    max-width: 1500px;
    width: 100%;
    margin: 30px auto;
    display: flex;
    flex-wrap: wrap;
    gap: 0;
}

.card .price {
    text-align: center;
    font-weight: bold;
    margin-bottom: 20px;
    flex: 0 0 auto;
}

.card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    padding: 18px;
    transition: transform 0.2s ease-in-out;
    margin-left: 3vh;
}

.card:hover {
    transform: translateY(-10px);
}

.card .image {
    width: 100%;
    height: auto;
    overflow: hidden;
    margin-bottom: 15px;
}

.card .image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    margin: 0;
}

.card-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    flex-grow: 1;
}

.card .caption {
    text-align: center;
    line-height: 1.5em;
    margin-bottom: 10px;
    flex: 0 0 auto;
}

button.add {
    margin-top: auto;
    padding: 10px 20px;
    background-color: rgba(50,50,52,255);
    border: none;
    color: #fff;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    flex: 0 0 auto;
}

button.add:hover {
    background-color: #333;
}

.navbar-nav .nav-link {
    color: rgba(50, 50, 52, 255) !important;
}

.navbar-nav .nav-link:hover {
    color: rgba(50, 50, 52, 255);
}

.btn-outline-primary {
    color: #333;
    background-color: #fff;
    border-color: #333;
    margin-bottom: 10px;
}

.btn-outline-primary:hover {
    background-color: #333;
    color: #fff;
    border-color: #333;
}

.footer {
    background-color: #333;
    color: #fff;
    padding: 60px 0;
}

.footer-logo {
    width: 360px;
    height: auto;
    margin-right: 40px;
}

.social-links {
    margin-bottom: 20px;
}

.social-links a {
    color: #fff;
    margin-right: 20px;
    font-size: 24px;
}

.social-links a:last-child {
    margin-right: 0;
}

.footer p {
    margin-bottom: 0;
    font-size: 20px;
}

.footer p a {
    color: #fff;
    margin-right: 20px;
    font-size: 20px;
}

.footer p a:last-child {
    margin-right: 0;
}

.menu_heading {
    background-color: #fdf9ed;
    font-family: 'Inter', sans-serif;
    font-optical-sizing: auto;
    text-align: center;
    font-weight: 700;
    font-style: normal;
    padding: 0vh 5vh 5vh;
}

#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    transition: opacity 2.5s ease, visibility 3s ease;
}

#loading-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.theprodname {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
}

.theprice {
    font-family: "Fira Code", monospace;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}

.mysen {
    font-family: "Fira Code", monospace;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}

.about-section {
    background-color: #f8fafd;
    padding: 50px 0;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.about-content img {
    max-width: 100%;
    border-radius: 10px;
    border: 5px solid #ffffff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.about-text {
    padding: 20px;
    font-family: 'Inter', sans-serif;
}

.text-center {
    padding-bottom: 2vh;
    font-family: 'Inter', sans-serif;
    font-optical-sizing: auto;
    text-align: center;
    font-weight: 700;
    font-style: normal;
}