/*font export*/
@import url('https://fonts.googleapis.com/css2?family=Italiana&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Domine:wght@400..700&family=Italiana&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Domine:wght@400..700&family=Italiana&family=Quicksand:wght@300..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Domine:wght@400..700&family=Italiana&family=Quicksand:wght@300..700&display=swap');


body {
    margin: 0;
    font-family: Arial, sans-serif;
    overflow-x: hidden; /* This will hide horizontal scroll */
    width: 100%;
}

::-webkit-scrollbar {
    display: none;
}
  
nav {
    display: flex;
    justify-content: flex-end; /* Centers the ul horizontally */
    flex: 1; /* Takes up available space */
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    align-items: center; /* Centers items vertically */
    justify-content: center; /* Centers items horizontally */
}

/* Adjust header to give proper space */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 50px;
    background-color: white;
    font-family: 'Quicksand', sans-serif;
    letter-spacing: 1px;
    font-weight: 500;
    font-size: 16px;
    
    /* Fixed header properties */
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 3px 60px rgba(0, 0, 0, 0.116);

    height: 75px;
}


/* Target specifically the navigation text links */
nav ul li a {
    font-size: 16px;
}

nav ul li a {
    position: relative;
}

/* First, reset the animation for all nav links */
nav ul li a::after {
    content: none; /* Remove the underline effect by default */
  }
  
  nav ul li a:hover {
    color: inherit; /* Reset hover color */
  }
  
  /* Then apply animation only to main navigation items */
  nav > ul > li > a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: #e93d11;
    transition: width 0.3s ease;
  }
  
  nav > ul > li > a:hover::after {
    width: 100%;
  }
  
  nav > ul > li > a:hover {
    color: #e93d11;
  }

nav a {
    text-decoration: none;
    color: black;
}

.brand {
    margin: 0;
    position: absolute;
    left: 100px;
  
    font-family: 'Italiana', serif;
    color: #292929;
    font-size: 25px;
    letter-spacing: 2px;

    cursor: pointer;
  }

/* Adjust logo positioning if needed */
.logo {
    margin-left: -30px; /* Increase this value to move more to the left */
    display: flex;
    cursor: pointer;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 5px;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdown-content a:hover {
    background-color: #f3f3f3;
    border-radius: 5px;
    color: #ff3300;
}

/* This will display the dropdown content when hovering over the dropdown container */

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


.cart-icon {
    display: flex;
    align-items: center;
    justify-content: center; /* Center horizontally */
    border-radius: 50%;
    color: #2b2b2b;
    font-size: 29px;
    cursor: pointer;
    padding: 5px;
    transition: all 0.3s ease; /* Smooth transition for all properties */
    width: 40px;
    height: 40px;
    transform: translateY(-3px); /* Added to move up by 3px */
}

.cart-icon:hover {
    border-radius: 50%;
    background-color: #f5f5f5;
    transform: translateY(-2px) scale(1.1); /* Combined transformations */
}

/* Cart count indicator */
.cart-icon {
    position: relative;
}

.cart-count {
    position: absolute;
    bottom: -1px;
    right: 1px;
    background-color: #1b1b1b;

    font-family: 'Quicksand';
    color: white;
    font-size: 12px;
    font-weight: bold;
    width: 21px;
    height: 21px;
    border-radius: 50%;
    
    display: flex;
    justify-content: center;
    align-items: center;

    display: none; /* Hidden by default, will be shown when items are added */
    line-height: 1; /* Ensures text is vertically centered */
}

nav a {
    text-decoration: none;
    color: black;
}

/* Carousel Section */
.carousel {
    position: relative;
    height: 790px;
    background-image: url('images/land.jpg');
    background-size: cover;
    background-position: center;
    background-color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(255, 253, 253);
}

.carousel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 500px;
    background: linear-gradient(to bottom, rgb(0, 0, 0), transparent);
    pointer-events: none;
    z-index: 1; /* overlay is below the text */
}

.carousel-content {
    text-align: center;
    margin-bottom: 150px;
    position: relative;
    z-index: 2; /* stays above the gradient */
}

.carousel-content h1 {
    font-family: 'Quicksand', sans-serif;
    font-size: 24px;
    margin-bottom: 8px;
    letter-spacing: 3px;
}

.carousel-content h2 {
    font-family: Italiana;
    font-size: 90px;
    font-weight: bold;
    letter-spacing: 8px;
    margin-top: 0;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.089);
}


/* Navigation Buttons */
button.prev, button.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0);
    border: none;
    color: white;
    padding: 10px 15px;
    font-size: 30px;
    cursor: pointer;
}

button.prev {
    left: 20px;
}

button.next {
    right: 20px;
}

button.prev:hover, button.next:hover {
    background: rgba(255, 255, 255, 0.6);
}

/* About Section */
.container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px;
    min-height: 100vh;
  }
  /* Image container to hold the overlapping rectangles */
  .ractangles {
    position: relative;
    margin-top: -4%; /* allows absolute positioning of the rectangles */
    }

  /* lower */
  .image-02 {
    display: flex;
    position: relative;
    left: -5%;
    width: 500px;

  }

  /* upper */
  .image-03 {
    display: flex;
    position: absolute;
    top: 10%;
    left: 60%;
    width: 500px;
  }

  /* Text container on the right */
  .text-container {
    position: absolute; /* allow it to fill remaining space if needed */
    right: 0;
    max-width: 600px; /* adjust as desired */
  }
  /* “ABOUT US” smaller heading */
  .text-container h3 {
    font-family: 'Quicksand', sans-serif;
    letter-spacing: 1px;
    font-weight: 400;
    font-size: 20px;
    color: #2b2b2b;

    margin-bottom: 0;
}

.text-container h2 {
    font-family: 'Bebas Neue';
    font-size: 63px;
    margin-top: 0; /* Add this to remove default top margin */
    margin-bottom: 20px;
    letter-spacing: 3px;
}
  /* Paragraph placeholder */
  .text-container p {
    font-family: "Quicksand", sans-serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 25px;
    color: rgb(49, 49, 49);

    line-height: 1.6;
    margin-bottom: 20px;
    width: 85%; /* This will make the paragraph slightly narrower than its container */
}

  /* “READ MORE” button */
  .read-more {
    width: max-content;
    height: 50px;
    background-color: #ffffff;
    color: #000000;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2.6px;
    padding: 0 33px 0 35px;
    border: 2px solid #000000;
    display: flex;
    align-items: center;
    justify-content: center;
}
.read-more:hover {
    background-color: #000000;
    color: #ffffff;
    border: 1px solid #000000;

}

/*food section*/
.food-section {
    display: flex;
    justify-content: space-between;
    margin-top: 100px;
    padding: 100px;
}

.text-content {
    position: relative;
    background: #111;
    color: rgb(246, 246, 246);
    padding: 80px 60px; /* Adjusted padding for better spacing */
    width: 450px;
    height: 563px;
    display: flex; /* Added flex container */
    flex-direction: column; /* Stack children vertically */
    justify-content: center; /* Center content vertically */
}

.text-content h3 {
    font-family: "Bebas Neue";
    font-size: 31px;
    letter-spacing: 2px;
    font-weight: 400;
    color: #ffffff;
    margin-top: 0px;
    margin-bottom: 20px; /* Add spacing after heading */
}

.text-content p {
    font-family: "Quicksand", sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: rgb(228, 228, 228);
    line-height: 1.6; /* Improve readability */
    margin-bottom: 30px; /* Add spacing after paragraph */
}

.feature {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding-left: 0; /* Changed from 15px to 0 */
}

.feature .icon {
    width: 40px;
    height: 40px;
    margin-right: 50px; /* Reduced margin for better alignment */
}

.image-content {
    position: relative;
    width: 50%;
}
.main-image {
    position: relative;
    right: 1%;
    height: 722px;
}
.overlay-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    transform: translate(20%, -20%);

}


/* Menu section styles */
.menu-section {
    background-color: #111;
    color: white;
    padding: 80px 50px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    position: relative;
}

.menu-left {
    padding-right: 20px;
}

.menu-header {
    font-family: 'Quicksand', sans-serif;
    letter-spacing: 1px;
    font-weight: 400;
    font-size: 20px;
    color: #cfcfcf;

    margin-bottom: 0;
}

.menu-title {
    font-family: 'Bebas Neue';
    font-size: 63px;
    margin-top: 0; /* Add this to remove default top margin */
    margin-bottom: 20px;
    letter-spacing: 3px;
}

.menu-description {
    font-family: "Quicksand";
    font-weight: 400;
    font-size: 17px;
    line-height: 25px;
    color: rgb(221, 221, 221);
    margin: 20px 0 40px;
}

.view-menu-btn {
    border: 1px solid white;
    background: transparent;
    color: white;
    padding: 15px 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-menu-btn:hover {
    background: white;
    color: black;
}

.menu-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.sushi-plate {
    max-width: 100%;
    height: auto;
    position: relative;
    top: 45%;
}

.menu-right {
    padding-top: 20px;
    padding-left: 20px;
}

.menu-tabs {
    font-family: 'Bebas Neue';
    margin-top: 0; /* remove default top margin */
    margin-bottom: 2px;
    letter-spacing: 1px;

    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    border-bottom: 1px solid #383838;
    padding-bottom: 20px;
}

.menu-tab {

    color: rgb(255, 255, 255);
    text-transform: uppercase;
    cursor: pointer;
    font-size: 20px;
    letter-spacing: 1px;
    padding-bottom: 10px;
}

.menu-tab.active {
    border-bottom: 2px solid white;
}

.menu-items {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.menu-item {
    border-bottom: 1px solid #333;
    padding-bottom: 8px;
}

.menu-item-header {
    font-family: 'Bebas Neue';
    font-size: 20px;
    margin-top: 0; /* remove default top margin */
    
    letter-spacing: 1.5px;

    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.menu-item-title {
    font-size: 18px;
    font-weight: 500;
}

.menu-item-price {
    font-size: 18px;
}

.menu-item-description {
    font-family: "Quicksand", sans-serif;
    color: #dbdbdb;
    font-size: 14px;
    line-height: 1.4;
}

.menu-items {
    display: flex;
    flex-direction: column;
    gap: 30px;
    transition: opacity 0.3s ease;
}

.fade-out {
    opacity: 0;
}

.fade-in {
    opacity: 1;
}

/* Experience section styles */

.xp {
    align-content: center;
    text-align: center;
    padding-top: 130px;    /* Reduced top padding */
    padding-bottom: 140px; /* Reduced bottom padding */
    padding-left: 180px;  /* Kept original side padding if desired */
    padding-right: 180px; /* Kept original side padding if desired */
    background: #f7f7f7;
}

.xp h2 {
    font-family: 'Bebas Neue';
    font-size: 110px;
    font-weight: bold;
    letter-spacing: 7px;

    position: relative;
    left: 20px;

    margin-bottom: 15px;
    background: linear-gradient(to bottom, #6b6666, #000); /* Gradient effect */
    -webkit-background-clip: text; /* Clip background to text */
    -webkit-text-fill-color: transparent; /* Make text transparent for gradient */
}

.xp p {
    font-family: 'Bebas Neue';
    font-size: 63px;
    margin-top: 0; /* Add this to remove default top margin */
    letter-spacing: 3px;
    
    color: #333;
}

.map-section {
    background-color: RGB(17, 17, 17); /* Adjust this value to your desired color */
    display: flex;           /* Enables Flexbox layout */
    align-items: center;     /* Centers content vertically */
    justify-content: center; /* Centers content horizontally (optional) */
    min-height: 100vh;       /* Makes the section take full viewport height */
}


.map-sec{
    display: flex;
    justify-content: space-between;
}

.map-text {
    color: #fff;
    padding: 60px;
    font-family: Arial, sans-serif;
    text-align: left;
}
.map-text h3 {
    font-family: 'Quicksand', sans-serif;
    letter-spacing: 1px;
    font-weight: 400;
    font-size: 20px;
    color: #b6b6b6;

    margin-bottom: 10px;
    position: relative;
}

.map-text h2 {
    font-family: 'Bebas Neue';
    font-size: 63px;
    margin-top: 0; /* Add this to remove default top margin */
    margin-bottom: 20px;
    letter-spacing: 3px;


    color: #ffffff;
    line-height: 55px;
}
.map-text p {
    margin-top: 17px;
    margin-bottom: 42px;
    color: #FFF;
    font-family: "Quicksand";
    font-weight: 400;
    font-size: 16px;
    line-height: 25px;
    color: rgb(209, 209, 209);

    line-height: 1.6;
    margin-bottom: 20px;
    width: 85%; /* make the paragraph slightly narrower than its container */
}
.map-text ul {

    list-style-type: none;
    padding: 0;
    margin: 20px 0;
    font-family: 'Quicksand';
    font-size: 18px;
    color: #FFF;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}
.map-text li {
    margin: 5px 0;
}

.map-text li a {
    color: rgb(209, 209, 209);
    font-size: 17px;
    text-transform: lowercase;
    letter-spacing: 1px;
}

.map-text .contact {
    line-height: 60px;

    font-family: 'Bebas Neue';
    font-size: 67px;
    margin-top: 42px;
    margin-bottom: 40px;
    letter-spacing: 3px;
    color: #ff4e4e;
}

.map-text .button-link {
    width: max-content;
    height: 50px;
    background-color: RGB(17, 17, 17);
    color: #ffffff;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2.6px;
    padding: 0 33px 0 35px;
    border: 1px solid #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.map-text .button-link:hover {
    background-color: #ff5c33;
    color: #ffffff;
    border: 1px solid #ff5c33;
}

#rightplate {
    position: relative;
    margin-right: -40px;
    margin-top: 30%;
}
#map{
    margin-top: 35%;
    margin-right: 52px;
}



/* Footer styles */
.footer-container {
    background-color: #111;
    color: #fff;
    padding: 40px 0;
    width: 100%;
}



.footer-top {
    /*
    display: flex;
    justify-content: space-between;
    */
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    font-family: 'Quicksand', sans-serif;
}

.footer-logo {
    text-align: center;
    margin: 40px 0;
}

.footer-logo img {
    max-width: 120px;
    height: auto;
    cursor: pointer;
}

.footer-logo h2 {
    margin-top: 20px;
    font-family: 'Italiana', serif;
    font-size: 24px;
    letter-spacing: 2px;
    cursor: pointer;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 30px 0;
}

.footer-nav a {
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

.footer-info {
    text-align: center;
    margin: 30px 0;
    font-size: 14px;
    letter-spacing: 1px;
}

.footer-bottom {
    font-family: 'Quicksand', sans-serif;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

a {
    color: white;
    font-family: 'Quicksand', sans-serif;
    font-size: 14px;
  }



.footer-copyright {
    font-size: 14px;
}

.footer-social {
    display: flex;
    gap: 20px;
}

.side-image {
    width: 300px;
    height: 400px;
    object-fit: cover;
}

.footer-social i {
    font-size: 20px;
    color: white;
}

#back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
    border: none;
    outline: none;
    background-color: #ff373d;
    color: rgb(255, 254, 254);
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 18px;
    box-shadow: 0 5px 9px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
    align-items: center;
    justify-content: center;
    display: none;
}

#back-to-top:hover {
    background-color: #ff481a;
    color: rgb(255, 255, 255);
    transform: scale(1.1);
}

/* Cart Sidebar */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -100%; /* Moves it fully off-screen */
    width: 350px;
    height: 100vh;
    background: white;
    box-shadow: -4px 0 10px rgba(0, 0, 0, 0.2);
    transition: right 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    padding: 20px;
    z-index: 1001;
}


/* Overlay when cart is open */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 1000;
}

/* Cart Header */
.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;

    font-family: 'Bebas Neue';
    font-size: 18px;

    letter-spacing: 2.4px;
}

.close-cart {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

/* Cart Items - Updated Layout */
.cart-items {
    flex: 1;
    overflow-y: auto;
    margin-top: 10px;
}

.cart-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}

.cart-item-left {
    display: flex;
    align-items: center;
}

.cart-item img {
    width: 50px;
    height: 50px;
    border-radius: 5px;
    object-fit: cover;
}

.cart-item-info {
    margin-left: 10px;
    display: flex;
    flex-direction: column;
}

.cart-item h4 {
    margin: 0;
    font-size: 14px;
    margin-bottom: 4px;

    font-family: 'Bebas Neue';
    font-size: 20px;
    font-weight:590;
    letter-spacing: 2.1px;
}

.cart-item .cart-price {
    font-size: 14px;
    color: #555;
    margin: 0;
}

/* Quantity Controls */
.cart-item-controls {
    display: flex;
    align-items: center;
}

.cart-item-controls button {
    border: none;

    background: #393939;
    color: white;

    padding: 3px 7px;
    cursor: pointer;

    font-size: 16px;
    border-radius: 5px;

    width: 24px;

}

.cart-item-controls {
    margin: 0 10px;
    font-size: 16px;
}

.cart-quantity {
    margin: 0 10px;
    font-size: 18px;
}

/* Cart Footer */
.cart-footer {
    padding-top: 10px;
    border-top: 2px solid #ddd;
}

.subtotal {
    display: flex;
    justify-content: space-between;

    font-family: 'Quicksand';
    font-weight: bold;
    font-size: 17px;
    margin-bottom: 10px;
}

.cart-buttons {
    display: flex;
    justify-content: space-between;
}

.checkout-button {
    width: 100%;
    height: 50px;

    background-color: #000000;
    color: #ffffff;

    font-family: 'Bebas Neue';
    font-size: 20px;
    font-weight:590;
    letter-spacing: 2.4px;
    
    border: 1px solid #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 40px;
}

.checkout-button:hover {
    background-color: #e93d11;
    color: #ffffff;
    border: 1px solid #ff6944;
    cursor: pointer;
}

/* ===== Hamburger toggle (hidden on desktop) ===== */
.nav-toggle-checkbox { display: none; }
.nav-toggle-label {
    display: none;
    width: 32px;
    height: 26px;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 1100;
}
.nav-toggle-label span {
    display: block;
    height: 3px;
    width: 100%;
    background: #2b2b2b;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ===================================================== */
/* ============= RESPONSIVE STYLES ===================== */
/* ===================================================== */

/* Global overflow + sizing guard */
*, *::before, *::after { box-sizing: border-box; }
html, body { overflow-x: hidden; max-width: 100vw; }
body > section, body > main, body > footer, body > div { max-width: 100vw; }
section { width: 100%; box-sizing: border-box; }

/* Tablet and below */
@media (max-width: 1024px) {
    .menu-tabs { letter-spacing: 1px !important; flex-wrap: wrap; gap: 10px; }
    header { padding: 8px 24px; }
    .brand { left: 80px; font-size: 22px; }
    nav ul { gap: 14px; }
    nav ul li a { font-size: 14px; }

    .carousel { height: 600px; }
    .carousel-content h2 { font-size: 64px; letter-spacing: 5px; }

    .container { flex-direction: column; padding: 60px 24px; min-height: auto; gap: 40px; }
    .ractangles { margin-top: 0; width: 100%; display: flex; justify-content: center; }
    .image-02 { width: 80%; left: 0; max-width: 420px; }
    .image-03 { position: relative; top: 0; left: 0; width: 60%; margin-top: -15%; align-self: flex-end; max-width: 320px; }
    .text-container { position: relative; right: auto; max-width: 100%; }
    .text-container p { width: 100%; }

    .food-section { flex-direction: column; padding: 60px 24px; gap: 30px; margin-top: 40px; }
    .text-content { width: auto; height: auto; padding: 50px 30px; }
    .image-content { width: 100%; }
    .main-image { width: 100%; height: auto; right: 0; }
    .overlay-image { position: relative; transform: none; width: 50%; margin-top: -10%; margin-left: auto; display: block; }

    .menu-section {
        grid-template-columns: 1fr;
        padding: 60px 24px;
        gap: 30px;
        width: 100%;
        box-sizing: border-box;
        text-align: center;
    }
    .menu-section > * { min-width: 0; width: 100%; }
    .menu-left, .menu-right { padding: 0; }
    .menu-center { display: none; }
    .menu-title { font-size: 48px; }
    .menu-description { margin-left: auto; margin-right: auto; max-width: 640px; }
    .view-menu-btn { margin: 0 auto; }
    .menu-right { text-align: left; }
    .menu-tabs { justify-content: center; gap: 24px; }

    .xp { padding: 80px 24px; }
    .xp h2 { font-size: 80px; left: 0; }
    .xp p { font-size: 42px; }

    .map-sec { flex-direction: column; align-items: center; }
    .map-section { padding: 60px 0; }
    .map-text { padding: 40px 24px; }
    .map-text h2 { font-size: 48px; line-height: 1.1; }
    .map-text .contact { font-size: 48px; line-height: 1.2; }
    .map-text p, .map-text ul { width: 100%; }
    .chef img, #map { width: 100%; max-width: 480px; height: auto; margin: 0 auto; display: block; }
    #map { margin-top: 20px; }
    .chef { width: 100%; text-align: center; }

    .footer-nav { flex-wrap: wrap; gap: 18px; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}

/* Mobile */
@media (max-width: 768px) {
    /* Header: show hamburger, hide brand text */
    header { padding: 8px 16px; height: 65px; }
    .logo img { width: 48px !important; }
    .logo { margin-left: 0; }
    .brand { font-size: 18px; left: 70px; letter-spacing: 1px; }

    .nav-toggle-label {
        display: flex;
        position: absolute;
        top: 20px;
        right: 16px;
    }

    nav {
        position: fixed;
        top: 65px;
        left: 0;
        right: 0;
        background: #fff;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease;
        box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    }
    .nav-toggle-checkbox:checked ~ nav { max-height: 600px; }
    .nav-toggle-checkbox:checked ~ .nav-toggle-label span:nth-child(1) { transform: translateY(10px) rotate(45deg); }
    .nav-toggle-checkbox:checked ~ .nav-toggle-label span:nth-child(2) { opacity: 0; }
    .nav-toggle-checkbox:checked ~ .nav-toggle-label span:nth-child(3) { transform: translateY(-10px) rotate(-45deg); }

    nav ul {
        flex-direction: column;
        gap: 0;
        padding: 10px 0;
        margin: 0;
        width: 100%;
        align-items: stretch;
    }
    nav ul li { padding: 0; }
    nav ul li a { display: block; padding: 14px 20px; font-size: 15px; }
    nav ul li.cart-icon-container { padding: 12px 20px; display: flex; }
    .dropdown-content { position: static; box-shadow: none; background: #f7f7f7; min-width: auto; }
    .dropdown-content a { padding: 12px 36px; }
    .dropdown:hover .dropdown-content { display: block; }

    /* Carousel */
    .carousel { height: 460px; }
    .carousel-content { margin-bottom: 60px; }
    .carousel-content h1 { font-size: 18px; letter-spacing: 2px; }
    .carousel-content h2 { font-size: 44px; letter-spacing: 3px; }

    /* About */
    .container { padding: 50px 16px; }
    .text-container h2 { font-size: 42px; letter-spacing: 2px; }
    .text-container h3 { font-size: 16px; }
    .text-container p { font-size: 15px; }
    .image-02, .image-03 { width: 90%; }
    .image-03 { width: 60%; }

    /* Food */
    .food-section { padding: 40px 16px; }
    .text-content { padding: 40px 24px; }
    .text-content h3 { font-size: 24px; }
    .feature { flex-direction: row; align-items: flex-start; }
    .feature .icon { width: 32px; height: 32px; margin-right: 20px; }
    .text-content p { font-size: 14px; }

    /* Menu */
    .menu-section { padding: 50px 16px; box-sizing: border-box; }
    .menu-title { font-size: 36px; letter-spacing: 2px; }
    .menu-header, .menu-description { font-size: 15px; }
    .menu-tabs { flex-wrap: wrap; gap: 14px; justify-content: flex-start; letter-spacing: 1px !important; }
    .menu-tab { font-size: 15px; }

    /* XP */
    .xp { padding: 60px 16px; }
    .xp h2 { font-size: 60px; letter-spacing: 4px; }
    .xp p { font-size: 28px; letter-spacing: 2px; }

    /* Map */
    .map-text { padding: 30px 16px; }
    .map-text h2 { font-size: 36px; letter-spacing: 2px; }
    .map-text .contact { font-size: 36px; letter-spacing: 1px; line-height: 1.2; }
    .map-text h3 { font-size: 16px; }
    .map-text ul { font-size: 15px; }

    /* Cart sidebar */
    .cart-sidebar { width: 100%; max-width: 100vw; }

    /* Footer */
    .footer-logo img { max-width: 80px; }
    .footer-logo h2 { font-size: 20px; }
    .footer-nav { gap: 14px; font-size: 12px; }
    .footer-nav a { font-size: 12px; }

    /* Back to top */
    #back-to-top { width: 42px; height: 42px; bottom: 20px; right: 20px; }
}

/* Small mobile */
@media (max-width: 420px) {
    .brand { font-size: 16px; left: 64px; }
    .logo img { width: 42px !important; }
    .carousel-content h2 { font-size: 34px; }
    .text-container h2, .menu-title, .map-text h2 { font-size: 32px; }
    .xp h2 { font-size: 48px; }
    .xp p { font-size: 22px; }
    .map-text .contact { font-size: 30px; }
}
