* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    border: none;
    outline: none;
    scroll-behavior: smooth;
    font-family: 'Poppins', sans-serif;
}

:root {
    --main-color: #141d2b;
    --second-color: #4287a9;
    --third-color: #e86f0b;
    --fourth-color: #fff;
    --notice-color: #efefef;
}

html {
    font-size: 62.5%;
    overflow-x: hidden;
}

body {
    background: var(--fourth-color);
    overflow: hidden !important;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    width: 100%;
    padding: 2rem 10rem;
    position: sticky;
    top: 0;
    background: var(--main-color);
    box-shadow: 0 10px 20px rgba(0, 0, 0, .5);
    backdrop-filter: blur(10px);
    z-index: 999;
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 2rem;
    max-width: 1600px;
}

.navbar-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    gap: 1.5rem;
    font-weight: 600;
    color: var(--fourth-color);
    text-decoration: none;
    cursor: pointer;
}

.navbar-logo img{
    height: 65px;
    width: 65px;
    border-radius: 50%;
}

.navbar-container .navbar-menu {
    display: flex;
    text-align: center;
    gap: 1.5rem;
    list-style: none;
}

.navbar-container .navbar-menu li a {
    text-decoration: none;
    color: var(--fourth-color);
    font-size: 1.7rem;
    font-weight: 500;
    padding: 10px 20px;
    border: 2px solid transparent;
    transition: all 0.7s ease;
    white-space: nowrap;
}

.navbar-container .navbar-menu .reserve-button {
    background: linear-gradient(45deg, #ff6b6b, #ffd93d);
    border-radius: 20px;
    transition: all .5s ease;
}

.navbar-container .navbar-menu .reserve-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
    background: linear-gradient(45deg, #ffc107, #ff5252);
}

.navbar-container .navbar-menu li a:hover,
.navbar-container .navbar-menu li a.active {
    color: var(--fourth-color);
    background: var(--second-color);
    border: 2px solid var(--fourth-color);
}

.navbar-toggle {
    display: none;
    background: var(--main-color);
    padding: 10px;
    border: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background: var(--fourth-color);
    transition: all 0.3s ease-in-out;
}

/* section {
    min-height: 100vh;
    padding: 10rem 9% 2rem;
} */

/* NAVBAR RESPONSIVE SECTION */
@media (max-width: 880px) {
    .navbar {
        backdrop-filter: none;
        padding: 2rem 0;
    }

    .navbar-container .navbar-menu {
        display: none;
        background: var(--main-color);
        flex-direction: column;
        align-items: flex-start;
        gap: 3rem !important;
        position: absolute;
        height: 100vh;
        width: 250PX;
        top: 50px;
        right: 0;
        padding: 5rem 1.5rem;
        box-shadow: 0 10px 10px rgba(0, 0, 0, .5);
        backdrop-filter: blur(10px);
    }

    .navbar-container .navbar-menu.active {
        display: flex;
    }

    .navbar-toggle {
        display: block;
        z-index: 999;
    }

    .navbar-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .navbar-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .navbar-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

@media (max-width: 768px) {
    .navbar-container .navbar-menu li a {
        font-size: 1.5rem;
    }
}

@media (max-width: 520px) {
    .navbar-logo {
        font-size: 1.8rem;
    }

    .navbar-container .navbar-menu li a {
        font-size: 1.3rem;
        padding: 3px 15px;
    }
}

@media (max-width: 480px) {
    .navbar-container {
        padding: 0 1rem;
    }

    .navbar-logo {
        font-size: 1.5rem;
    }

    .navbar-container .navbar-menu li a {
        font-size: 1.2rem;
        padding: 3px 15px;
    }
}

@media (max-width: 375px) {
    .navbar-logo {
        font-size: 1.3rem;
    }

    .navbar-container .navbar-menu li a {
        font-size: 1.1rem;
        padding: 2px 10px;
    }
}

/* 1st page first Section */

.first-page-btbniantic {
    min-height: 100vh;
    padding: 10rem 9% 2rem;
    display: flex;
    align-items: center;
    margin-top: -5%;
    /* background: linear-gradient(45deg, #141d2b, #e86f0b); */
    background: linear-gradient(45deg, #ffc107, #ff5252, #4287a9, #ffffff);
}

.btb-greeting-content {
    z-index: 1;
}

.first-page-btbniantic .btb-greeting-content {
    margin-top: -15%;
}

.btb-greeting-content p{
    color: var(--fourth-color);
    font-size: 2.5rem;
    font-weight: 500;
}

.btb-greeting-content h1 {
    color: var(--fourth-color);
    font-size: 5rem;
    /* -webkit-text-stroke: .5px var(--main-color); */
    font-weight: 900;
}

.btb-greeting-content h2 {
    color: var(--fourth-color);
    font-size: 2rem;
    /* -webkit-text-stroke: .4px var(--main-color); */
    font-weight: 900;
}

.btb-greeting-images-carousel {
    position: absolute; 
    top: 0; 
    left: 0;
    background: url("../img/heroimg.jpg") no-repeat center center / cover;
    background-attachment: fixed;
    width: 100%;
    height: 100vh;
    clip-path: polygon(60% 0, 100% 0, 100% 100%, 0 100%, 0 75%, 35% 75%);
    z-index: 1;
}

.btn-read-and-contact {
    display: flex;
    flex-direction: row;
}

.btn-read-more, .btn-menu {
    position: relative;
    display: flex;
    margin: 1rem 1rem 1rem 0;
    height: 5rem;
    transition: .5s ease;
}

.btn-read-more .btn {
    border: .3rem solid var(--main-color);
    color: var(--fourth-color);
}

.btn-menu .btn {
    border: .3rem solid var(--fourth-color);
    color: var(--fourth-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 55);
}
/* 
position: absolute;
    top: 35%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 100; */

.btn-read-more .btn, .btn-menu .btn {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 15rem;
    height: 100%;
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    z-index: 1;
    overflow: hidden;
    transition: 1500ms;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    cursor: pointer;
    transition: all .5s ease;
}

.btn-read-more .btn:hover, .btn-menu .btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
    background: linear-gradient(45deg, #ffc107, #ff5252);
}

/* 1st page Second Section */
.heading {
    position: relative;
    font-size: 5rem;
    margin-top: 6rem;
    text-align: center;
    justify-content: center;
    align-items: center;
}

.second-page-btbniantic {
    min-height: 100vh;
    padding: 10rem 9% 2rem;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 5% 9%;
    gap: 3rem;
    height: auto;
    margin-top: -5%;
}

.slider{
    position: relative;
    width: 100%;
    height: var(--height);
    overflow: hidden;
    margin-bottom: 2rem;
    mask-image: linear-gradient(
        to right,
        transparent,
        #000 10% 90%,
        transparent
    );
}

.slider .list{
    display: flex;
    width: 100%;
    min-width: calc(var(--width) * var(--quantity));
    position: relative;
}

.slider .list .item{
    width: var(--width);
    height: var(--height);
    position: absolute;
    left: 100%;
    animation: autoRun 10s linear infinite;
    transition: filter 0.5s;
    animation-delay: calc( (20s / var(--quantity)) * (var(--position) - 1) )!important;
}

.slider .list .item img{
    width: 100%;
}

@keyframes autoRun{
    from{
        left: 100%;
    }to{
        left: calc(var(--width) * -1);
    }
}

.slider:hover .item{
    animation-play-state: paused!important;
    filter: grayscale(1);
}

.slider .item:hover{
    filter: grayscale(0);
}

.slider[reverse="true"] .item{
    animation: reversePlay 20s linear infinite;
}

@keyframes reversePlay{
    from{
        left: calc(var(--width) * -1);
    }to{
        left: 100%;
    }
}

.slider .list .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.second-page-btbniantic .our-story-content {
    font-size: 1.8rem;
    max-width: 900px;
}

.our-story-content p {
    text-align: justify;
    font-size: 1.7rem;
    margin-bottom: 2.5rem;
    letter-spacing: 1px;
}

/* 1st Page Third Section */

.third-page-btbniantic {
    min-height: 100vh;
    padding: 10rem 9% 2rem;
    position: relative;
    align-items: center;
    justify-content: center;
    background: url(../img/469366731_17990670143742584_6149554773238160515_n.jpg) no-repeat center center / cover;
    background-attachment: fixed;
    width: 100%;
    height: 200vh;
    z-index: -1;
}

.btb-left-side-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, #4287a9, #141d2b);
    color: var(--fourth-color);
    border-radius: 50%;
    width: 800px;
    height: 800px;
    font-size: 1.7rem;
    letter-spacing: 1px;
    z-index: 999;
    left: -11%;
    text-align: center;
    overflow: hidden;
    padding: 15rem;
}

.btb-left-side-content img {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: -20%;
    margin-top: -20%;
}

.btb-right-side-content {
    position: absolute;
    right: 0%;
    transform: translateY(-40%); 
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, #ffc107, #ff5252);
    color: var(--fourth-color);
    border-radius: 50%;
    width: 800px;
    height: 800px;
    font-size: 1.7rem;
    letter-spacing: 1px;
    z-index: 999;
    text-align: center;
    overflow: hidden;
    padding: 15rem;
}

.btb-right-side-content img {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: -20%;
    margin-top: -20%;
}

/* 1st Page fourth Section */
.fourth-page-btbniantic {
    min-height: 100vh;
    padding: 10rem 9% 2rem;
    position: relative;
    background: var(--main-color);
}

.gallery-container {
    position: relative;
    max-width: 1400px;
    margin: 50px auto;
    padding: 0 20px;
}

.gallery-header {
    text-align: center;
    margin-bottom: 60px;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
}

.gallery-title {
    font-size: 5rem;
    margin-top: 6rem;
    background: linear-gradient(45deg, #ff6b6b, #ffd93d, #6bcf7f, #4d9de0);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 3s ease-in-out infinite;
    margin-bottom: 15px;
    letter-spacing: -2px;
}

.gallery-subtitle {
    font-size: 1.7rem;
    color: #aaa;
    font-weight: 300;
    letter-spacing: 1px;
}

.carousel-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.carousel-container {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.carousel-slide {
    min-width: 100%;
    position: relative;
    height: 70vh;
    overflow: hidden;
}

.slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.carousel-slide:hover .slide-image {
    transform: scale(1.05);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.3) 0%, transparent 50%, rgba(255, 255, 255, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.carousel-slide:hover .slide-overlay {
    opacity: 1;
}

.slide-content {
    position: absolute;
    bottom: 50px;
    left: 50px;
    right: 50px;
    z-index: 10;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.carousel-slide.active .slide-content {
    opacity: 1;
    transform: translateY(0);
}

.slide-title {
    font-size: 5rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.8);
    background: linear-gradient(135deg, #fff, #f0f0f0);
    color: var(--fourth-color);
    -webkit-background-clip: text;
    /* -webkit-text-fill-color: transparent; */
}

.slide-description {
    font-size: 1.7rem;
    font-weight: 600;
    color: var(--fourth-color);
    text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.8);
    line-height: 1.6;
    max-width: 500px;
    letter-spacing: 1px;
}

.carousel-nav {
    position: absolute;
    top: 35%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 100;
}

.carousel-nav:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.carousel-nav.prev {
    left: 30px;
}

.carousel-nav.next {
    right: 30px;
}

.carousel-nav::before {
    content: '';
    width: 12px;
    height: 12px;
    border: 2px solid #fff;
    border-left: none;
    border-bottom: none;
    transform: rotate(45deg);
}

.carousel-nav.prev::before {
    transform: rotate(-135deg);
    margin-left: 3px;
}

.carousel-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 100;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.indicator.active {
    background: #fff;
    transform: scale(1.3);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.indicator::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    transition: left 0.5s ease;
}

.indicator:hover::before {
    left: 100%;
}

.thumbnail-strip {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow-x: auto;
}

.thumbnail {
    min-width: 120px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

.thumbnail:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.thumbnail.active {
    border-color: #fff;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.thumbnail:hover img {
    transform: scale(1.1);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

* Footer Section */
.demo-content {
    padding: 50px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.demo-content h1 {
    font-size: 5rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.demo-content p {
    font-size: 1.7rem;
    color: #7f8c8d;
    line-height: 1.8;
}

.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    color: #fff;
    padding: 80px 0 20px 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ffd700, transparent);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-section h3 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: #ffd700;
    position: relative;
    display: inline-block;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #ffd700, #ff6b6b);
    border-radius: 1px;
}

.about-section {
    animation: fadeInUp 0.8s ease-out;
}

.restaurant-name {
    font-size: 5rem;
    font-weight: 300;
    color: #ffd700;
    margin-bottom: 20px;
    letter-spacing: 1px;
    line-height: 1.1;
}

.restaurant-description {
    font-size: 1.7rem;
    line-height: 1.8;
    color: #bbb;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.restaurant-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.highlight-tag {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 1.3rem;
    color: #ffd700;
    transition: all 0.3s ease;
}

.highlight-tag:hover {
    background: rgba(255, 215, 0, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
}

.nav-section {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-links li {
    margin-bottom: 15px;
}

.nav-links a {
    color: #bbb;
    text-decoration: none;
    font-size: 1.7rem;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.nav-links a:hover {
    color: #ffd700;
    transform: translateX(10px);
}

.nav-links a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
}

.nav-links a:hover::before {
    opacity: 1;
    left: -25px;
}

.order-btn {
    background: linear-gradient(45deg, #ff6b6b, #ffd93d);
    color: #fff !important;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.8rem;
    margin-top: 20px;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
    transition: all 0.3s ease;
}

.order-btn:hover {
    transform: translateY(-3px) translateX(0);
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.4);
    background: linear-gradient(45deg, #ff5252, #ffc107);
}

.order-btn::before {
    display: none;
}

.social-section {
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    color: #bbb;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 15px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
    font-size: 1.7rem;
}

.social-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.social-link.facebook:hover {
    background: rgba(59, 89, 152, 0.1);
    border-color: #3b5998;
    color: #3b5998;
}

.social-link.tiktok:hover {
    background: rgba(255, 0, 80, 0.1);
    border-color: #ff0050;
    color: #ff0050;
}

.social-icon {
    width: 24px;
    height: 24px;
    margin-right: 15px;
    fill: currentColor;
}

.map-section {
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.map-container {
    width: 100%;
    height: 200px;
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.map-container:hover {
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.map-iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(100%) contrast(120%);
    transition: filter 0.3s ease;
}

.map-container:hover .map-iframe {
    filter: grayscale(0%) contrast(100%);
}

.map-overlay {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 1.3rem;
    backdrop-filter: blur(10px);
}

.address-info {
    margin-top: 20px;
    padding: 20px;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.address-info h4 {
    color: #ffd700;
    margin-bottom: 10px;
    font-size: 2rem;
}

.address-info p {
    color: #bbb;
    font-size: 1.5rem;
    line-height: 1.6;
    letter-spacing: 1px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    color: #777;
}

.footer-bottom p {
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.footer-bottom a {
    color: #ffd700;
    text-decoration: none;
    font-size: 1.5rem;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, #ffd700, #ff6b6b);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
  transition: all 0.3s ease;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  transform: translateY(-5px);
}

.back-to-top::before {
    content: '↑';
    color: #fff;
    font-size: 24px;
    font-weight: bold;
}

/* RESPONSIVE BREAKPOINTS - STANDARDIZED */

/* Large Desktop - 1450px */
@media (max-width: 1450px) {
    /* Third Page */
    .third-page-btbniantic{
        height: 250vh;
    }

    .second-page-btbniantic .our-story-content {
        bottom: 0;
        margin-bottom: -3rem;
    }

    .footer-container {
        padding: 0 30px;
    }
}

/* Tablet Grid Layout */
@media (max-width: 1200px) {
    /* Third Page */
    .third-page-btbniantic{
        height: 305vh;
    }

    .btb-right-side-content {
    position: absolute;
    right: 0%;
    transform: translateY(0%); 
    }

    .footer-content {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 40px;
    }
    
    .map-section {
        grid-column: span 3;
    }


}

/* Tablet Grid Layout - 1024px */
@media (max-width: 1024px) {
    /* Third Page */
    /* .third-page-btbniantic{
        height: 305vh;
    } */

    /* Footer Sectio */
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .about-section {
        grid-column: span 2;
    }
    
    .map-section {
        grid-column: span 2;
    }
    
    .restaurant-name {
        font-size: 4.5rem;
    }
}

/* Tablet - 768px */
@media (max-width: 768px) {
    /* Hero Section */
    .first-page-btbniantic {
        margin-top: -10%;
    }

    .btb-greeting-content p {
        font-size: 2.2rem;
    }

    .btb-greeting-content h1 {
        font-size: 4.5rem;
    }

    .btb-greeting-content h2 {
        font-size: 1.8rem;
    }

    .btn-read-more, .btn-menu {
        height: 4.7rem;
    }

    .btn-read-more .btn, .btn-menu .btn {
        font-size: 1.6rem;
    }

    /* Headings */
    .heading {
        font-size: 4.5rem;
    }

    /* Story Section */
    .second-page-btbniantic .our-story-content {
        font-size: 1.6rem;
    }

    .our-story-content p {
        font-size: 1.5rem;
    }

    /* Third Page */
    .third-page-btbniantic{
        height: auto;
    }

    .btb-left-side-content {
        border-radius: 0%;
        width: 100%;
        height: auto;
        font-size: 1.5rem;
        left: 0;
        padding: 5rem;
        margin-bottom: 5rem;
    }

    .btb-left-side-content img {
        margin-bottom: -20%;
        margin-top: 0%;
    }

    .btb-right-side-content {
        position: relative;
        right: 0;
        border-radius: 0%;
        width: 100%;
        height: auto;
        font-size: 1.5rem;
        left: 0;
        padding: 5rem;
    }

    .btb-right-side-content img {
        margin-bottom: -20%;
        margin-top: 0%;
    }

    /* Gallery Section */
    .gallery-title {
        font-size: 4.5rem;
    }

    .gallery-subtitle {
        font-size: 1.5rem;
    }

    .carousel-slide {
        height: 50vh;
    }

    .slide-content {
        bottom: 20px;
        left: 20px;
        right: 20px;
    }

    .slide-title {
        font-size: 3.5rem;
    }

    .slide-description {
        font-size: 1.5rem;
    }

    .carousel-nav {
        width: 50px;
        height: 50px;
    }

    .carousel-nav.prev {
        left: 15px;
    }

    .carousel-nav.next {
        right: 15px;
    }

    .thumbnail-strip {
        padding: 15px;
    }

    .thumbnail {
        min-width: 100px;
        height: 70px;
    }

    /* Footer */
    .footer {
        padding: 60px 0 20px 0;
    }
    
    .footer-container {
        padding: 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .restaurant-name {
        font-size: 4.5rem;
        line-height: 1;
        margin-bottom: 15px;
    }

    .footer-section h3 {
        font-size: 1.8rem;
    }

    .restaurant-description {
        font-size: 1.5rem;
    }

    .nav-links a {
        font-size: 1.5rem;
    }

    .order-btn {
        font-size: 1.6rem;
        padding: 10px 20px;
    }

    .social-links {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .social-link {
        font-size: 1.5rem;
        padding: 12px;
        min-width: 140px;
        justify-content: center;
    }

    .highlight-tag {
        font-size: 1.2rem;
    }

    .restaurant-highlights {
        justify-content: center;
    }

    .address-info {
        padding: 15px;
    }

    .address-info h4 {
        font-size: 1.8rem;
    }

    .address-info p {
        font-size: 1.3rem;
    }

    .footer-bottom p,
    .footer-bottom a {
        font-size: 1.3rem;
    }

    .demo-content h1 {
        font-size: 4.5rem;
    }

    .demo-content p {
        font-size: 1.5rem;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    
    .map-container {
        height: 250px;
    }
}

/* Mobile Large - 520px */
@media (max-width: 520px) {
    /* Hero Section */
    .first-page-btbniantic {
        margin-top: -14%;
    }

    .first-page-btbniantic .btb-greeting-content {
        margin-top: -60%;
    }

    .btb-greeting-content p {
        font-size: 2rem;
    }

    .btb-greeting-content h1 {
        font-size: 4rem;
    }

    .btb-greeting-content h2 {
        font-size: 1.6rem;
    }

    .btn-read-more, .btn-menu {
        height: 4rem;
    }

    .btn-read-more .btn, .btn-menu .btn {
        width: 13rem;
        font-size: 1.4rem;
    }

    /* Headings */
    .heading {
        font-size: 4rem;
        margin-bottom: 3rem;
    }

    /* Story Section */
    .second-page-btbniantic {
        display: block;
    }

    .second-page-btbniantic .our-story-content {
        font-size: 1.4rem;
    }

    .our-story-content p {
        font-size: 1.3rem;
    }

    /* Third Section */
    .btb-left-side-content {
        font-size: 1.3rem;
        padding: 3.5rem;
    }

    .btb-right-side-content {
        font-size: 1.3rem;
        padding: 3.5rem;
    }

    /* Gallery */
    .gallery-title {
        font-size: 4rem;
    }

    .gallery-subtitle {
        font-size: 1.3rem;
    }

    .slide-title {
        font-size: 3rem;
    }

    .slide-description {
        font-size: 1.3rem;
    }

    /* Footer */
   .footer {
        padding: 50px 0 15px 0;
    }
    
    .footer-container {
        padding: 0 15px;
    }
    
    .footer-content {
        gap: 35px;
    }

    .restaurant-name {
        font-size: 4rem;
        margin-bottom: 15px;
    }

    .footer-section h3 {
        font-size: 1.6rem;
        margin-bottom: 20px;
    }

    .restaurant-description {
        font-size: 1.3rem;
        margin-bottom: 25px;
    }

    .nav-links a {
        font-size: 1.3rem;
    }
    
    .nav-links li {
        margin-bottom: 12px;
    }

    .order-btn {
        font-size: 1.4rem;
        padding: 10px 18px;
    }

    .social-link {
        font-size: 1.3rem;
        padding: 10px;
        min-width: 120px;
    }

    .highlight-tag {
        font-size: 1.1rem;
        padding: 6px 12px;
    }

    .address-info {
        padding: 15px;
        margin-top: 15px;
    }

    .address-info h4 {
        font-size: 1.6rem;
    }

    .address-info p {
        font-size: 1.1rem;
    }

    .footer-bottom p,
    .footer-bottom a {
        font-size: 1.1rem;
    }

    .map-overlay {
        font-size: 1.1rem;
        padding: 6px 10px;
    }

    .demo-content h1 {
        font-size: 4rem;
    }

    .demo-content p {
        font-size: 1.3rem;
    }
    
    .map-container {
        height: 220px;
    }
}

/* Mobile Medium - 480px */
@media (max-width: 480px) {
    /* Hero Section */
    .btb-greeting-content p {
        font-size: 1.8rem;
    }

    .btb-greeting-content h1 {
        font-size: 3.5rem;
    }

    .btb-greeting-content h2 {
        font-size: 1.5rem;
    }

    .btn-read-more, .btn-menu {
        height: 3.8rem;
    }

    .btn-read-more .btn, .btn-menu .btn {
        width: 12rem;
        font-size: 1.3rem;
    }

    /* Headings */
    .heading {
        font-size: 3.5rem;
    }

    /* Story Section */
    .second-page-btbniantic .our-story-content {
        font-size: 1.3rem;
    }

    /* .our-story-content p {
        font-size: 1.2rem;
    } */

    /* Third Section */
    .btb-left-side-content {
        font-size: 1.2rem;
        padding: 3rem;
    }

    .btb-right-side-content {
        font-size: 1.2rem;
        padding: 3rem;
    }

    /* Gallery */
    .gallery-title {
        font-size: 3.5rem;
    }

    .gallery-subtitle {
        font-size: 1.2rem;
    }

    .slide-title {
        font-size: 2.5rem;
    }

    .slide-description {
        font-size: 1.2rem;
    }

    /* Footer */
    .footer {
        padding: 40px 0 15px 0;
    }
    
    .footer-container {
        padding: 0 15px;
    }
    
    .footer-content {
        gap: 30px;
    }

    .restaurant-name {
        font-size: 3.5rem;
        margin-bottom: 12px;
    }

    .footer-section h3 {
        font-size: 1.5rem;
        margin-bottom: 18px;
    }

    .restaurant-description {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }

    .nav-links a {
        font-size: 1.2rem;
    }
    
    .nav-links li {
        margin-bottom: 10px;
    }

    .order-btn {
        font-size: 1.3rem;
        padding: 9px 16px;
    }

    .social-links {
        gap: 12px;
    }
    
    .social-link {
        font-size: 1.2rem;
        padding: 10px;
        min-width: 110px;
    }

    .highlight-tag {
        font-size: 1rem;
        padding: 5px 10px;
    }

    .address-info {
        padding: 12px;
    }

    .address-info h4 {
        font-size: 1.5rem;
    }

    .address-info p {
        font-size: 1rem;
    }

    .footer-bottom {
        padding-top: 25px;
    }
    
    .footer-bottom p,
    .footer-bottom a {
        font-size: 1rem;
    }

    .map-overlay {
        font-size: 1rem;
        padding: 5px 8px;
    }

    .demo-content h1 {
        font-size: 3.5rem;
    }

    .demo-content p {
        font-size: 1.2rem;
    }
    
    .map-container {
        height: 200px;
    }
}

/* Mobile Small - 375px */
@media (max-width: 375px) {
    /* Hero Section */
    .first-page-btbniantic {
        margin-top: -20%;
    }

    .btb-greeting-content p {
        font-size: 1.6rem;
    }

    .btb-greeting-content h1 {
        font-size: 3rem;
    }

    .btb-greeting-content h2 {
        font-size: 1.4rem;
    }

    .btn-read-more, .btn-menu {
        height: 3.6rem;
    }

    .btn-read-more .btn, .btn-menu .btn {
        width: 10.5rem;
        font-size: 1.2rem;
    }

    /* Headings */
    .heading {
        font-size: 3rem;
    }

    /* Story Section */
    .second-page-btbniantic .our-story-content {
        font-size: 1.2rem;
    }

    /* .our-story-content p {
        font-size: 1.1rem;
    } */

    /* Third Section */
    .btb-left-side-content {
        font-size: 1.1rem;
        padding: 2.5rem;
    }

    .btb-right-side-content {
        font-size: 1.1rem;
        padding: 2.5rem;
    }

    /* Gallery */
    .gallery-title {
        font-size: 3rem;
    }

    .gallery-subtitle {
        font-size: 1.1rem;
    }

    .slide-title {
        font-size: 2.2rem;
    }

    .slide-description {
        font-size: 1.1rem;
    }

    /* Footer */
    .footer {
        padding: 35px 0 15px 0;
    }
    
    .footer-container {
        padding: 0 12px;
    }
    
    .footer-content {
        gap: 25px;
    }

    .restaurant-name {
        font-size: 3rem;
        margin-bottom: 10px;
        line-height: 0.9;
    }

    .footer-section h3 {
        font-size: 1.4rem;
        margin-bottom: 15px;
    }

    .restaurant-description {
        font-size: 1.1rem;
        margin-bottom: 18px;
    }

    .nav-links a {
        font-size: 1.1rem;
    }
    
    .nav-links li {
        margin-bottom: 8px;
    }

    .order-btn {
        font-size: 1.2rem;
        padding: 8px 14px;
    }

    .social-links {
        gap: 10px;
    }
    
    .social-link {
        font-size: 1.1rem;
        padding: 8px;
        min-width: 100px;
    }

    .highlight-tag {
        font-size: 0.9rem;
        padding: 4px 8px;
    }

    .address-info {
        padding: 10px;
        margin-top: 12px;
    }

    .address-info h4 {
        font-size: 1.4rem;
        margin-bottom: 8px;
    }

    .address-info p {
        font-size: 0.9rem;
    }

    .footer-bottom {
        padding-top: 20px;
    }
    
    .footer-bottom p,
    .footer-bottom a {
        font-size: 0.9rem;
    }

    .map-overlay {
        font-size: 0.9rem;
        padding: 4px 6px;
    }

    .demo-content {
        padding: 30px 15px;
    }
    
    .demo-content h1 {
        font-size: 3rem;
    }

    .demo-content p {
        font-size: 1.1rem;
    }
    
    .back-to-top {
        bottom: 15px;
        right: 15px;
        width: 45px;
        height: 45px;
    }
    
    .back-to-top::before {
        font-size: 20px;
    }
    
    .map-container {
        height: 180px;
    }
}

/* ======================== Menu Page Design ========================= */
/* Download Menu Design */
        /* .download-menu {
            background: rgba(255, 255, 255, 0.2);
            color: white;
            border: 2px solid white;
            padding: 1rem 2rem;
            border-radius: 30px;
            text-decoration: none;
            display: inline-block;
            margin: 2rem 0;
            transition: all 0.3s ease;
        }

        .download-menu:hover {
            background: white;
            color: #667eea;
        } */

/* =====================Menu Design======================= */
.menu-section {
    /* min-height: 100vh; */
    /* padding: 10rem 9% 2rem; */
    position: relative;
}

.bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100vh;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: -1;
    pointer-events: none;
}

.menu-container {
    /* position: relative; */
    display: flex;
    width: 100%;
    /* height: 60vh; */
    justify-content: center;
    align-items: center;
    /* align-items: center; */
    /* font-size: 5rem; */
    /* background: linear-gradient(45deg, #ffc107, #ff5252); */
}

.menu-content {
    margin-top: 11rem;
    width: 70%;
    height: auto;
    backdrop-filter: blur(4px);
    /* background-color: rgba(255, 255, 255, 0.2); */
    border-radius: 30px;
    text-align: center;
    text-transform: uppercase;
    color: var(--fourth-color);
    padding: 5rem;
    /* margin-top: 50px; */
}

.menu-container h1 {
    font-size: 5rem;
    font-weight: 900;
    text-shadow: 2px 2px 10px rgba(95, 93, 93, 0.8);
    -webkit-text-stroke: #000 1px;
}

.menu-container p {
    font-size: 2rem;
    font-weight: 900;
    -webkit-text-stroke: #000 .5px;
}

/* =============== Menu Item Design =============== */

.menu-section-container {
    /* max-height: 200rem; */
    padding: 10rem 9% 2rem;
    padding-top: 30rem;
}

.item-menu-section {
    min-height: auto;
    /* padding: 10rem 9% 2rem; */
}

.section-title {
background: linear-gradient(45deg, #4287a9, #141d2b);
color: #ffffff;
padding: 1rem;
border-radius: 15px;
font-size: 5rem;
text-align: center;
margin-bottom: 2rem;
/* box-shadow: 0 5px 15px rgba(0,0,0,0.1); */
}

.menu-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
}

.menu-item {
background: rgba(255, 255, 255, 0.95);
border-radius: 20px;
overflow: hidden;
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
margin-bottom: 1rem;
transition: transform 0.3s ease;
}

.menu-item:hover {
transform: translateY(-5px);
}

.item-image {
width: 100%;
height: 200px;
background-size: cover;
background-position: center;
position: relative;
}

.item-price {
position: absolute;
top: 10px;
right: 10px;
background: #e86f0b;
color: white;
padding: 0.5rem 1rem;
border-radius: 20px;
font-weight: bold;
}

.item-content {
padding: 1.5rem;
}

.item-title {
font-size: 1.3rem;
font-weight: bold;
color: #2c3e50;
margin-bottom: 0.5rem;
font-size: 1.8rem;
}

.item-description {
color: #666;
line-height: 1.5;
margin-bottom: 1rem;
font-size: 1.7rem;
}

/* Add to Cart Design */
 .add-to-cart {
            background: linear-gradient(45deg, #4287a9, #141d2b);
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 50px;
            cursor: pointer;
            font-weight: bold;
            width: 100%;
            transition: transform 0.3s ease;
            font-size: 1.7rem;
        }

        .add-to-cart:hover {
            transform: scale(1.05);
        }

        /* Order Popup Styles */
        .order-popup {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            z-index: 2000;
        }

        .popup-content {
            background: white;
            width: 90%;
            max-width: 900px;
            max-height: 90vh;
            margin: 2% auto;
            border-radius: 20px;
            overflow-y: auto;
            position: relative;
            /* font-size: 1.7rem; */
        }

        .close-popup i {
            font-size: 1.8rem;
        }

        .close-popup {
            position: absolute;
            top: 15px;
            right: 30px;
            font-size: 1.7rem;
            border-radius: 5rem;
            background: linear-gradient(45deg, #ff6b6b, #ffd93d);
            padding: 1.2rem;
            cursor: pointer;
            color: #ffffff;
            /* animation: fadeInUp 0.8s ease-out 0.2s both; */
            transition: all .5s ease;
        }

        /* .close-popup:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 60px #000000;
            background: linear-gradient(45deg, #013753, #141d2b);
        } */

        .close-popup:hover {
            /* color: #ffffff; */
            transform: translateX(5px);
            border: 2px solid var(--fourth-color);
            /* transform: translateY(-5px); */
            box-shadow: 0 15px 60px #000000;
        }

        .close-popup::before {
            content: '→';
            /* position: absolute; */
            left: -20px;
            opacity: 0;
            transition: all 0.5s ease;
        }

        .close-popup:hover::before {
            opacity: 1;
            left: -25px;
        }

        .popup-header {
            background: var(--second-color);
            color: white;
            padding: 2rem;
            text-align: center;
        }

        .popup-header h2 {
            font-size: 1.8rem;
        }

        .popup-header p {
            font-size: 1.7rem;
        }

        .popup-body {
            padding: 2rem;
        }

        .order-section {
            margin-bottom: 2rem;
        }

        .order-section h3 {
            color: #000000;
            margin-bottom: 1rem;
            border-bottom: 2px solid #141d2b;
            padding-bottom: 0.5rem;
            font-size: 1.8rem;
        }

        .cartItems, p {
            font-size: 1.7rem;
        }

        .item-info strong {
            font-size: 1.5rem;
        }

        .item-info small {
            font-size: 1.5rem;
        }

        .item-info span {
            font-size: 1.5rem;
        }

        .quantity-controls span {
            font-size: 1.7rem;
        }

        .qty-btn {
            font-size: 1.7rem;
        }

         #cartTotal {
            font-size: 1.8rem;
            font-weight: bold;
            text-align: center;
        }

        .form-row {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1rem;
            margin-bottom: 1rem;
        }

        .form-group {
            display: flex;
            flex-direction: column;
        }

        .form-group label {
            margin-bottom: 0.5rem;
            font-weight: bold;
            color: #2c3e50;
            font-size: 1.7rem;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            padding: 0.8rem;
            border: 2px solid #ddd;
            border-radius: 10px;
            font-size: 1.7rem;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--second-color);
        }

        .cart-section {
            background: #f8f9fa;
            padding: 1.5rem;
            border-radius: 15px;
            margin-bottom: 2rem;
        }

        .cart-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem;
            border-bottom: 1px solid #ddd;
        }

        .cart-item:last-child {
            border-bottom: none;
        }

        .item-info {
            flex: 1;
        }

        .quantity-controls {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .qty-btn {
            background: var(--second-color);
            color: white;
            border: none;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            cursor: pointer;
            font-weight: bold;
        }

        .cart-total {
            background: var(--second-color);
            color: white;
            padding: 1rem;
            border-radius: 10px;
            text-align: center;
            font-size: 1.2rem;
            font-weight: bold;
            margin-top: 1rem;
        }

        .bank-info-box {
            background: var(--second-color);
            color: var(--fourth-color);
            border: 1px solid #ddd;
            padding: 10px 15px;
            border-radius: 8px;
            margin-bottom: 15px;
            font-size: 1.7rem;
            /* text-align: center; */
        }

        .bank-info-box strong {
            font-size: 1.8rem;
        }

        .bank-info-box small {
            font-size: 1.5rem;
            opacity: .5;
        }

        .submit-order {
            background: linear-gradient(45deg, #ff6b6b, #ffd93d);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 25px;
            font-size: 1.8rem;
            font-weight: bold;
            width: 100%;
            cursor: pointer;
            margin-top: 1rem;
        }

        .notice-box {
            background: #fff3cd;
            border: 1px solid #ffeaa7;
            color: #856404;
            padding: 1rem;
            border-radius: 10px;
            margin-bottom: 2rem;
        }




/* Menu Media Querries */

/* Tablet - 768px */
@media (max-width: 768px) {
    .menu-section-container {
    /* max-height: 200rem; */
    padding: 10rem 5% 2rem;
    padding-top: 8rem;
    }

    /* Menu Content */
    .menu-content {
    padding: 4.5rem;
}

.menu-container h1 {
    font-size: 4.5rem;
}

.menu-container p {
    font-size: 1.9rem;
}

    /* Section Title */
    .section-title {
        font-size: 4.5rem;
    }

    /* Item Part */
    .item-description {
        font-size: 1.5rem;
    }
}

/* Mobile Large - 520px */
@media (max-width: 520px) {
     /* Menu Content */
    .menu-content {
    padding: 4rem;
}

.menu-container h1 {
    font-size: 4rem;
}

.menu-container p {
    font-size: 1.7rem;
}

    /* /* Section Title */
    .section-title {
        font-size: 4rem;
        margin-bottom: 3rem;
    }

    /* Menu order design */
    .menu-section-container {
            /* max-height: 200rem; */
            padding: 2rem 2% .5rem;
            padding-top: 15rem;
        }

    .menu-grid {
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 1rem;
        }
    .close-popup i {
            font-size: 1.4rem;
        }

        .close-popup {
            font-size: 1.3rem;
        }

        .popup-header h2 {
            font-size: 1.4rem;
        }

        .popup-header p {
            font-size: 1.3rem;
        }

        .order-section h3 {
            font-size: 1.4rem;
        }

        .cartItems, p {
            font-size: 1.3rem;
        }

        .item-info strong {
            font-size: 1.2rem;
        }

        .item-info small {
            font-size: 1.2rem;
        }

        .item-info span {
            font-size: 1.2rem;
        }

        .quantity-controls span {
            font-size: 1.3rem;
        }

        .qty-btn {
            font-size: 1.3rem;
        }

         #cartTotal {
            font-size: 1.4rem;
        }

        .form-group label {
            font-size: 1.3rem;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            font-size: 1.3rem;
        }

        .cart-total {
            font-size: 1rem;
        }

        .bank-info-box {
            font-size: 1.3rem;
        }

        .bank-info-box strong {
            font-size: 1.4rem;
        }

        .bank-info-box small {
            font-size: 1.2rem;
            opacity: .6;
        }

        .submit-order {
            font-size: 1.4rem;
        }

}

/* Mobile Medium - 480px */
@media (max-width: 480px) {
     /* Menu Content */
    .menu-content {
    padding: 3.5rem;
}

.menu-container h1 {
    font-size: 3.5rem;
}

.menu-container p {
    font-size: 1.5rem;
}

    /* Section Title */
    .section-title {
        font-size: 3.5rem;
    }
}

/* Mobile Small - 375px */
@media (max-width: 375px) {
     /* Menu Content */
    .menu-content {
    padding: 3rem;
}

.menu-container h1 {
    font-size: 3rem;
}

.menu-container p {
    font-size: 1.3rem;
}

    /* Section Title */
    .section-title {
        font-size: 3rem;
    }

}


/* ===============================Event Page Design================================= */

.event-section {
    position: relative;
    /* padding: 10rem 9% 2rem; */
    /* top: 0; 
    left: 0; */
    background-attachment: fixed;
    /* transform: translateX(100%); */
}

.event-container {
    /* min-height: 100vh; */
    background: url("../img/event-img.jpg") no-repeat center center / cover;
    width: 100%;
    height: 79vh;
    margin-top: -4.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    /* position: absolute; */
}

.event-container h1 {
    color: var(--fourth-color);
    -webkit-text-stroke: #000 1px;
    font-size: 5rem;
    font-weight: 900;
    text-shadow: 2px 2px 10px rgba(95, 93, 93, 0.8);
    text-transform: uppercase;
}

.event-container p {
    color: var(--fourth-color);
    -webkit-text-stroke: #000 .5px;
    font-size: 2rem;
    font-weight: 900;
    text-transform: uppercase;
}


.event-content {
    position: absolute;
    width: 60%;
    height: auto;
    padding: 5rem;
    /* background: var(--fourth-color); */
    /* padding: 2rem; */
    /* transform: translateX(100%); */
    backdrop-filter: blur(4px);
    /* background-color: rgba(255, 255, 255, 0.2); */
    border-radius: 30px;
}

/* =============================================== */
.event-section-second {
    width: 100%;
    position: relative;
    /* width: 100%; */
    padding: 10rem 9% 2rem;
    gap: 2rem;
    display: flex;
}

.event-display {
    width: 100%;
    height: auto;
    display: grid;
    /* grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); */
    gap: 2rem;
}

.event-display-container {
    position: relative;
    width: 100%;
    margin: 0 2rem 2rem 0;
    background: var(--notice-color);
    /* padding: 1rem; */
    border-radius: 10px;
    /* display: flex; */
    /* flex-direction: column; */
}

.event-image {
    width: 100%;
    height: 500px;
    background-size: cover;
    background-position: center;
    position: relative;
    border-radius: 10px 10px 0 0;
    /* width: 100%;
    height: auto;
    overflow: hidden;
    object-fit: cover; */
    
}

.event-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}


.event-gather-content {
    position: relative;
    display: flex;
    padding: 2rem;
}

.event-date-and-time {
    position: absolute;
    right: 2rem;
    top: 0;
    padding-top: 1.5rem;
    font-size: 1.2rem;
    font-weight: 500;
}

.event-display-content h1 {
    padding-bottom: 1rem;
    padding-top: 2rem;
}

.btn-reserve {
    position: relative;
    display: flex;
    margin: 1rem 1rem 1rem 0;
    height: 5rem;
    transition: .5s ease;
}

.btn-reserve .btn {
    border: 3rem solid var(--main-color);
    color: var(--main-color);
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 55); */
}

.btn-reserve .btn {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 15rem;
    height: 100%;
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    z-index: 1;
    overflow: hidden;
    transition: 1500ms;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid #141d2b;
    cursor: pointer;
    transition: all .5s ease;
}

.btn-reserve .btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
    background: linear-gradient(45deg, #ffc107, #ff5252);
    color: var(--fourth-color);
    border: 2px solid #fff;
}

.event-facbook-container {
    width: 40%;
    height: 1080px;
    height: auto;
    border: none;
    display: flex;
    overflow: hidden;
}

.event-facbook-container iframe {
    width: 100%;
    height: 2000px;
}

/* Event Media Querries */

/* Tablet Grid Layout */
@media (max-width: 1200px) {
    /* Event Second Section */
    /* .event-display-container {
        flex-direction: column;
    } */

     /* .event-image {
        border-radius: 10px 10px 0 0;
        width: 100%;
    } */

    .event-date-and-time {
        font-size: 1.3rem;
    }
}

/* Tablet Grid Layout - 1024px */
@media (max-width: 1024px) {
    
}

/* Tablet - 768px */
@media (max-width: 768px) {
    /* Event Head Part */
    .event-container {
        height: 100vh;
    }

    .event-container h1 {
        font-size: 4.5rem;
    }

    .event-container p {
        font-size: 1.9rem;
    }

    .event-content {
        width: 90%;
    }

    /* Event Second Section */
    /* .event-display-container {
        width: 100%;
    } */

    .btn-reserve {
        height: 4.7rem;
    }

    .btn-reserve .btn {
        font-size: 1.6rem;
    }

    .event-section-second {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    /* .event-display-container {
        margin: 0 1rem 1rem 0;
    } */

    /* .event-image {
    width: 350px;
    height: auto;
    overflow: hidden;
    padding: 2rem;
    border-radius: 10px 0 0 10px;
    padding-right: 2rem;
    } */

    /* .event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    } */


    /* .event-gather-content {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 3rem;
    } */

    /* .event-date-and-time {
        font-size: 1.5rem;
    } */

    /* .event-display-content h1 {
        padding-bottom: 1rem;
    } */
}

/* Mobile Large - 520px */
@media (max-width: 520px) {
 /* Event Head Part */
    .event-container h1 {
        font-size: 4rem;
    }

    .event-container p {
        font-size: 1.7rem;
    }

    /* Event Second Section */
    .btn-reserve {
        height: 4rem;
    }

    .btn-reserve .btn {
        width: 13rem;
        font-size: 1.4rem;
    }

    .event-facbook-container {
        width: 100%;
        justify-content: center;
        align-items: center;
        padding: 2.5rem;
    }

}

/* Mobile Medium - 480px */
@media (max-width: 480px) {
    .event-container h1 {
        font-size: 3.5rem;
    }

    .event-container p {
        font-size: 1.5rem;
    }

/* Event Second Section */
    .btn-reserve {
        height: 3.8rem;
    }

    .btn-reserve .btn {
        width: 12rem;
        font-size: 1.3rem;
    }
    
}

/* Mobile Small - 375px */
@media (max-width: 375px) {
    .event-container h1 {
        font-size: 3rem;
    }

    .event-container p {
        font-size: 1.3rem;
    }

/* Event Second Section */
    .btn-reserve {
        height: 3.6rem;
    }

    .btn-reserve .btn {
        width: 10.5rem;
        font-size: 1.2rem;
    }

}