@import url('https://fonts.googleapis.com/css2?family=Acme&family=Bebas+Neue&family=BenchNine:wght@400;700&family=Concert+One&family=Passion+One:wght@400;700;900&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-image: url(images/HOMEPAGE.png);
    background-color: #f7a63b; /* Good fallback while testing */
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
    margin: 0;
    font-family: "Passion One", sans-serif;
}

/* =========================================
   MAIN NAVBAR STYLING 
========================================= */

.navbar {
    background-color: #EF5225;
    width: 98%; 
    max-width: none; 
    height: 60px; /* Slightly taller to comfortably fit the new circle icons */
    margin: 20px auto; 
    border-radius: 50px;
    display: flex;
    align-items: center;
    position: relative; 
    z-index: 10;
}

/* 2. The Left "Bulge" behind the logo */
.navbar::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0; /* Anchors the bulge strictly to the left edge */
    width: 260px; /* Width of the bulge */
    height: 120px; 
    background-color: #EF5225;
    border-radius: 50px 0 40px 40px; /* Matches top pill curve, rounds the bottom */
    z-index: -1; 
}

/* 3. General Link Setup & Flexbox Magic */
.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    width: 100%;
    margin: 0;
    padding: 0 20px;
    gap: 35px; /* Spacing between the center links */
}

.nav-links li {
    display: flex;
    justify-content: center; 
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 1.4rem; 
    padding: 8px 15px;
    border-radius: 60px;
    transition: 0.3s;
    font-weight: normal;
    letter-spacing: 1px;
}

.nav-links a:hover {
    color: #EF5225;
    background-color: white;
}

/* =========================================
   LEFT SIDE: LOGO 
========================================= */

.logo-item {
    width: 180px; /* Creates invisible space pushing the other links right */
    
    /* THE MAGIC: Pushes everything after it perfectly to the center */
    margin-right: auto; 
    
    display: flex;
    align-items: center;
}

.logo-item img {
    position: absolute;
    left: 38px; /* Locks the logo into the left bulge */
    top: -30px; /* Pops it out of the top */
    height: 180px; 
    z-index: 20;
}

/* =========================================
   RIGHT SIDE: ICONS & LOGIN 
========================================= */

.right-menu {
    display: flex;
    align-items: center;
    gap: 15px; 
    
    /* THE MAGIC: Pushes this whole block perfectly to the far right */
    margin-left: auto; 
}

/* Removes the pill hover background strictly from the circle icons */
.right-menu .icon-link {
    padding: 0;
    background-color: transparent !important; 
}

/* The White Circle Shape for the Icons */
.nav-icon {
    height: 40px;
    width: 40px;
    object-fit: contain;
    transition: transform 0.2s;
}

.nav-icon:hover {
    transform: scale(1.1); 
}

/* Keep the log-in text readable and capitalized correctly */
.login-link {
    font-size: 1.4rem !important; 
    font-weight: bold !important;
}

/* =========================================
   DROPDOWN MENU 
========================================= */

.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: -8px; 
    background-color: white;
    border-radius: 20px;
    flex-direction: column;
    align-items: center; 
    padding: 8px 20px 20px 20px; 
    z-index: 40; 
    white-space: nowrap; 
    box-shadow: 0px 10px 15px rgba(0,0,0,0.1); 
}

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

.dropdown-content a {
    color: #EF5225 !important; 
    padding: 8px 0 !important; 
    background-color: transparent !important; 
}

.dropdown-content a:nth-child(2),
.dropdown-content a:nth-child(3) {
    font-size: 1.4rem; 
}

.dropdown-content a:hover {
    color: #c43e18 !important; 
}

/* Make "MENU" inside the dropdown unclickable */
.dropdown-content a:first-child {
    cursor: default !important;      
    pointer-events: none !important; 
}

.dropdown-content a:first-child:hover {
    color: #EF5225 !important;       
    background-color: transparent !important;
}

/* --- HERO SECTION --- */
.hero-section {
    display: flex;
    justify-content: space-between; 
    position: relative;
    align-items: center; 
    width: 100%; 
    max-width: none; /* REMOVED the limit so it spans the whole screen */
    margin: 40px 0; /* Removed 'auto' to stop it from centering */
    padding-left: 60px; /* Keeps your text on the left from hitting the edge */
    padding-right: 5; /* Lets the image on the right touch the edge! */
}

/* --- LEFT SIDE CONTAINER --- */
.hero-tagline {
    flex: 1; /* Tells this box to take up the left half of the screen */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start; /* Keeps the image aligned to the left side */
}

/* --- THE TAGLINE IMAGE --- */
.tagline-img {
    width: 600px; /* Adjust size here */
    max-width: 100%;
    height: auto;
        
    /* HERE ARE YOUR MOVEMENT CONTROLS! */
    margin-top: -50px; /* Pulls it up */
    margin-left: 5px; /* Pushes it to the right */
}

.hero-image {
    flex: 1; 
    display: flex;
    justify-content: flex-end; /* Pushes the image flush to the right */
}

.hero-image img {
    height: 1800px; 
    max-height: 85vh; 
    object-fit: contain;
    max-width: 100%;
    margin-right: 0px; /* Tweak this negative number to drag it perfectly to the edge! */
}
/* --- RED PILL BUTTON --- */
.flavor-btn {
    background-color: #FF0202;
    border: 3px solid #FF0202;
    color: white;
    font-family: "Concert One", sans-serif;
    font-size: 2.5rem;
    text-decoration: none;
    padding: 10px 35px;
    border-radius: 50px; 
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2); 
    display: inline-block; /* Allows margins and padding to work correctly */
    margin-top: 20px; /* Space between the tagline image and the button */
    margin-left: 60px;
}

.flavor-btn:hover {
    background-color: transparent; /* Or transparent if you prefer */
    color: #FF0202; /* Turns the text red to match the border */
    border: 3px solid #FF0202; /* Added 'px' and 'solid' */
}

/* --- BEST SELLERS SECTION --- */
.best-sellers {
    position: relative;
    background-color: transparent; /* REMOVED THE WHITE RECTANGLE */
    padding: 100px 0; /* Keeps space for the torn edges */
    margin-top: 0; 
}

.torn-paper {
    background-image: url('images/paper.png');
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    justify-content: flex-end;
    position: absolute; 
    left: 0;
    top: 0px;
    height: 1000px; /* Adjust this to match your image's actual height */
    width: 100%;   /* Ensures it spans the whole section */
    background-size: 100% 100%; /* Stretches it to fit the box exactly */
}


.section {
    text-align: center;
    padding: 70px 0;
    position: relative;
    z-index: 15; /* Ensures text stays above the torn paper */
}

.section1-title {
    font-family: 'Acme', sans-serif;
    font-size: 4rem;
    color: #000000;
    display: inline-flex;
    align-items: center;
    gap: 20px; 
    text-transform: capitalize;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

/* Creating the red lines on the sides */
.section1-title::before,
.section1-title::after {
    content: "";
    height: 8px;      
    width: 300px;     
    background-color: #ff4d00;
    display: inline-block;
    border-radius: 20px;
    box-shadow: 2px 4px 6px rgba(0, 0, 0, 0.2);
}

/* --- CONTAINER --- */
.cards-container {
    display: flex;
    justify-content: center;
    gap: 100px; /* Space between the rectangles */
    padding: 20px;
}

/* --- THE RECTANGLE BASE --- */
.menu-card {
    width: 300.3px;
    height: 383.13px;
    border-radius: 25px;
    padding: 10px; /* This sets 10px everywhere */
    display: flex;
    flex-direction: column; /* Stacks the title and image vertically */
    align-items: center;
    
    /* THE FIX: Override the top padding to something very small */
    padding-top: 2px; 
    
    text-align: center;
    color: white;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.menu-card:hover {
    transform: translateY(-10px); /* Lifts the card when you hover */
}

/* --- THE FOOD NAMES --- */
.menu-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
    /* THE FIX: This physically pulls the text up toward the card's edge */
    margin-top: 30px;
    
}

/* --- INDIVIDUAL IMAGE SIZES --- */

.yakiniku-img {
    width: 260px; /* Yakiniku is round and wide, so it needs a slightly smaller width */
    height: auto;
    margin-top: 10px;
}

.wings-img {
    width: 340px; /* Wings look best slightly larger */
    height: auto;
}

.torikatsu-img {
    width: 270px; /* Making the sandwich the largest to "pop" */
    height: auto;
    margin-top: -5px; /* Nudge it up slightly if needed */
}

/* --- THE IMAGES --- */
.menu-card img {
    /* This forces the image to be a block that takes up its own line */
    display: block; 
    height: auto;
    /* Ensure the image doesn't get too big for the card */
    align-content: center;
}

/* --- UNIQUE COLORS --- */
.teal { background-color: #08979C; }
.lime { background-color: #9BB605; }
.red { background-color: #FF0202; }

.section2 {
    text-align: center;
    padding: 120px;
    position: relative;
    z-index: 15;
    margin-top: 130px;
}
.section2-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 6rem;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    gap: 20px; 
    text-transform: capitalize;
    text-shadow: 5px 5px 0px rgb(224, 102, 3);
}

/* --- CONTAINER --- */
.choose-container {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 40px 10px;
    gap: 20px;
    padding: 10px;

}

/* --- THE CARD BASE --- */
.choose-card {
    width: 550px;
    height: 320px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
    width: 100%;
}

/* --- THE ICONS --- */
.choose-card .icon img {
    width: 150px; /* Adjust based on your icon size */
    height: auto;
    margin-bottom: 25px;
}

/* --- THE TEXT --- */
.choose-card p {
    font-family: 'BenchNine', sans-serif;
    font-size: 2.3rem;
    color: white;
    line-height: 1.1;
    margin: 0;
    text-transform: uppercase;
}

/* --- BRAND COLORS --- */
.choose-card.orange { background-color: #ff4d00; }
.choose-card.teal   { background-color: #0097a7; }
.choose-card.lime   { background-color: #8bc34a; }
 
.section3 {
    text-align: center;
    padding: 20px 20px;
    background-color: transparent; /* Assuming it's over your striped background */
}

/* BIG BOYZ CUSTOMER'S FEEDBACK! Title */
.section3-title {
    font-family: 'Passion One', sans-serif;
    font-weight: bold;
    font-size: 5rem;
    color: #889E0C ;
    -webkit-text-stroke: 2px #ffffff; /* Green outline */
    margin-bottom: 40px;
}

.testi-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap; /* Allows 3-2 layout */
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.testi-card {
    background: #ffffff;
    width: 340px;
    min-height: 180px;
    border-radius: 30px; /* Highly rounded corners like in image_727f76.png */
    padding: 25px;
    text-align: left; /* Text is left-aligned inside cards */
    border: 4px solid; /* Thickness of the colorful border */
}

/* User Header Styles */
.user-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.user-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
}

/* Body Text Styles */
.feedback-text {
    font-family: 'BenchNine', sans-serif;
    font-size: 1.5rem;
    color: #333;
    line-height: 1.2;
    margin-top: 0px;
    margin-bottom: 0px;
}

/* Shared style for all user icons */
.user-photo {
    width: 50px;
    height: 50px;
    background-size: cover;
    background-position: center;
}

/* Mapping your individual images to the color classes */
.teal .user-photo   { background-image: url('images/icon_blue.png');}
.orange .user-photo { background-image: url('images/icon_orange.png');}
.red .user-photo    { background-image: url('images/icon_red.png'); }
.lime .user-photo   { background-image: url('images/icon_green.png');}
.purple .user-photo { background-image: url('images/icon_purple.png');}

/* Individual Card Border & Text Colors */
.testi-card.teal   { border-color: #0097a7; color: #08979C; }
.testi-card.orange { border-color: #ff4d00; color: #EF5225; }
.testi-card.red    { border-color: #f44336; color: #FF0202; }
.testi-card.lime   { border-color: #8bc34a; color: #889E0C; }
.testi-card.purple { border-color: #9c27b0; color: #9747FF; }

/* --- PROMOS SECTION WRAPPER --- */
.section4 {
    text-align: center;
    padding: 100px 0; /* Matches the spacing of your other sections */
    position: relative;
    z-index: 15;
}

/* --- PROMOS SPECIFIC STYLE --- */
.section4.promos {
    background-color: transparent; 
}

.promo-title-container {
    display: flex;
    align-items: center; 
    justify-content: center;
    gap: 15px;
}

/* The small stacked "BIG BOYZ" */
.brand-stack {
    display: flex;
    flex-direction: column;
    text-align: right;
    font-family: 'Passion One', sans-serif;
    font-size: 7.8rem;
    line-height: 0.70; /* Pulls "BIG" and "BOYZ" closer together */
    color: #000000;
}

/* The massive "PROMOS" */
.main-promo-text {
    font-family: 'Passion One', sans-serif;
    font-size: 17rem;
    margin: 0;
    color: #000000;
    letter-spacing: -3px; /* Creates that chunky, bold look */
    text-transform: uppercase;
}

.box {
    --w: 1200px;
    --h: 373px;
    --r: 20px; /* Your corner radius */

    width: var(--w);
    height: var(--h);
    background: white;
    margin: -30px auto 20px auto;
    position: relative;        /* Required so the image stays attached to this box */
    overflow: visible !important; /* CRITICAL: Allows the bowl to 'pop out' the top */
    z-index: 10;

    /* Using shape() to allow for rounded corners */
    clip-path: shape(
        /* 1. Start at Top-Left (rounded) */
        from 0 var(--r),
        curve to var(--r) 0 with 0 0,

        /* 2. Top-Right (rounded) */
        line to calc(var(--w) - var(--r)) 0,
        curve to var(--w) var(--r) with var(--w) 0,

        /* 3. Bottom-Right: Pulled up to 170px (rounded) */
        line to var(--w) calc(170px - var(--r)),
        curve to calc(var(--w) - var(--r)) 170px with var(--w) 170px,

        /* 4. Bottom-Left: Stays at 373px (rounded) */
        line to var(--r) var(--h),
        curve to 0 calc(var(--h) - var(--r)) with 0 var(--h),
        
        close
    );
}


.box-loyalty {
    --w: 1200px;
    --h: 564px;
    --r: 20px; /* Corner radius */
    
    width: var(--w);
    height: var(--h);
    background: white;
    margin: -160px auto 0 auto;
    position: relative;
    z-index: 5;

    /* Using shape() to draw rounded slanted corners */
    clip-path: shape(
        /* 1. TOP-LEFT: Pulled down to 191.5px */
        from 0 calc(191.5px + var(--r)),
        curve to var(--r) 191.5px with 0 191.5px,

        /* 2. TOP-RIGHT: Remains at top */
        line to calc(var(--w) - var(--r)) 0,
        curve to var(--w) var(--r) with var(--w) 0,

        /* 3. BOTTOM-RIGHT: Remains at bottom */
        line to var(--w) calc(var(--h) - var(--r)),
        curve to calc(var(--w) - var(--r)) var(--h) with var(--w) var(--h),

        /* 4. BOTTOM-LEFT: Pulled up to 372.5px */
        line to var(--r) 372.5px,
        curve to 0 calc(372.5px - var(--r)) with 0 372.5px,
        
        close
    );
}

.box-upside-down {
    --w: 1200px;
    --h: 373px;
    --r: 20px;
    --slant-top-y: 203px; /* Mirrored 170px slant from the top */

    width: var(--w);
    height: var(--h);
    background: white;
    margin: -140px auto 0 auto;
    position: relative;
    z-index: 3;

    clip-path: shape(
        /* 1. TOP-LEFT: Remains at the very top (0px) */
        from 0 var(--r),
        curve to var(--r) 0 with 0 0,

        /* 2. TOP-RIGHT: Pulled DOWN to 203px */
        line to calc(var(--w) - var(--r)) var(--slant-top-y),
        curve to var(--w) calc(var(--slant-top-y) + var(--r)) with var(--w) var(--slant-top-y),

        /* 3. BOTTOM-RIGHT: Remains at the very bottom (373px) */
        line to var(--w) calc(var(--h) - var(--r)),
        curve to calc(var(--w) - var(--r)) var(--h) with var(--w) var(--h),

        /* 4. BOTTOM-LEFT: Remains at the very bottom (373px) */
        line to var(--r) var(--h),
        curve to 0 calc(var(--h) - var(--r)) with 0 var(--h),
        
        close
    );
}


/* FONTS: Passion One (Title) & BenchNine (Body) */
.promo-title {
    font-family: 'Passion One', sans-serif;
    font-size: 7rem;
    color: #EF5225;
    line-height: 0.9;
    margin: 0;
    text-transform: uppercase;
    margin-top: 20px;
    margin-bottom: -20px;
}

.promo-description {
    font-family: 'BenchNine', sans-serif;
    font-size: 1.8rem;
    color: #EF5225;
    margin-top: 10px;
}

.promo-text-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start; /* Aligns all text to the left */
    text-align: left;
    width: 65%; /* Leaves space on the right for images */
    height: 100%; 
    box-sizing: border-box;
    padding-left: 40px;
}

/* Specific alignment for the Loyalty Box */
.loyalty-align {
    align-self: flex-end; /* Moves the container to the right */
    align-items: flex-end; /* Aligns the text lines to the right */
    text-align: right;
    padding-left: 0;
    padding-right: 80px; /* Safe zone from the right rounded edge */
    margin-left: auto; /* Pushes the flex item to the far right */
}

/* BOX 1: Move "RICE ALL U CAN" UP */
.box .promo-text-content {
    justify-content: flex-start; /* Aligns to top instead of center */
    padding-top: 20px;           /* Adjust this to move it higher or lower */
}

/* BOX 3: Move "WEDNESDAY PROMO" DOWN */
.box-upside-down .promo-text-content {
    justify-content: flex-end;   /* Aligns toward the bottom */
    padding-bottom: 50px;        /* Pushes it up from the bottom edge */
    /* OR use margin-top if you prefer: */
    /* margin-top: 60px; */
}

/* 1. The Anchor */
.promo-item {
    position: relative;
    max-width: 1200px; /* Matches your box width */
    margin: 0 auto;    /* Centers it on the page */
    z-index: 10;
}

/* 2. The Pop-Out Image */
.pop-out-rice {
    position: absolute;
    width: 380px;      /* Adjust size as needed */
    height: auto;

    transform: rotate(-8deg);
    
    /* THE POSITIONING */
    top: -30px;        /* Negative value pulls it UP and out of the white box */
    right: 100px;       /* Aligns it to the right side */
    
    /* THE LAYERING */
    z-index: 20;       /* Ensures the bowl sits ON TOP of the white box */
    
    /* Optional: Adds a soft, realistic shadow to the bowl */
    filter: drop-shadow(0px 10px 15px rgba(0, 0, 0, 0.2));
    
    pointer-events: none; /* Prevents the image from blocking clicks on text */
}

.pop-out-card {
    position: absolute;
    width: 500px;      /* Adjust this based on how big you want the card */
    height: auto;
    
    /* THE POSITIONING */
    top: 380px;        /* Pushes it down so it sits nicely in the slanted 'pinch' */
    left: 80px;       /* A negative value pulls it slightly outside the left edge */
    
    /* THE TILT */
    transform: rotate(5deg); /* Tilts the card slightly to the left */
    
    /* THE LAYERING */
    z-index: 15;       /* Sits ON TOP of the white box */
    
    /* SHADOW */
    /* Notice the first value is negative (-10px) to cast the shadow to the left, matching the tilt */
    filter: drop-shadow(-10px 15px 20px rgba(0, 0, 0, 0.3));
    
    pointer-events: none; /* Prevents the image from blocking text selection */
}


/* 2. Shared Styles for All Caps */
.blue-cap, .black-cap, .green-cap {
    position: absolute;
    width: 120px; /* Base size for the caps */
    height: auto;
    
    /* LAYERING: Higher than the card (which is 15) so they sit on top */
    z-index: 20; 
    
    filter: drop-shadow(0px 8px 10px rgba(0, 0, 0, 0.3)); /* Drop shadows for the caps */
    pointer-events: none;
}

/* 3. Scatter the Caps Across the Top of the Card */

.blue-cap {
    /* Top Left corner of the card */
    top: 420px; 
    left: 20px; 
    transform: rotate(-15deg);
}

.black-cap {
    /* Top Middle */
    top: 500px;
    left: 20px;
    transform: rotate(8deg);
    
    /* Puts the black cap slightly over the blue and green ones */
    z-index: 25; 
}

.green-cap {
    /* Top Right edge of the card */
    top: 460px;
    left: 50px;
    transform: rotate(25deg);
}

/* THE COMING SOON BADGE */
.pop-out-coming {
    position: absolute;
    width: 400px;      /* Adjust this based on your image file's actual size */
    height: auto;
    
    /* THE POSITIONING (Bottom Right) */
    bottom: -80px;     /* A negative value makes it hang off the bottom edge */
    right: 10px;       /* Keeps it safely away from the absolute right edge */
    
    /* THE LAYERING */
    z-index: 20;       /* Sits ON TOP of the white box */
    
    /* NO TILT (Rotation removed) */
    
    /* SHADOW */
    filter: drop-shadow(0px 15px 20px rgba(0, 0, 0, 0.3)); /* Straight shadow for depth */
    
    pointer-events: none; /* Prevents the image from blocking clicks */
}

/* SHIFT TEXT TO THE RIGHT (To avoid hitting your new left image) */
.wednesday-align {
    align-self: flex-end; 
    align-items: flex-end; 
    text-align: right;
    padding-left: 0;
    padding-right: 80px; 
    margin-left: auto; 
}

/* =========================================
   FOOTER & TOP BAR ALIGNMENT
========================================= */

/* 1. Shared Grid Setup for Perfect Alignment */
.top-content {
    display: grid;
    grid-template-columns: 1.2fr 1.5fr 2fr 1.5fr 1fr; 
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    
    /* THE NEW ADDITIONS FOR CENTERING: */
    height: 100%;          /* Forces the grid to match the orange bar's new height */
    align-items: center;   /* Pushes the phone, email, etc., to the vertical middle */
}

/* 1. Force the orange bar to stay thin */
.top-bar {
    background-color: #FF6100;
    padding: 10px 10px;
    height: 80px; /* Locks the thickness of the bar */
    position: relative; 
    z-index: 20;
    overflow: visible !important; /* Allows the giant logo to stick out */
}

/* 2. Make the logo huge and pull it out of the layout */
.top-logo {
    position: absolute; /* Breaks it out of the grid's height calculation */
    height: 130px;      /* Make this as big as you want! */
    width: auto;
    top: -25px;         /* Pulls it up so it overlaps the top and bottom */
    left: 40;            /* Aligns it to the left of your grid container */
    z-index: 30;        /* Keeps it on top of everything */
}

/* 3. Keep the phone number from sliding to the left */
.contact-item:first-of-type {
    /* Since the logo is now 'absolute', this forces the phone number 
       to stay in column 2, leaving column 1 empty for your logo */
    grid-column: 2; 
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px; /* Space between icon and text */
    font-family: 'BenchNine', sans-serif; /* Matches your body font */
    font-size: 1.8rem;
    color: black;
}

.contact-icon {
    height: 40px; /* Adjust based on your icon image sizes */
    width: auto;
}

/* 3. Bottom Dark Brown Footer Styling */
.footer {
    background-color: #4a2e15; /* The dark brown from your image */
    padding: 30px 40px;
}

.footer-container {
    display: grid;
    /* THIS IS THE MAGIC LINE: It must exactly match your .top-content columns! */
    grid-template-columns: 1.2fr 1.5fr 2fr 1.5fr 1fr; 
    
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    align-items: start; /* Keeps the footer text anchored to the top of the brown section */
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 8px; /* Vertical spacing between the links */
    font-family: 'BenchNine', sans-serif;
}

.footer-col h3 {
    color: white;
    font-size: 2rem;
    font-weight: normal;
    margin: 0 0 10px 0;
}

.footer-col a {
    color: #e0e0e0; /* Slightly dimmed white for links */
    text-decoration: none;
    font-size: 1.3rem;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #FF6100; /* Turns orange on hover */
}

.desktop-spacer {
    height: 100px;
}

/* 5. Mobile Responsiveness */
@media screen and (max-width: 768px) {
    /* 1. Main Navbar sizing */
    .navbar {
        height: 20px; /* Thinner bar */
        border-radius: 30px;
        margin: 10px auto; 
    }
    
    /* 2. Shrink the Left-Aligned Bulge */
    .navbar::after {
        width: 80px; /* Narrower bulge */
        height: 40px; /* Shallower drop */
        left: 0; /* Keeps it strictly on the left edge */
        border-radius: 0px 0 10px 10px; /* Blends top-left with the pill shape, rounds the bottom */
    }

    /* 3. Link alignment and text sizing */
    .nav-links {
        padding: 0 5px; /* Less padding on the far left/right */
        gap: 3px; /* Just a tiny gap between the center links */
    }

    .nav-links a {
        font-size: 0.6rem; /* Shrink the text heavily */
        padding: 2px 4px;
        white-space: nowrap; /* Forces text to stay on one line */
    }

    /* 4. The Logo Spacer & Image */
    .logo-item {
        /* Replaces your old flex: 140px rule so it pushes the center links correctly */
        width: 60px; 
        margin-right: auto; /* Shoves the main text links into the center */
    }
    
    .logo-item img {
        height: 60px; /* Smaller logo */
        top: -10px; /* Adjust the vertical position */
        left: 10px; /* Tucks it nicely inside the 80px bulge */
    }

    /* 5. The Right Side Icons (NEW) */
    .right-menu {
        gap: 4px; /* Tiny gap between the cart and user icons */
        margin-left: auto; /* Shoves the icons to the far right */
    }

    .nav-icon {
        height: 14px; /* Micro white circles to match the 20px navbar */
        width: 14px;
        padding: 2px;
    }

    /* Hide the login text so it doesn't break your 0.5rem micro-layout */
    .login-link {
        display: none !important; 
    }

    /* 6. The Dropdown Box */
    .dropdown-content {
        min-width: 40px; /* Prevents the box from being unnecessarily wide */
        padding: 0px 4px 4px 4px; /* Reduces empty white space */
        border-radius: 10px; 
        top: 0px;
    }

    .dropdown-content a {
        font-size: 0.5rem !important; /* Smaller main text */
        padding: 2px 0 !important; 
    }

    .dropdown-content a:nth-child(2),
    .dropdown-content a:nth-child(3) {
        font-size: 0.5rem !important; /* Noticeably smaller sub-links */
    }

    /* --- MOBILE HERO SECTION --- */
    .hero-section {
        margin: 20px 0; /* Reduces the top/bottom spacing for smaller screens */
        padding-left: 20px; /* Reduces the heavy left padding */
        padding-right: 20px; /* Adds even padding to the right so things stay centered */
    }

    .hero-image {
        width: 100%;
        display: flex;
        
        /* Change this to 'flex-end' to keep the hand on the right side of the phone */
        justify-content: flex-end; 
    }


    .hero-image img {
        height: 220px; 
        max-height: 50vh; 
        object-fit: contain;
        max-width: 100%;
        
        /* CHANGE THIS: Pulls the image 20px to the right, ignoring the container's padding! */
        margin-right: -20px; 
        margin-top: -50px;
    }

    /* --- MOBILE ALIGNMENT FIX --- */

    .hero-tagline {
        width: 100%; 
        display: flex;
        
        /* This keeps the BOX centered, but we can change the IMAGE inside it */
    
    }

    .tagline-img {
        width: 220px; /* Keep it a nice size for phones */
        margin-top: -40px; 
        
        /* --- THE FIX --- */
        /* Use 'flex-start' to move it to the LEFT */
        /* Use 'flex-end' to move it to the RIGHT */
        /* Change this to flex-start if you want it left-aligned */
    }

    .flavor-btn {
        font-size: 0.6rem;
        padding: 5px 10px;
        border: 2px solid #FF0202; /* Thinner border for small screens */
        margin-top: 5px;
        margin-left: 27px;
        
    }

    .best-sellers {
    padding: 0px 0; /* Keeps space for the torn edges */
    margin-top: -60px; 
    }

    .torn-paper {
    display: flex;
    justify-content: flex-end;
    height: 300px;
    }

    .section {
        padding: 60px 0px;
    }

    .section1-title {
        font-size: 1rem;
    }

    .section1-title::before,
    .section1-title::after {
        height: 2px;      
        width: 50px; 
        border-radius: 5px;
    }

    .cards-container {
        gap: 20px;
    }

    .menu-card {
        width: 100px;
        height: 130px;
        border-radius: 10px;
        padding: 5px;
        padding-top: 2px; 
    }

    .menu-card h3{
        font-size: 1rem;
        font-weight: lighter;
        margin-top: 5px;
        letter-spacing: 1px;
    }

    .yakiniku-img{
        width: 75px;
        margin-top: -5px;
    }

    .wings-img {
        width: 100px; /* Wings look best slightly larger */
        margin-top: -5px;
    }

    .torikatsu-img {
        width: 80px; /* Making the sandwich the largest to "pop" */
        margin-top: -5px; /* Nudge it up slightly if needed */
    }

    .menu-card img{
        height: auto;
        display: block;
    }

    .section2{
        padding: 20px;
        margin-top: -10px;
        
    }

    .section2-title{
        font-size: 2rem;
        font-weight: lighter;
        text-shadow: 1px 1px 0px rgb(224, 102, 3);
    }

    .choose-container {
        gap: 8px;
        padding: 0px 0px;
    }

    .choose-card{
        width: 500px;
        height: 100px;
        padding: 5px;
        border-radius: 10px;
    }

    .choose-card .icon img {
        width: 40px; /* Adjust based on your icon size */
        margin-bottom: 5px;
    }

    .choose-card p {
        font-size: .7rem;
    }

    .section3{
        padding: 20px 0px;
    }

    .section3-title{
        font-size: 1.5rem;
        -webkit-text-stroke: 1px #ffffff;
        margin-bottom: 10px;
    }
    
    .testi-container{
        gap: 10px;
        margin: 0px;
        padding: -20px;
    }

    .testi-card{
        width: 150px;
        min-height: 0;
        padding: 13px;
        border-radius: 12px;
        border: 2.3px solid; 
    }

    .user-header {
        gap: 5px;
        margin-bottom: 10px;
    }

    .user-name {
        font-size: .6rem;
    }

    .feedback-text{
        font-size: .6rem;
        margin-top: 0;
        margin-bottom: 0px;
    }
    .user-photo {
        width: 20px;
        height: 20px;

    }

    .section4{
        padding: 20px 0;
        margin-top: -25px;

    }

    .promo-title-container{
        gap: 0px;
        display: flex;
        margin: auto;

    }

    .brand-stack{
        font-size: 2rem;

    }
    
    .main-promo-text{
        font-size: 5rem;

    }

    .box {
        --w: 90vw;
        --h: 180px;
        --r: 20px;
        width: var(--w);
        height: var(--h);
        margin: 0 auto;
        background: white;
        z-index: 10;

        clip-path: shape(
            from 0 var(--r),
            curve to var(--r) 0 with 0 0,
            line to calc(var(--w) - var(--r)) 0,
            curve to var(--w) var(--r) with var(--w) 0,
            /* Slant ends at 110px from the top */
            line to var(--w) calc(110px - var(--r)), 
            curve to calc(var(--w) - var(--r)) 110px with var(--w) 110px,
            line to var(--r) var(--h),
            curve to 0 calc(var(--h) - var(--r)) with 0 var(--h),
            close
        );
    }

    .box-loyalty {
        --w: 90vw;
        --h: 240px;
        --r: 20px;
        width: var(--w);
        height: var(--h);
        background: white;
        /* Pulls up to hide the bottom slant of Box 1 (180px box) */
        margin: -50px auto 0 auto; 
        position: relative;
        z-index: 5;

        clip-path: shape(
            /* 1. TOP-LEFT: Pulled down to 70px */
            from 0 calc(70px + var(--r)),
            curve to var(--r) 70px with 0 70px,

            /* 2. TOP-RIGHT: Stays at the top */
            line to calc(var(--w) - var(--r)) 0,
            curve to var(--w) var(--r) with var(--w) 0,

            /* 3. BOTTOM-RIGHT: Stays at the bottom (240px) */
            line to var(--w) calc(var(--h) - var(--r)),
            curve to calc(var(--w) - var(--r)) var(--h) with var(--w) var(--h),

            /* 4. BOTTOM-LEFT: Pulled up to 170px (leaving 70px gap at bottom) */
            line to var(--r) 170px,
            curve to 0 calc(170px - var(--r)) with 0 170px,
            
            close
        );
    }

    .box-upside-down {
        --w: 90vw;
        --h: 180px;
        --r: 20px;
        width: var(--w);
        height: var(--h);
        background: white;
        /* Pulls up -70px to interlock with the Loyalty box */
        margin: -50px auto 0 auto; 
        position: relative;
        z-index: 1;

        clip-path: shape(
            /* 1. TOP-LEFT: Stays at the top */
            from 0 var(--r),
            curve to var(--r) 0 with 0 0,

            /* 2. TOP-RIGHT: Pulled down 70px to create the downward slant */
            line to calc(var(--w) - var(--r)) 70px,
            curve to var(--w) calc(70px + var(--r)) with var(--w) 70px,

            /* 3. BOTTOM-RIGHT: Stays at the bottom (180px) */
            line to var(--w) calc(var(--h) - var(--r)),
            curve to calc(var(--w) - var(--r)) var(--h) with var(--w) var(--h),

            /* 4. BOTTOM-LEFT: Stays at the bottom (180px) */
            line to var(--r) var(--h),
            curve to 0 calc(var(--h) - var(--r)) with 0 var(--h),
            
            close
        );
    }

    .promo-title {
        font-size: 2rem; /* Scaled down from 7rem */
        margin-top: 10px;
        margin-bottom: -5px;
    }

    .promo-description {
        font-size: .5rem; /* Scaled down from 1.8rem */
        line-height: 1.2;
    }

    /* 2. TEXT CONTAINER ADJUSTMENTS */
    .promo-text-content {
        width: 100%; /* Uses full width instead of 65% */
        padding-left: 20px; /* Tighter padding for mobile */
    }

    .loyalty-align, .wednesday-align {
        padding-right: 20px; /* Reduced safe zones from 80px */
        padding-left: 0;
    }

    /* 3. BOX-SPECIFIC SPACING */
    .box .promo-text-content {
        padding-top: 30px; 
    }

    .box-upside-down .promo-text-content {
        padding-bottom: 50px; /* Reduced from 50px */
    }

    /* 4. SHRINKING THE POP-OUT IMAGES */
    .pop-out-rice {
        width: 150px;       /* Shrunk down from 380px */
        top: 0px;         /* Adjusted negative pull for smaller bowl */
        right: 20px;        /* Hugs the right edge */
    }

    .pop-out-card {
        width: 180px;       /* Shrunk down from 500px */
        top: 200px;         /* Adjusted to fit the shorter mobile box height */
        left: 30px;          /* Hugs the left edge */
    }

    .blue-cap, .black-cap, .green-cap {
        width: 40px; /* Base size for the caps */
    }

    .blue-cap {
        top: 200px; 
        left: 20px; 
    }

    .black-cap {
        top: 180px;
        left: 160px;
    }

    .green-cap {
        top: 200px;
        left: 180px;
    }

    .pop-out-coming {
        width: 160px;   
        bottom: -20px;   
        right: 20px;        
    }

    /* 1. SHRINK THE TOP BAR & KEEP GRID */
    .top-bar {
        /* Your existing mobile styles */
        height: 40px; 
        padding: 5px; 
        
        /* THE FIX: Pulls the entire footer section UP */
        margin-top: -100px; /* Make this number more negative (e.g., -100px) if you need to pull it higher! */
    }

    .top-content {
        display: grid;
        /* Keeps your exact 5-column desktop layout */
        grid-template-columns: 1.2fr 1.5fr 2fr 1.5fr 1fr; 
        height: 100%;
        align-items: center;
        gap: 2px; /* Tiny gap to save space */
    }

    /* 2. SCALE DOWN THE POP-OUT LOGO */
    .top-logo {
        position: absolute; 
        height: 50px; /* Much smaller so it doesn't cover the screen */
        top: 50%; 
        transform: translateY(-50%);
        left: 40;
    }

    /* 3. SHRINK ICONS & TEXT TO FIT */
    .contact-item {
        font-size: 0.65rem; /* VERY small text to fit the 5 columns */
        gap: 3px;           /* Less space between icon and text */
        
        /* Forces the long email address to wrap to two lines instead of breaking the layout */
        word-break: break-all; 
        overflow-wrap: anywhere; 
        line-height: 1.1;
    }

    .contact-icon {
        height: 12px; /* Tiny icons */
    }

    /* 4. SHRINK THE FOOTER & KEEP GRID */
    .footer {
        padding: 15px 5px; /* Minimal padding */
    }

    .footer-container {
        display: grid;
        /* Matches the top bar exactly to keep that invisible vertical alignment */
        grid-template-columns: 1.2fr 1.5fr 2fr 1.5fr 1fr; 
        gap: 2px;
    }

    .footer-col {
        gap: 4px;
    }

    .footer-col h3 {
        font-size: 0.9rem; /* Scaled down titles */
        margin: 0 0 5px 0;
    }

    .footer-col a {
        font-size: 0.75rem; /* Scaled down links */
    }

    .desktop-spacer {
        display: none;
    }

}