* {
    padding: 0;
    margin: 0;
    font-family: 'Droid Serif';
}

/* Breadcrumb Styles */
.menu-container {
    background: url('images/top_bg_1.jpg') no-repeat center center/cover;
    text-align: center;
    padding: 100px 20px 60px;
    color: #2b1b17;
}

.menu-container h1 {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.menu a,
span {
    text-align: center;
    color: #555;
    text-decoration: none;
}

.menu a:hover {
    color: #009f3b;
}

/* Breadcrumb Styles ended */

/* Intro */
.menu-intro {
    text-align: center;
    padding: 50px 20px;
    max-width: 700px;
    margin: 0 auto;
}

.menu-intro h2 {
    font-size: 20px;
    color: #453e3C;
    letter-spacing: 6px;
    text-transform: uppercase;
    font-weight: 700;
    margin-top: auto;
    padding-top: 7%;
}

.menu-intro p {
    color: #a6a19f;
    font-family: 'Source Sans Pro', sans-serif;
    padding-top: 3%;
}

/* Tabs */
.nav-tabs .navi-link {
    color: #2c2c2c; /* dark grey text */
    font-weight: bold;
    border: none;
    border-radius: 0;
    padding: 5px 5px;
    font-size: 16px;
    font-family: 'Droid-Serif';
    background-color: transparent;
  }
 
  /* Active tab (selected) */
  .nav-tabs .navi-link.active {
    color: green;
    border: 1px solid green;
    background-color: transparent;
  }
 
  /* Hover effect */
  .nav-tabs .navi-link:hover {
    color: green;
    border: 1px solid green;

  }
 
  /* Small spacing between tabs */
  .nav-tabs .nav-item {
    margin: 0 1rem;
  }

.menu-item {
    display: flex;
    gap: 20px;
    border-bottom: 1px dashed #ccc;
    padding-bottom: 20px;

}

.menu-item img {
    width: 100px;
    height: 100px;
    object-fit: cover;
}

.menu-info h3 {
    font-family: 'Playfair Display', serif;
    color: #009f3b;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 5px;
}


.menu-info h3:hover {
    color: #453e3c;
    cursor: pointer;
}

.menu-info span {
    font-size: 20px;
    color: #453e3c;
    font-weight: bold;
}

.menu-info p {
    color: #666;
}


.horizontal_line {
    border: 1px dashed #ccc;
    width: 60%;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
}


.koffee-menu-section {
    background-color: #fff;
}

.koffee-menu-heading {
    font-size: 20px;
    color: #453e3C;
    letter-spacing: 6px;
    text-transform: uppercase;
    font-weight: 700;
    margin-top: auto;
}

.koffee-menu-description {
    color: #a6a19f;
    font-family: 'Source Sans Pro', sans-serif;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .menu-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .menu-item img {
        width: 100%;
        max-width: 250px;
        height: auto;
    }

    .menu-info h3 {
        flex-direction: column;
        align-items: center;
    }
}

/* tabs section ended */

/* btn section */
.btn-container {
    text-align: center;
    margin: 2rem 0;
}

.btn-full-menu {
    display: inline-block;
    text-transform: uppercase;
    padding: 1em 2em;
    font-size: 0.875rem;
    font-weight: 600;
    color: #009f3b;
    text-decoration: none;
    border: 2px solid #009f3b;
    position: relative;
    background: transparent;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    overflow: hidden;
}

.btn-full-menu::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid #453e3C;
    opacity: 0;
    transform: scale(1.1);
    transition: all 0.3s ease;
    pointer-events: none;
}

.btn-full-menu:hover {
    color: #453e3C;
    border-color: transparent;
}

.btn-full-menu:hover::after {
    opacity: 1;
    transform: scale(1);
}

/* btn section ended  */