:root {
    --pink: #F2B6C1;
    --brown: #6B3E2E;
    --cream: #F8F6F4;
    --ink: #3a2a24;
    --border: rgba(107, 62, 46, 0.25);
    --card: #ffffff;
}

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

img { max-width: 100%; }

.container {
    width: min(72rem, 92%);
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    background: rgba(248, 246, 244, 0.95);
    backdrop-filter: blur(0.4rem);
    border-bottom: 0.0625rem solid var(--border);
    z-index: 10;
}

.logo img {
    width: 10rem;
    height: auto;
}

.site-nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1rem 0;
}

.site-nav a {
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 600;
}

.site-nav a.active {
    border-bottom: 0.125rem solid var(--brown);
    padding-bottom: 0.2rem;
}


/* Re-usable Utiity Classes  */
.tall-5 { min-height: 5vh;  }
.tall-10 { min-height: 10vh; }
.tall-20 { min-height: 20vh; }
.tall-30 { min-height: 30vh; }
.tall-40 { min-height: 40vh; }
.tall-50 { min-height: 50vh; }
.tall-60 { min-height: 60vh; }
.tall-70 { min-height: 70vh; }
.tall-80 { min-height: 80vh; }
.tall-90 { min-height: 90vh; }

.padded    { padding: 5%;    }

.padded-1,
.grid.padded-1 { padding: 1rem; }

.padded-2,
.grid.padded-2 { padding: 2rem; }

.padded-top {padding-top: 1rem;}

.capped-width { max-width: 1100px; margin: auto;}


.margin-b-0 { margin-bottom: 0; }


.bg-light    { background-color: var(--cream); }
.bg-featured { background-color: var(--pink); }
.bg-dark     { background-color: var(--brown); }

.light-text   { color: white; }
.caps {text-transform: uppercase;}

.text-featured { color: var(--brown);} 

.left   { text-align: left; }
.center { text-align: center; }
.right  { text-align: right; }

.flex-flip:nth-child(2n){  flex-direction: row-reverse; }


/* General typography & universal styles  */
body { 
    font-family: "nunito-sans", sans-serif;
    font-style: normal;
    color: var(--brown);
}

h1, h2, h3, h4, h5, h6 {
   font-family: "bebas-neue", sans-serif;
    font-weight: normal;
    font-style: normal;
    line-height: 1; 
    margin-bottom: 1rem;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }

p {
    line-height: 1.4; 
    font-size: 1rem;
    margin-bottom: 0.8rem;
}

ul { margin-left: 1rem; }
li { padding-left: .5rem;}

h1:last-child, 
h2:last-child, 
h3:last-child, 
h4:last-child, 
h5:last-child, 
h6:last-child, 
p:last-child {
    margin-bottom: 0;
}

 hr { /* this is a line element */
    border: none;
    border-bottom: 3px solid;
    width: 4rem;
    margin-bottom: 1rem;
    }

.text-sm  { font-size: 1.5rem;  }
.text-md  { font-size: 2rem;  }
.text-lg  { font-size: 3.5rem;  }    
.text-xl  { font-size: 4.5rem; }
.text-xxl { font-size: 8.5rem; }
.text-bold { font-weight: bold; }


a {
    color: inherit;
    text-decoration: none;
} 

.emphasis-button {
  border: 2px solid;
  margin-left: 0.5rem;
}

/* Background Position */
.bg-pos-t {
  background-position: top;
}

.bg-pos-b {
  background-position: bottom;
}

.bg-pos-l {
  background-position: left;
}

.bg-pos-r {
  background-position: right;
}

 /* Unique Typography Styles */

.emphasis {
      font-size: 1.2rem;
    }

    /* Button & Link Styles */


    a:hover {
        color: var(--pink);
    }
    /* We have created lots of different button styles, you probably don't need to have quite this many styles depending on your site */

.btn,
.button,
.button-solid,
.button-inverted {
      text-decoration: none;
      color: var(--brown);
      border: 0.125rem solid;
      padding: 0.6rem 2rem;
      margin-top: 1rem;
      display: inline-block;
      text-transform: uppercase;
      font-size: 0.9rem;
      font-weight: 500;
    }

.btn,
.button {
    border-radius: 999rem;
    letter-spacing: 0.08em;
    font-weight: 700;
}

.btn-pill:hover {
    background: rgba(107, 62, 46, 0.1);
}

    .button-light {
      color: white;
    }

.button:hover {
      color: var(--pink);
    }

.hero {
    padding: 5rem 0 3.5rem;
    text-align: center;
}

.hero h1 {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 2.8rem;
    margin: 0 0 1rem;
    color: var(--ink);
}

.hero p {
    margin: 0.3rem 0;
    font-size: 1.1rem;
}

.hero-home {
    text-align: left;
}

.hero-home .button-row {
    justify-content: flex-start;
    margin-top: 1.5rem;
}

.section {
    padding: 4rem 0;
}

.section-seasonal {
    background: #fff;
}

.section-core {
    background: var(--pink);
}

.section-story {
    background: var(--cream);
}

.section-head {
    margin-bottom: 2.5rem;
}

.section-head h2 {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 1.6rem;
    margin: 0 0 0.6rem;
    color: var(--ink);
}

.section-head p {
    margin: 0;
}

.center {
    text-align: center;
}

    .button.inverted {   /* this is for a button on a dark background */
      border: 0.125rem solid white;
      color: white;
    }

    .button.inverted:hover {
      color: #e67e22;
      border-color: #e67e22;
    }

    .button-solid {
      background-color: #e67e22;
      border-color: #e67e22;
      color: white;
    }

    .button-solid:hover {
      background-color: rgb(60, 60, 60);
      border-color: var(--pink);
    }


/* Header & Footer */

header { 
    padding: 1% 5%;
}

footer {
    padding-bottom: 0.5rem;
    color: rgb(125,120,120);
}

/* Images & Background Images */
.bg-image {
    background-image: url('images/Banner.PNG');
    background-size: cover;
}

.bg-mac {
  background-image: url('/images/Banner.png');
  background-position: center;
  background-size: cover;
}

.bg-stone { background-image: url('/images/stone.png'); }

.bg-leaves { 
    background-image: url('/images/Macaron-Background.jpg');
    background-position: 50% 45%;
}

.bg-venue { 
  background-image: url('/images/PM-Transparent.png'); 
  background-repeat: no-repeat;
  background-size: 30rem;  
  background-position: center;
}



.logo-footer {
    background-image: url(/images/Logo.png);
    background-size: 30%;
    background-repeat: no-repeat;
    background-position: 69% 0%;
}


/* hover styles */

.hover-container {
  background-size: cover;
  background-position: center;
}

.hover-overlay {
  position: relative;
  padding-bottom: 100%;
  color: rgba(255, 255, 255, 0);
  position: relative;
  /* you only need to use relative + absolute if you want to determine the exact aspect ratio of the container */
  transition: all 0.3s;
}

.hover-overlay:hover {
  background-color: rgba(60, 60, 60, 0.7);
  color: white;
}

.hover-inner {
  position: absolute;
  width: 100%;
  top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.hover-inner p {
  margin-bottom: 0;
}

.baseline {
    vertical-align: baseline;
}

              
.banner {
  background-color: rgb(235,235,235);
  background-size: cover;
  background-position: center;
  min-height: 80vh;
}


.am-w {
  position: absolute;
  right: 85%;
  top: -231%;
  max-width: 20%;
  max-height: 20%;
  z-index: 300;
}

/* Cards */
.card {
  background: var(--card);
  border: 0.0625rem solid var(--border);
  padding: 0.875rem; /* 14px */
}

.card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card-body {
    padding: 1.4rem 1.4rem 1.8rem;
}

.card h3 {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin: 0 0 0.6rem;
    font-size: 1rem;
}

.price {
    display: inline-block;
    margin-top: 0.8rem;
    font-weight: 700;
}

.media {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-bottom: 0.0625rem solid var(--border);
}

.media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.media-small {
    aspect-ratio: 1 / 3;
    max-height: 25 rem;
    border: 0.0625rem solid var(--border);
    margin-bottom: 1.4rem;
    overflow: hidden;
}

.media-hero {
    aspect-ratio: 4 / 3;
    border-radius: 1.2rem;
    border: 0.0625rem solid var(--border);
}

.media-portrait {
    aspect-ratio: 3 / 4;

    border: 0.0625rem solid var(--border);
}

.card__img {
  aspect-ratio: 4 / 3; /* try 1 / 1 if you want square */
  overflow: hidden;
  margin-bottom: 0.75rem;
}

.card__img img {
  width: 80%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card__title { margin: 0 0 0.375rem; font-size: 1.125rem; } /* 18px */
.card__desc { margin: 0 0 0.625rem; opacity: 0.85; } /* 10px */
.card__price { margin: 0; font-weight: 800; color: var(--brown); }

/* Menu blocks */
.menu-block {
  border: 0.0625rem solid var(--border);
  padding: 1.125rem; /* 18px */
}

.menu-block {
    background: rgba(255, 247, 243, 0.7);
    padding: 1.6rem;
    height: 100%;
}

.menu-block__title { margin: 0 0 0.375rem; font-size: 1.25rem; } /* 20px */
.menu-block__subtitle { margin: 0 0 1.125rem; opacity: 0.85; } /* 18px */

.menu-item {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.875rem 0; /* 14px */
  border-top: 0.0625rem solid var(--border);
}

.menu-list {
    display: grid;
    gap: 1.1rem;
}

.menu-item {
    display: block;
    border-top: none;
    padding: 0;
}

.menu-item + .menu-item {
    margin-top: 1rem;
}

.menu-item__name,
.menu-item__desc,
.menu-item__price {
    margin: 0;
}

.menu-content h3 {
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin: 0 0 1rem;
    font-size: 1.1rem;
}

.menu-list .item {
    font-weight: 700;
    display: block;
    margin-bottom: 0.35rem;
}

.menu-list .desc {
    font-size: 0.85rem;
    display: block;
}

.menu-item__name { margin: 0; font-weight: 800; }
.menu-item__desc { margin: 0.25rem 0 0; opacity: 0.85; } /* 4px */
.menu-item__price { font-weight: 900; color: var(--brown); white-space: nowrap; }

/* CTA */
.section--cta { background: #fff; border-top: 0.0625rem solid var(--border); }


/* Gallery section */
.section--gallery {
  padding: 2.625rem 0;
}

.gallery-tile {
  display: block;

  overflow: hidden;
  border: 0.0625rem solid rgba(62, 62, 62, 0.12);
  background: #fff;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.gallery-tile img {
  width: 100%;
  height: 8.75rem;
  object-fit: cover;
  display: block;
}

.gallery-item {
    border-radius: 1rem;
    overflow: hidden;
    border: 0.0625rem solid rgba(62, 62, 62, 0.12);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    display: block;
}

.gallery-item:hover {
    transform: translateY(-0.125rem);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.06);
}

.section-gallery .media {
    aspect-ratio: 1 / 1;
    border-bottom: none;
}

.button-row {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.order-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 1.2rem;
}

.order-logo img {
    width: 6.5rem;
    height: 6.5rem;
    object-fit: contain;
}

.site-footer {
    background: var(--cream);
    border-top: 0.0625rem solid var(--border);
    padding: 2.8rem 0;
}

.footer-brand {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.footer-links {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.85rem;
}

.light-text {
    color: #fff;
}

@media (max-width: 48rem) {
    .site-nav {
        justify-content: flex-start;
    }

    .hero {
        padding: 4rem 0 3rem;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-home {
        text-align: center;
    }

    .hero-home .button-row {
        justify-content: center;
    }

    .footer-links {
        justify-content: flex-start;
        margin-top: 1rem;
    }
}

@media (max-width: 34rem) {
    .site-nav {
        flex-direction: column;
        align-items: flex-start;
    }
}

.gallery-tile:hover {
  transform: translateY(-0.125rem);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.06);
}

.gallery-note {
  margin: 0.875rem 0 0;
  opacity: 0.9;
}

.gallery-note a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

              
.inline a {
  display:inline-block;
  padding: 0.5rem;
}

/* Test for menu */
.grid-flip:nth-child(2n) .bg-image {
  order: 2
}

.subtle-button { /* this is the arrow button */
  color: rgb(120,120,125);
  padding: 0.3rem;
  padding-left: 0;
  font-weight: bold;
}
.subtle-button:hover {
  color: rgb(60, 60, 60);
  border-color: rgb(60, 60, 60);
}

.bg-image {
  background-color: rgb(235,235,235);
  background-size: cover;
  background-position: center;
  min-height: 12rem;
}

.bg-yoga {
  background-image:url('/images/wellness-3.jpg');
}

.bg-wellness {
  background-image:url('/images/wellness-4.jpg');
}

/* Contact Form */
input, textarea {
  border-style: solid;
  border: 2px solid rgb(200, 200, 205);
  padding: 0.8em;
  display: block;
  width: 100%;
  font-size: 1rem;
  vertical-align: top;
}

input:focus,
textarea:focus {
  outline: none;
  border: 2px solid #e67e22;
  /* featured color */
}

textarea {
  min-height: 7em;
}

input[type="submit"] {
  width: auto;
  display: block;
}

.email-signup input {
  width: 30%;
  display: inline-block;
  max-width: 250px;
  margin-top:1rem;
}

.email-signup .button-solid {
  padding: 0.8em;
  border-radius: 0;
  font-size: 1rem;
}
form .button {
  width:100%;
}
  @media(max-width:768px) {
   .email-signup input {
     width: 100%;
     max-width: 100%;
   }
 }

 /* Core Meny */
.hero {
  padding: 5rem 0 3.5rem;
  text-align: center;
}

.hero h1 {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 2.8rem;
  margin: 0 0 1rem;
  color: var(--ink);
}

.hero p {
  margin: 0.2rem 0;
  font-size: 1.1rem;
}

.section {
  padding: 4rem 0;
}



.section-head {
  margin-bottom: 2.5rem;
}

.section-head h2 {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 1.6rem;
  margin: 0 0 0.6rem;
  color: var(--ink);
}

.section-head p {
  margin: 0;
}

.center {
  text-align: center;
}

.card {
  border: 0.0625rem solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card-body {
  padding: 1.4rem 1.4rem 1.8rem;
}

.card h3 {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 0 0 0.6rem;
  font-size: 1rem;
}

.price {
  display: inline-block;
  margin-top: 0.8rem;
  font-weight: 700;
}

.media {
  width: 100%;
  aspect-ratio: 3 / 3;
  overflow: hidden;
}

.media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-item {
  display: block;
}

.menu-block {
  padding: 1.6rem;
  height: 100%;
}

.menu-content h3 {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin: 0 0 1rem;
  font-size: 1.1rem;
}

.menu-list {
  display: grid;
  gap: 1.1rem;
}

.menu-list li {
  display: grid;
  gap: 0.35rem;
}

.menu-list .item {
  font-weight: 700;
  display: block;
  margin-bottom: .35rem;
}

.menu-list .desc {
  font-size: 0.95rem;
  display: block;
}
.menu-list .price {
  display: block;
  margin-top: 0.4rem;
}

.stagger-row {
  margin-bottom: 2.5rem;
}

.menu-image {
  border-radius: 1.4rem;
  overflow: hidden;
  border: 0.0625rem solid var(--border);
  height: 100%;
  background: rgba(255, 247, 243, 0.6);
}

.media-large {
  aspect-ratio: 4 / 3;
  border-bottom: none;
}


.gallery-item {
  overflow: hidden;
  transition: transform 0.2s ease;
}

.gallery-item:hover {
  transform: translateY(-0.2rem);
}

.section-gallery .media {
  aspect-ratio: 1 / 1;
  border-bottom: none;
}

.button-row {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.site-footer {
  background: var(--cream);
  border-top: 0.0625rem solid var(--border);
  padding: 2.8rem 0;
}

.footer-brand {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.85rem;
}

@media (max-width: 48rem) {
  .site-nav {
    justify-content: flex-start;
  }

  .hero {
    padding: 4rem 0 3rem;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .footer-links {
    justify-content: flex-start;
    margin-top: 1rem;
  }
}

@media (max-width: 34rem) {
  .site-header .grid-middle {
    gap: 1rem;
  }

  .site-nav {
    flex-direction: column;
    align-items: flex-start;
  }
}


.order-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 1.2rem;
}

.order-logo img {
  width: 6.5rem;
  height: 6.5rem;
  object-fit: contain;
}
