/* ==========================================
   GOOGLE FONTS
========================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Poppins:wght@300;400;500;600&display=swap');


/* ==========================================
   RESET
========================================== */

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

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;

    background:#0F1611;

    color:#F3EEE5;

    overflow-x:hidden;

}


/* ==========================================
   COLORS

   Background........#0F1611
   Section...........#162019
   Card..............#1D2A22

   Primary Green.....#4E6B50
   Accent Green......#6F8F64

   Text..............#F3EEE5
   Muted.............#B8C1B7
========================================== */


/* ==========================================
   TYPOGRAPHY
========================================== */

h1,
h2,
h3,
h4{

    font-family:'Cormorant Garamond',serif;

    font-weight:600;

}

h2{

    font-size:3rem;

    text-align:center;

    margin-bottom:18px;

}

.section-text{

    max-width:700px;

    margin:0 auto 60px;

    text-align:center;

    color:#B8C1B7;

    line-height:1.8;

}


/* ==========================================
   NAVIGATION
========================================== */

nav{

    position:sticky;

    top:0;

    z-index:1000;

    display:flex;

    justify-content:center;

    align-items:center;

    padding:18px 8%;

    background:rgba(15,22,17,.92);

    backdrop-filter:blur(16px);

    border-bottom:1px solid rgba(111,143,100,.15);

}

.logo{

    width:82px;

    transition:.35s;

}

.logo:hover{

    transform:rotate(-4deg) scale(1.05);

}

nav ul{

    display:flex;

    list-style:none;

    gap:34px;

}

nav a{

    color:#F3EEE5;

    text-decoration:none;

    font-weight:500;

    position:relative;

    transition:.3s;

}

nav a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-7px;

    width:0;

    height:2px;

    background:#6F8F64;

    transition:.35s;

}

nav a:hover{

    color:#9EB48F;

}

nav a:hover::after{

    width:100%;

}


/* ==========================================
   HERO
========================================== */
.hero{
    min-height:100vh;

    height:auto;

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

    padding:120px 20px 60px;

    background:

    linear-gradient(rgba(10,15,11,.78),rgba(10,15,11,.88)),

    url("../images/hero.jpg");

    background-size:cover;

    background-position:center;

}

.hero-content{

    animation:fadeUp 1s ease;

}

.hero-logo{

    width:450px;

    max-width:90%;

    margin-bottom:20px;

    transition:.35s;

}

.hero-logo:hover{

    transform:scale(1.03);

}

.hero h1{

    font-size:4.7rem;

    margin-bottom:12px;

}

.hero h2{

    font-size:2.2rem;

    color:#9EB48F;

    margin-bottom:45px;

}


/* ==========================================
   BUTTONS
========================================== */

.buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

.button{

    display:inline-block;

    padding:16px 36px;

    background:#4E6B50;

    color:white;

    text-decoration:none;

    border-radius:50px;

    font-weight:600;

    transition:.35s;

}

.button:hover{

    background:#6F8F64;

    transform:translateY(-5px);

    box-shadow:0 12px 30px rgba(111,143,100,.35);

}


/* ==========================================
   ANIMATION
========================================== */

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(40px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}
/* ==========================================
   MENU SECTIONS
========================================== */

.menu,
.signature,
.seasonal{

    padding:100px 8%;

}

.menu{

    background:#162019;

}

.signature{

    background:#0F1611;

}

.seasonal{

    background:#162019;

}


/* ==========================================
   GRID LAYOUTS
========================================== */

.menu-grid,
.signature-grid,
.seasonal-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:35px;

    max-width:1150px;

    margin:60px auto 0;

}


/* ==========================================
   MENU CARDS
========================================== */

.menu-card,
.drink-card{

    background:#1D2A22;

    border:1px solid rgba(111,143,100,.25);

    border-radius:22px;

    padding:32px;

    transition:.35s;

    display:flex;

    flex-direction:column;

}

.menu-card:hover,
.drink-card:hover{

    transform:translateY(-8px);

    border-color:#6F8F64;

    box-shadow:0 18px 40px rgba(0,0,0,.35);

}


/* ==========================================
   CARD HEADINGS
========================================== */

.menu-card h3,
.drink-card h3{

    color:#9EB48F;

    font-size:2rem;

    margin-bottom:18px;

}


/* ==========================================
   MENU ITEMS
========================================== */

.menu-item{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:20px;

    padding:16px 0;

    border-bottom:1px solid rgba(255,255,255,.08);

}

.menu-item:last-child{

    border-bottom:none;

}

.menu-item span:first-child{

    flex:1;

}

.menu-item span:last-child{

    color:#9EB48F;

    font-weight:600;

    min-width:90px;

    text-align:right;

}


/* ==========================================
   DRINK DESCRIPTIONS
========================================== */

.drink-description{

    color:#C9D1C8;

    line-height:1.7;

    margin-bottom:22px;

    font-style:italic;

}


/* ==========================================
   PRICE LISTS
========================================== */

.seasonal-prices{

    margin-top:auto;

}

.price-row{

    display:flex;

    justify-content:space-between;

    padding:12px 0;

    border-bottom:1px solid rgba(255,255,255,.08);

}

.price-row:last-child{

    border-bottom:none;

}

.price-row span:last-child{

    color:#9EB48F;

    font-weight:600;

}


/* ==========================================
   SUBTITLES
========================================== */

.food-subtitle,
.menu-subtitle{

    color:#B8C1B7;

    font-style:italic;

    text-align:center;

    margin-bottom:25px;

    font-size:.95rem;

}


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

@media (max-width:900px){

    .menu-grid,
    .signature-grid,
    .seasonal-grid{

        grid-template-columns:1fr;

    }

}
/* ==========================================
   CUSTOMIZE YOUR DRINK
========================================== */

.addons{

    padding:100px 8%;

    background:#0F1611;

}

.addons-grid{

    display:grid;

    grid-template-columns:1fr 1.4fr;

    gap:35px;

    max-width:1150px;

    margin:60px auto 0;

}

.addons-card{

    background:#1D2A22;

    border:1px solid rgba(111,143,100,.25);

    border-radius:22px;

    padding:32px;

    transition:.35s;

}

.addons-card:hover{

    transform:translateY(-8px);

    border-color:#6F8F64;

    box-shadow:0 18px 40px rgba(0,0,0,.35);

}

.addons-card h3{

    color:#9EB48F;

    font-size:2rem;

    margin-bottom:25px;

}

.addon-group{

    margin-bottom:28px;

}

.addon-group:last-child{

    margin-bottom:0;

}

.addon-group h4{

    color:#6F8F64;

    text-transform:uppercase;

    letter-spacing:2px;

    font-size:.8rem;

    margin-bottom:15px;

    padding-bottom:8px;

    border-bottom:1px solid rgba(111,143,100,.25);

}


/* ==========================================
   SYRUP GRID
========================================== */

.syrup-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:14px;

    margin-top:25px;

}

.syrup-grid span{

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

    min-height:58px;

    background:#162019;

    border:1px solid rgba(111,143,100,.25);

    border-radius:14px;

    transition:.3s;

}

.syrup-grid span:hover{

    background:#223126;

    border-color:#6F8F64;

    transform:translateY(-3px);

}


/* ==========================================
   FOOD MENU
========================================== */

.food{

    padding:100px 8%;

    background:#162019;

}

.food-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:35px;

    max-width:1150px;

    margin:60px auto 0;

}

.food-card{

    background:#1D2A22;

    border:1px solid rgba(111,143,100,.25);

    border-radius:22px;

    padding:32px;

    transition:.35s;

}

.food-card:hover{

    transform:translateY(-8px);

    border-color:#6F8F64;

    box-shadow:0 18px 40px rgba(0,0,0,.35);

}

.food-card h3{

    color:#9EB48F;

    font-size:2rem;

    margin-bottom:12px;

}


/* ==========================================
   SANDWICH DESCRIPTIONS
========================================== */

.food-description{

    margin:8px 0 20px 18px;

    padding-left:14px;

    border-left:3px solid rgba(111,143,100,.4);

    color:#B8C1B7;

    font-style:italic;

    line-height:1.7;

    font-size:.92rem;

}


/* ==========================================
   ALLERGY NOTICE
========================================== */

.allergy-notice{

    grid-column:1/-1;

    margin-top:30px;

    background:#1D2A22;

    border:1px solid rgba(111,143,100,.25);

    border-radius:22px;

    padding:28px;

    text-align:center;

}

.allergy-notice h3{

    color:#9EB48F;

    margin-bottom:15px;

    font-size:1.8rem;

}

.allergy-notice p{

    color:#C9D1C8;

    line-height:1.8;

}


/* ==========================================
   BAGELS
========================================== */

.bagels{

    padding:100px 8%;

    background:#0F1611;

}

.bagel-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:35px;

    max-width:1150px;

    margin:60px auto 0;

}

.bagel-card{

    background:#1D2A22;

    border:1px solid rgba(111,143,100,.25);

    border-radius:22px;

    padding:32px;

    transition:.35s;

}

.bagel-card:hover{

    transform:translateY(-8px);

    border-color:#6F8F64;

    box-shadow:0 18px 40px rgba(0,0,0,.35);

}

.bagel-card h3{

    color:#9EB48F;

    font-size:2rem;

    margin-bottom:22px;

}

.bagel-list,
.spread-list{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:15px;

}

.bagel-list span,
.spread-list span{

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

    min-height:70px;

    padding:14px;

    background:#162019;

    border:1px solid rgba(111,143,100,.25);

    border-radius:14px;

    transition:.3s;

}

.bagel-list span:hover,
.spread-list span:hover{

    transform:translateY(-3px);

    border-color:#6F8F64;

    background:#223126;

}

.bagel-list small,
.spread-list small{

    display:block;

    margin-top:5px;

    color:#B8C1B7;

    font-size:.75rem;

}


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

@media(max-width:900px){

    .addons-grid,
    .food-grid,
    .bagel-grid{

        grid-template-columns:1fr;

    }

    .syrup-grid{

        grid-template-columns:repeat(2,1fr);

    }

    .bagel-list,
    .spread-list{

        grid-template-columns:1fr;

    }

}
/* ==========================================
   VISIT US
========================================== */

.visit{

    padding:100px 8%;

    background:#162019;

}

.visit-container{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

    align-items:center;

    max-width:1200px;

    margin:60px auto 0;

}

.visit-info h3{

    color:#9EB48F;

    font-size:1.5rem;

    margin:28px 0 10px;

}

.visit-info p,
.visit-info a{

    color:#F3EEE5;

    text-decoration:none;

    line-height:1.9;

}

.visit-info a:hover{

    color:#9EB48F;

}


/* ==========================================
   SOCIAL BUTTONS
========================================== */

.social-buttons{

    display:flex;

    flex-wrap:wrap;

    gap:15px;

    margin-top:35px;

}

.social-buttons a{

    display:inline-block;

    padding:14px 26px;

    background:#4E6B50;

    color:white;

    border-radius:40px;

    text-decoration:none;

    transition:.3s;

}

.social-buttons a:hover{

    background:#6F8F64;

    transform:translateY(-3px);

}


/* ==========================================
   MAP
========================================== */

.map iframe{

    width:100%;

    height:450px;

    border:none;

    border-radius:22px;

    box-shadow:0 18px 45px rgba(0,0,0,.30);

}


/* ==========================================
   FOOTER
========================================== */

footer{

    background:#0A100C;

    padding:70px 20px;

    text-align:center;

    border-top:1px solid rgba(111,143,100,.15);

}

.footer-logo{

    width:120px;

    margin-bottom:20px;

}

footer h3{

    color:#F3EEE5;

    font-size:2rem;

    margin-bottom:10px;

}

footer p{

    color:#B8C1B7;

}

.footer-links{

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:28px;

    margin:35px 0;

}

.footer-links a{

    color:#F3EEE5;

    text-decoration:none;

    transition:.3s;

}

.footer-links a:hover{

    color:#9EB48F;

}

.copyright{

    margin-top:35px;

    font-size:.9rem;

    color:#8D958C;

}


/* ==========================================
   GLOBAL CARD ANIMATION
========================================== */

.menu-card,
.drink-card,
.food-card,
.addons-card,
.bagel-card{

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;

}


/* ==========================================
   SCROLLBAR
========================================== */

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#111814;

}

::-webkit-scrollbar-thumb{

    background:#4E6B50;

    border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

    background:#6F8F64;

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width:900px){

    nav{

        flex-direction:column;

        gap:20px;

        padding:14px 20px;

    }

    nav ul{

        flex-wrap:wrap;

        justify-content:center;

        gap:18px;

    }

    .visit-container{

        grid-template-columns:1fr;

    }

    .hero h1{

        font-size:3.3rem;

    }

    .hero h2{

        font-size:1.7rem;

    }

    h2{

        font-size:2.4rem;

    }

    .buttons{

        flex-direction:column;

        align-items:center;

    }

    .button{

        width:240px;

        text-align:center;

    }

}


/* ==========================================
   LARGE DESKTOP
========================================== */

@media (min-width:1400px){

    .menu-grid,
    .signature-grid,
    .seasonal-grid,
    .addons-grid,
    .food-grid,
    .bagel-grid,
    .visit-container{

        max-width:1300px;

    }

}
/* ==========================================
   SCROLL REVEAL
========================================== */

section{

    opacity:0;

    transform:translateY(40px);

    transition:all .8s ease;

}

section.show{

    opacity:1;

    transform:translateY(0);

}

/* Hero should already be visible */

.hero{

    opacity:1;

    transform:none;

}
.section-divider{

    width:160px;
    height:40px;

    margin:70px auto;

    background:url("../images/leaf-divider.svg")
    center no-repeat;

    background-size:contain;

    opacity:.45;

}
/* ==========================================
   MOBILE SPACING IMPROVEMENTS
========================================== */

@media (max-width: 768px) {

    /* Reduce vertical spacing between sections */
    .menu,
    .signature,
    .seasonal,
    .addons,
    .food,
    .bagels,
    .visit {
        padding: 60px 6%;
    }

    /* Make section intro text tighter */
    .section-text {
        margin: 0 auto 35px;
        line-height: 1.6;
    }

    /* Reduce space above grids */
    .menu-grid,
    .signature-grid,
    .seasonal-grid,
    .addons-grid,
    .food-grid,
    .bagel-grid,
    .visit-container {
        margin-top: 35px;
        gap: 22px;
    }

    /* Slightly smaller cards */
    .menu-card,
    .drink-card,
    .food-card,
    .addons-card,
    .bagel-card {
        padding: 24px;
    }

    /* Smaller hero */
    .hero {
        min-height: 80vh;
    }

    .hero-logo {
        width: 280px;
        margin-bottom: 10px;
    }

    /* Reduce divider spacing */
    .section-divider {
        margin: 40px auto;
    }

}
@media (max-width:768px){

    .hero{
        min-height:auto;
        height:auto;
        padding:80px 20px 50px;
    }

    .hero-content{
        padding-top:0;
    }

    .hero-logo{
    width:340px;
    max-width:90%;
    height:auto;
    margin-bottom:20px;
}

}