@import url('https://fonts.googleapis.com/css2?family=Lovers+Quarrel&family=Noto+Sans+TC:wght@100..900&family=Righteous&display=swap');

:root {
  --c-body-bg: #e4e4e4;
  --c-body-c: #333;

  --c-gray-c: #ccc;
  --c-gray-9: #999;
  --c-gray-6: #666;

  --c-main-10: #c79c60;
  --c-assist1-10: #282726;
  --c-assist2-10: rgba(103, 35, 122, 1);
  --c-assist3-10: rgba(82, 76, 76, 1);

  --c-pointword: #f00;

  --f-family-lovers: 'Lovers Quarrel', cursive;
  --f-family-righteous: 'Righteous', 'Noto Sans TC', sans-serif;
}


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

body {
  background-color: var(--c-body-bg);
  color: var(--c-body-c);
  font-family: Arial, Helvetica, sans-serif;
}

a {
  text-decoration: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 .5rem;
}


/* header area ======================================= */
header {
  background-color: black;
  color: var(--c-main-10);
  position: fixed;
  z-index: 9;
  width: 100%;
}

header .container {
  text-align: center;
}

header .logo-area {
  padding: min(calc(.5rem + .5vw), 1rem) 0;
  font-size: min(calc(22px + .8vw), 28px);
  font-family: var(--f-family-righteous);
}

header .logo-area img {
  transform: translateY(2px);
}

header nav {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  justify-content: center;
}

header nav a {
  display: block;
  color: white;
  font-size: 14px;
  padding: .7rem .4rem;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}

header nav a:last-child {
  border: none;
}



@media (min-width: 700px) {
  header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
  }

  header nav {
    border: none;
  }

  header nav a {
    border: none;
    font-size: 15px;
    padding: 10px 10px 15px 25px;
    margin-left: 5px;
    transition: .5s;
  }

  header nav a:hover {
    color: var(--c-main-10);
  }

  header nav a.active {
    color: var(--c-main-10);
    background-image: url(./img/logo.png), url(./img/nav-underline.png);
    background-repeat: no-repeat;
    background-position: left top, right bottom;
    background-size: 20px auto, 85% 18px;
  }
}


/* .banner area ====================================== */
.banner {
  background-color: var(--c-assist1-10);
  padding-top: 100px;
  padding-bottom: 120px;
  margin-bottom: 100px;
}

.banner .container {
  position: relative;
  padding-top: 80px;
}

.light-area {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
}

.light-area img {
  max-width: 30%;
  height: auto;
}

@keyframes bannerh1ani {
  0% { transform: scale(0) translateY(-150%); }
}

.banner h1 {
  color: var(--c-main-10);
  text-align: center;
  font-family: var(--f-family-lovers);
  font-size: min(calc(80px + 5vw), 120px);
  font-weight: 400;
  letter-spacing: 2px;
  animation: bannerh1ani 1s cubic-bezier(0.5, 1.88, 1, 1);
}

.banner h2 {
  color: white;
  text-align: center;
  font-family: var(--f-family-righteous);
  font-size: min(calc(24px + 1vw), 40px);
  font-weight: 400;
  letter-spacing: 2px;
}

.banner p {
  color: var(--c-gray-c);
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1rem;
  letter-spacing: 2px;
  line-height: 1.5;
  font-size: 14px;
}

.details-btn {
  text-align: center;
}

.details-btn a {
  background-image: url(./img/tm-brown-button.png);
  width: 196px;
  height: 46px;
  color: var(--c-main-10);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: .5s;
}

.banner-img {
  display: block;
  width: 90%;
  max-width: 900px;
  height: auto;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

@media (min-width: 500px) {
  .banner {
    padding-bottom: 180px;
  }
}

@media(min-width: 700px) {
  .banner {
    padding-top: 80px;
    padding-bottom: 250px;
  }

  .banner .container {
    padding-top: 120px;
  }

  .light-area {
    width: 90%;
    left: 5%;
  }

  .banner p {
    font-size: 16px;
  }

  .details-btn a {
    transition: .5s;
  }

  .details-btn a:hover {
    color: #fff;
  }
}

@media (min-width: 1100px) {
  .banner {
    padding-bottom: 350px;
  }
}


/* main area ====================================== */
main {
  padding-top: 100px;
}

section {
  padding-bottom: 80px;
  position: relative;
}

.title-area {
  display: flex;
  align-items: flex-end;
}

.title-area h2 {
  color: var(--c-main-10);
  white-space: nowrap;
  font-family: var(--f-family-righteous);
  font-size: min(calc(18px + .5vw), 24px);
  font-weight: 400;
}

.title-area h2 img {
  margin-right: .5rem;
  transform: translateY(3px);
}

.title-area hr {
  flex: 1;
  margin-left: 1rem;
  transform: translateY(-10px);
  border-color: var(--c-main-10);
  opacity: .5;
}


/* section.sec1: Best Coffee =================== */
.sec1 article {
  padding: 2rem 3rem;
}

.sec1 article h3 {
  font-family: var(--f-family-righteous);
  font-size: min(calc(18px + .5vw), 24px);
  font-weight: 400;
}

.sec1 article p {
  margin: 0 auto;
  padding: 2rem 0;
  letter-spacing: 2px;
  line-height: 1.5;
  font-size: 14px;
}

.sec1 .s1imgarea {
  background-image: url(./img/shadow.png);
  background-repeat: no-repeat;
  background-position: center bottom;
  padding-bottom: 5px;
  text-align: center;
}

.sec1 .s1imgarea img {
  border-radius: 50%;
  border: 5px solid #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

@media (min-width: 700px) {
  .sec1 article {
    width: 80%;
  }

  .sec1 .s1imgarea {
    position: absolute;
    right: 20px;
    top: 50px;
    width: 163px;
  }
}

/* section.sec2: Popular Items =================== */
.card {
  background-color: #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  width: 300px;
  padding: 7px;
  margin: 30px auto;
  margin-bottom: calc(30px + 3rem);
  text-align: center;
}

.card img {
  border-radius: 5px;
}

.card h3 {
  color: var(--c-gray-9);
  font-size: 2rem;
  font-weight: normal;
  margin-bottom: 10px;
}

.card h3 span {
  font-size: 4rem;
}

.card .circle {
  background-color: var(--c-assist3-10);
  color: var(--c-gray-9);
  border-radius: 50%;
  width: 6rem;
  height: 6rem;
  margin: 0 auto;
  margin-top: -1rem;
  padding: .4rem;
  transform: translateY(3rem);
}

.card .circle div {
  border: 2px solid var(--c-gray-9);
  border-radius: 50%;
  width: 5.2rem;
  height: 5.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
}


@media (min-width: 700px) {
  .sec2 {
    padding-bottom: 0;
  }

  .card-area {
    padding: 2rem 3rem;
    overflow: hidden;
    text-align: center;
  }

  .card {
    margin-right: 40px;
    float: left;
    text-align: center;
    position: relative;
    cursor: default;
  }

  .card .circle {
    cursor: pointer;
    transition: .5s;
    position: relative;
    z-index: 8;
  }

  .card .circle:hover {
    color: #fff;
    font-weight: bold;
  }

  .card::after {
    content: '';
    background-image: url(./img/shadow2.png);
    background-repeat: no-repeat;
    background-size: 100% auto;
    position: absolute;
    left: 0;
    bottom: -20px;
    width: 100%;
    height: 20px;
    opacity: 0;
  }

  .card h3, .card p, .card::after {
    transition: .5s;
  }

  .card:hover h3, .card:hover p {
    color: var(--c-main-10);
  }

  .card:hover::after {
    opacity: 1;
  }

}


/* section.sec3: Today's Special =================== */
.figure-area figure {
  margin: 20px;
  border: 5px solid #fff;
  border-radius: 7px;
  position: relative;
}

.figure-area figcaption {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 0 0 7px 7px;
  color: #fff;
  padding: .5rem;
}

.figure-area figure img {
  /* border: 5px solid #fff; */
  border-radius: 7px;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.figure-area figcaption h3 {
  margin-bottom: 10px;
}

.figure-area figcaption p {
  font-size: 14px;
}


@media (min-width: 700px) {
  .figure-area {
    padding: 2rem 3rem;
    display: flex;
    flex-wrap: wrap;
  }

  .figure-area figure {
    margin: 0;
  }

  .f1 {
    width: 55%;
  }

  .figure-area2 {
    width: 45%;
    padding-left: 30px;
  }

  .figure-area3 {
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
  }

  .figure-area3 figure {
    width: calc(calc(100% - 30px) / 2);
  }
}

/* section.sec4: Daily Menu =================== */
.sec4 .sec4-content {
  padding: 2rem 1rem;
}

.menu-board {
  display: block;
  margin: 0 auto;
}

.sec4 article p {
  margin: 30px 0;
  letter-spacing: 1px;
  line-height: 1.5;
}

.sec4 article p span {
  font-size: 3rem;
  margin-right: -5px;
}

.sec4 article ol {
  color: var(--c-main-10);
  margin-bottom: 30px;
  line-height: 1.5;
  font-size: 1.5rem;
}

.sec4 article li span {
  color: #000;
  font-size: 1rem;
}

@media(min-width:700px) {
  .sec4 .sec4-content {
    padding: 2rem 3rem;
    display: flex;
    align-items: center;
  }

  .sec4 article {
    padding-left: 50px;
  }

  .sec4 article ol {
    margin-left: 2rem;
  }
}


/* footer ====================================== */
footer {
  background-color: var(--c-assist1-10);
  color: #fff;
}

footer .container {
  padding: 1.5rem;
  padding-left: 3rem;
}

footer h3 {
  margin-top: 30px;
  margin-bottom: 10px;
  margin-left: -20px;
}

footer .info1 h3 {
  margin-top: 0;
}

footer nav a {
  display: block;
  color: #fff;
  line-height: 1.8;
  text-decoration: underline;
  letter-spacing: 1px;
}

footer p {
  font-size: 14px;
  letter-spacing: 1px;
  line-height: 1.5;
  margin-bottom: 20px;
}

footer .social-icons-area a {
  display: inline-block;
  background-color: var(--c-gray-6);
  color: #fff;
  margin-right: 5px;
  margin-bottom: 5px;
  border-radius: 5px;
  font-size: 24px;
  padding: 5px;
  width: 34px;
  height: 34px;
  text-align: center;
}


.footer-bottom {
  background-color: #000;
  font-size: 13px;
  letter-spacing: 1px;
  text-align: center;
  padding: 1rem;
}

@media(min-width: 700px) {
  footer .container {
    display: flex;
  }

  footer h3 {
    margin-top: 0;
  }

  footer .info1 {
    flex: 0 0 10rem;
  }

  footer .info2 {
    flex: 1;
    margin-left: 50px;
  }

  footer .info3 {
    flex: 1;
    margin-left: 50px;
  }

  footer nav a {
    transition: .5s;
  }

  footer nav a:hover {
    color: var(--c-main-10);
    font-weight: bold;
    text-decoration: none;
  }

  footer .social-icons-area a {
    transition: .5s;
  }

  footer .social-icons-area a:hover {
    background-color: #fff;
    color: #333;
  }
}