*{
    font-family: 'Poppins';
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


        /* Navbar */
        .navbar {
            display: none !important;
            justify-content: space-between;
            align-items: center;
            background-color: #333;
            color: #fff;
            padding: 10px 20px;
            z-index: 9999 !important;
        }

        .navbar .brand {
            font-size: 19px;
            font-weight: bold;
        }

        /* Hamburger Icon */
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
        }

        .hamburger div {
            width: 25px;
            height: 3px;
            background-color: #fff;
        }

        /* Menü */
        .menu {
            display: none;
            flex-direction: column;
            background-color: #444;
            position: absolute;
            right: 0;
            width: 60%;
            z-index: 9999 !important;
            height: 100%;
            
            
        }

        .menu a {
            color: #fff;
            text-decoration: none;
            padding: 15px;
            text-align: center;
            border-bottom: 1px solid #555;
        }

        .menu a:hover {
            background-color: #555;
        }

        .menu-item{
            background-color: white;
            border-radius: 5px;
        }

        .menu-icon i{
            font-size: 40px;
            display: flex;
            justify-content: center;
        
        }
       
        .hamburger.open #line1 {
            transform: translateY(9px) rotate(45deg);
        }

        .hamburger.open #line2 {
            opacity: 0;
        }

        .hamburger.open #line3 {
            transform: translateY(-9px) rotate(-45deg);
        }

     
        .line {
            width: 100%;
            height: 4px;
            background-color: #fff;
            transition: all 0.4s ease;
        }

        .line2 {
            opacity: 1;
        }

        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }

            .navbar{
                display: flex !important;
            }

            .banner::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 57vh !important;
            background-color: rgba(0, 0, 0, 0.5);
        }
        }




.link-box {
    text-decoration: none;
    color: black;
}

.banner {
    background-image: url("../images/hurrem.jpg");
    width: 100%;
    height: 50vh;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}
.banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50vh;
    background-color: rgba(0, 0, 0, 0.5);
}

.banner-content {
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
}

.logo {
    width: 180px;
    height: auto;
    margin-bottom: 20px;
}

.rounded-card{
    border-radius: 10px;
    cursor: pointer;
    /* height:130px; */
}

.menu-section img{
    height: 95px;
    width: 100px;
}


.menu-section3{
    height: 100% !important;
    width: 100% !important;
    border-radius: 12px !important;
}

.product_price{
    font-size: 19px;
    background: -webkit-linear-gradient(#00000094, #cfd20c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}



.modal {
    display: none; /* Hide modal by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
}
.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 350px;
    text-align: center;
}
.flags {
    list-style-type: none;
    padding: 0;
}
.flags li {
    display: inline-block;
    margin: 10px;
}
