/* COLOR PALETTE */
:root {
    --primary: #4A2C2A;
    --accent: #B4654A;
    --light: #F7EFEA;
    --text-dark: #2A1E1A;
    --text-light: #ffffff;
}

/* GLOBAL */
body {
    margin: 0;
    font-family: "Inter", Arial, sans-serif;
    background: var(--light);
    color: var(--text-dark);
    overflow-x: hidden; /* prevents weird side scroll */
}


/* TOP NAV BAR */
.main-nav {
    background: black;
    height: 115px; /* FIXED HEIGHT */
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    color: var(--text-dark);}

/* NEW CENTERED NAVBAR SYSTEM */
.nav-inner {
    width: 92%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: center; /* centers nav links */
    align-items: center;
    position: relative; /* allows absolute logo */
   
}

/* LOGO — stays left but no longer pushes nav links */
.nav-logo {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.nav-logo img {
    height: 100px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 6px rgba(0,0,0,0.45));
}

/* NAV LINKS — now perfectly centered */
/* NAV CONTAINER */
.nav-links {
    list-style: none;
    display: flex;
    justify-content: center; /* centers items horizontally */
    align-items: center;
    gap: 40px;
    margin: 0;
    padding: 0;
    width: 100%;
     color: #f5f5f5;
    text-decoration: none;
}

/* LINKS */
.nav-links a {
    color: #f5f5f5;
    text-decoration: none;
}

/* keeps visited links from turning purple */
.nav-links a:visited {
    color: #f5f5f5;
}

/* optional hover effect */
.nav-links a:hover {
    color: #ffffff;
}
/* LEFT SIDE BAR */
.sidebar {
    width: 180px;
    background: #111;
    color: #fff;
    padding: 20px 15px;
    height: 100vh;
    position: fixed;
    top: 115px; /* MATCHES NAVBAR HEIGHT */
    left: 0;
    
}

/* SIDEBAR TEXT */
.sidebar h3 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 18px;
    letter-spacing: 1px;
}

.sidebar ul {
    list-style: none;
    padding: 0;
}

.sidebar li {
    border-left: 6px solid var(--accent);
    padding: 12px 0 12px 12px;   /* indentation lives here */
    margin-bottom: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
}
.sidebar li a {
    color: #fff;
    text-decoration: none;
    display: block;
    padding: 12px 0 12px 12px;
    transition: 0.25s ease;
}

.sidebar li a:hover {
    color: var(--accent);
    transform: translateX(4px);
}


/* MAIN CONTENT */
.content {
    margin-left: 240px;
    padding-top: 150px; /* extra space for taller navbar */
}

/* HEADER */
.top-header {
    text-align: start;
    padding: 40px 20px;
    margin-left: 35px;
    
 
    color: var(--text-dark);
}

.top-header h1 {
    margin: 0;
    font-size: 36px;
    font-weight: 700;
}

.cta-btn {
    margin-top: 15px;
    padding: 12px 28px;
    background: var(--accent);
    color: var(--text-light);
    border: none;
    border-radius: 30px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.25s ease;
}

.cta-btn:hover {
    background: #c97a5f;
    transform: translateY(-2px);
}

/* MENU SECTIONS */
.menu-section {
    width: 90%;
    max-width: 1200px;
    margin: 50px auto;
    margin-top: -25px;
   
}

.menu-section h2 {
    font-size: 26px;
    margin-bottom: 25px;
    
    border-left: 6px solid var(--accent);
    padding-left: 12px;
}

/* GRID */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 30px;
}

.menu-item {
    text-align: center;
    transition: 0.25s ease;
    cursor: pointer;
}

.menu-item img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: 0.25s ease;
}

.menu-item:hover img {
    transform: scale(1.07);
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}

.menu-item p {
    margin-top: 12px;
    font-size: 16px;
    font-weight: 500;
}



/* Base transition */
.menu-item strong,
.menu-item p {
    transition: color 0.3s ease;}
    
.Green-Tea:hover strong,
.Green-Tea:hover p {
    color: #4A7C59;
    }   

.Chamomile-Tea:hover strong,
.Chamomile-Tea:hover p {
    color: #F2D16B;
    }   
    
.Black-Tea:hover strong,
.Black-Tea:hover p {
    color: #3B2F2F;
    }   
    
    

#Signature-Mochas:hover strong,
#Signature-Mochas:hover p {
    color: #6F4E37;
    
}
/* Smoothies */
#Signature-Lattes:hover strong,
#Signature-Lattes:hover p {
    color: #B4654A;
    
}

/* Smoothies */
#smoothieoftheday:hover strong,
#smoothieoftheday:hover p {
    color: #E53935;
    
}

#trending:hover strong,
#trending:hover p {
    color: #3B2F2F;
    
}


/* Smoothies */
.banana:hover strong,
.banana:hover p {
    color: #C9A227;
    
}
.strawberry:hover strong,
.strawberry:hover p {
    color: #E53935;
}
.four-berry:hover strong,
.four-berry:hover p {
    color: #6A0DAD;
}

.mango:hover strong,
.mango:hover p {
    color: #FFA62B;
}

.peach:hover strong,
.peach:hover p {
    color: #FFB6A3;
}
/* FULL WIDTH FOOTER BACKGROUND */
.modern-footer {
    background: #111;
    color: #f5f5f5;
    padding: 60px 20px 25px;
    font-family: system-ui, sans-serif;

    width: 100%;
}

/* CENTERED CONTENT WRAPPER */
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* GRID */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    align-items: start;
}

/* HEADINGS */


.footer-col h4 {
    font-size: 16px;
    margin-bottom: 15px;
    color: #fff;
}

/* TEXT */
.footer-col p {
    font-size: 13px;
    color: #cfcfcf;
    margin: 5px 0;
    line-height: 1.5;
}

/* LINKS */
.footer-col a {
    font-size: 13px;
    color: #f5f5f5;
    text-decoration: none;
    display: inline-block;
    margin: 5px 0;
    transition: 0.3s ease;
}

.footer-col a:hover {
    color: #B4654A;
}

/* ICON */
.footer-col i {
    margin-right: 8px;
    color: #B4654A;
    font-size: 28px;
}

/* LEGAL */
.footer-legal {
    text-align: center;
    margin-top: 20px;
    font-size: 13px;
    color: #aaa;
}

.footer-legal a {
    color: #aaa;
    text-decoration: none;
    margin: 0 8px;
}

.footer-legal a:hover {
    color: #B4654A;
}

.footer-map {
    width: 100%;
    height: 220px;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 10px;
}

.footer-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}


/* BOTTOM BAR */
.footer-bottom {
    text-align: center;
    margin-top: 15px;
    font-size: 12px;
    color: #777;
    border-top: 1px solid #222;
    padding-top: 15px;
}

/* ===========================
   TABLET — 1024px and below
   =========================== */
@media (max-width: 1024px) {

    .sidebar {
        width: 150px;
    }

    .content {
        margin-left: 170px;
        padding-top: 140px;
    }

    .nav-links {
        gap: 25px;
        font-size: 15px;
    }

    .menu-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    }
}

/* ===========================
   LARGE MOBILE — 768px and below
   =========================== */
@media (max-width: 768px) {

    /* FULLY REMOVE SIDEBAR */
    .sidebar {
        display: none !important;
        position: static !important;
        width: 0 !important;
        height: 0 !important;
        overflow: hidden !important;
    }

    .main-nav {
        height: 75px !important;
    }

    .nav-logo img {
        height: 55px !important;
    }

    .nav-logo {
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
    }

    .nav-links {
        display: none !important;
    }

    .content {
        margin-left: 0 !important;
        padding-top: 95px !important;
    }

    .menu-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }

    .menu-item img {
        width: 110px !important;
        height: 110px !important;
    }

    .footer-grid {
        grid-template-columns: 1fr !important;
        text-align: center !important;
    }

    .footer-col iframe {
        width: 100% !important;
        height: 180px !important;
    }
}

/* ===========================
   SMALL MOBILE — 480px and below
   (NAVBAR FIXED + VISIBLE)
   =========================== */
@media (max-width: 480px) {

    /* FULLY REMOVE SIDEBAR */
    .sidebar {
        display: none !important;
        position: static !important;
        width: 0 !important;
        height: 0 !important;
        overflow: hidden !important;
    }

    /* NAVBAR STACKED BELOW LOGO */
    .main-nav {
        height: auto !important;
        padding: 20px 0 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 10px !important;
    }

    /* Logo centered at top */
    .nav-logo {
        position: relative !important;
        left: 0 !important;
        transform: none !important;
        margin-bottom: 5px !important;
    }

    .nav-logo img {
        height: 70px !important;
    }

   .nav-links {
    display: flex !important;
    flex-direction: row !important;   /* horizontal */
    justify-content: center !important;
    align-items: center !important;
    gap: 20px !important;
    width: 100% !important;
    text-align: center !important;
}


    /* Remove absolute positioning from nav-inner */
    .nav-inner {
        position: relative !important;
        top: 0 !important;
        transform: none !important;
        width: 100% !important;
    }

    /* Content starts BELOW the stacked navbar */
    .content {
        padding-top: 160px !important;
        margin-left: 0 !important;
    }

    .menu-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }

    .menu-item img {
        width: 100px !important;
        height: 100px !important;
    }

    .footer-col iframe {
        height: 180px !important;
    }
}


/* ===========================
   LANDSCAPE — short screens
   =========================== */
@media (max-height: 500px) and (orientation: landscape) {

    /* FULLY REMOVE SIDEBAR */
    .sidebar {
        display: none !important;
        position: static !important;
        width: 0 !important;
        height: 0 !important;
        overflow: hidden !important;
    }

    .main-nav {
        height: 55px !important;
    }

    .nav-logo img {
        height: 40px !important;
    }

    .content {
        margin-left: 0 !important;
        padding-top: 70px !important;
    }

    .menu-grid {
        grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)) !important;
        gap: 10px !important;
    }

    .menu-item img {
        width: 90px !important;
        height: 90px !important;
    }
}

