/* html version */

/* general */

:root{
    --bg-color: #FFFFFF;
    --outline-color: #617042;
    --title-color: #062A3F;
    --content-color: #000000;
    --content-white-color: #FFFFFF;
    --content-blue-color: #062A3F;
    --content-gold-color: #707041;
    --highlight-color: rgb(0, 38, 80);
  }
  
  @font-face {
      font-family: Times New Roman;
      src: url("font/LiberationSerif-Regular.ttf") format('truetype');
  }
  @font-face {
      font-family: Times New Roman;
      src: url("font/LiberationSerif-Italic.ttf") format('truetype');
      font-style: italic;
  }
  @font-face {
      font-family: Times New Roman;
      src: url("font/LiberationSerif-Bold.ttf") format('truetype');
      font-weight: bold;
  }
  @font-face {
      font-family: Times New Roman;
      src: url("font/LiberationSerif-BoldItalic.ttf") format('truetype');
      font-style: italic;
      font-weight: bold;
  }
  
  @font-face {
      font-family: calibri;
      src: url("font/calibri.ttf") format('truetype');
  }
  
  @font-face {
      font-family: calibri;
      src: url("font/calibrii.ttf") format('truetype');
      font-style: italic;
  }
  
  @font-face {
      font-family: calibri;
      src: url("font/calibrib.ttf") format('truetype');
      font-weight: bold;
  }
  
  @font-face {
      font-family: calibri;
      src: url("font/calibriz.ttf") format('truetype');
      font-weight: bold;
      font-style: italic;
  }
  
  @font-face {
      font-family: Cinzel;
      src: url("font/Cinzel-Regular.ttf");
      font-weight: 400;
  }
  @font-face {
      font-family: Cinzel;
      src: url("font/Cinzel-Medium.ttf");
      font-weight: 500;
  }
  @font-face {
      font-family: Cinzel;
      src: url("font/Cinzel-SemiBold.ttf");
      font-weight: 600;
  }
  @font-face {
      font-family: Cinzel;
      src: url("font/Cinzel-Bold.ttf");
      font-weight: 700;
  }
  @font-face {
      font-family: Cinzel;
      src: url("font/Cinzel-ExtraBold.ttf");
      font-weight: 800;
  }
  @font-face {
      font-family: Cinzel;
      src: url("font/Cinzel-Black.ttf");
      font-weight: 900;
  }
  
  @font-face {
    font-family: Courgette;
    src: url("font/Courgette-Regular.ttf");
  }
  
  @font-face {
    font-family: LXGWWenKai;
    src: url("font/LXGWWenKai-Light.ttf");
    font-weight: 300;
  }
  @font-face {
    font-family: LXGWWenKai;
    src: url("font/LXGWWenKai-Regular.ttf");
    font-weight: 400;
  }
  @font-face {
    font-family: LXGWWenKai;
    src: url("font/LXGWWenKai-Bold.ttf");
    font-weight: 700;
  }
  
  @font-face {
    font-family: SarahScript;
    src: url("font/Sarah Script Regular.ttf");
  }
  
  :lang( en ){
    font-family: calibri;
  }
  
  :lang( zh ){
    font-family: msjh;
  }
  
  * {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  
  html{
    width: 100%;
  }
  
  body{
    max-width: 500px;
    margin: auto;
  
    background-color: #FFFFFF;
    background-color: var( --bg-color );
  
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: 0.015em;
    /* text-align: center; */
    /* text-align: justify; */
    text-align-last: center;
  }
  
  
  h1, h2, h3, h4, h5, h6{
    color: #062A3F;
    color: var( --title-color );
    line-height: 1.2em;
  }
  
  h1{
    font-size: 2.8em;
    margin: 0;
  }
  
  h2{
    font-size: 2em;
    margin: 0;
    margin-bottom: .5em;
  }
  
  h3{
    font-size: 1.6em;
  }
  
  
  :lang( zh ) body{
    font-size: 13px;
    line-height: 1.25;
  }

  :lang( en ) body{
    font-size: 13px;
    line-height: 1.25;
  }
  
  :lang( zh ) main {
    font-size: 1.15em;
  }

  :lang( en ) main {
    font-size: 1.15em;
  }
  
  :lang( zh ) h1{
    font-size: 2.2em;
    margin: 0 0 .5em 0;
  }

  :lang( en ) h1{
    font-size: 2.2em;
    margin: 0 0 .5em 0;
  }
  
  :lang( zh ) h2{
    font-size: 2em;
    margin: 0 0 .5em 0;
  }
  
  :lang( zh ) h3{
    font-size: 1.4em;
    margin: 0 0 .5em 0;
  }

  :lang( zh ) p{
    font-family: 'Microsoft JhengHei', '微軟正黑體', 'Microsoft YaHei', sans-serif;
  }

  :lang( zh ) span{
    font-family: 'Microsoft JhengHei', '微軟正黑體', 'Microsoft YaHei', sans-serif;
  }
  
  p{
    color: #000000;
    color: var( --content-color );
  }
  
  
  /* margin */
  header,
  main > *{
    margin-left: 20px;
    margin-right: 20px;
  }
  
  main > *.no-margin{
    margin-left: 0;
    margin-right: 0;
  }
  
  h1.no-margin,
  h2.no-margin,
  h3.no-margin,
  h4.no-margin,
  h5.no-margin,
  h6.no-margin,
  p.no-margin,
  img.no-margin{
    margin: 0;
  }
  
  
  /*  header  */
  #remark-1{
    margin-bottom: 5px;
  }
  
  #img-ac-logo{
    width: 145px;
    max-width: 25%;
    /* max-width: 40%; */
  }
  
  #img-news-logo{
    width: 260px;
    max-width: 40%;
    -ms-flex-item-align: end;
        align-self: flex-end;
    /* margin-bottom: 20px; */
    margin: auto 0;
  }
  
  section:not( :last-child ){
    margin-bottom: 20px;
  }
  
  section.highlight-section{
    background-color: var(--highlight-color);
    padding: 5px 15px;
  }
  section.highlight-section * {
    color: white;
  }
  
  footer,
  .deco-bar {
    width: 100%;
    height: 35px;
  
    background-image: url("img/pattern_deco-01.jpg");
    background-repeat: repeat;
    background-size: cover;
  }
  
  p.remark{
    font-size: .75em;
    margin: 1em 0 0 0;
  }
  
  img{
    max-width: 100%;
    -ms-flex-negative: 1;
        flex-shrink: 1;
  }
  
  
  
  .mobile-only{
    display: block;
  }
  
  .desktop-only{
    display: none;
  }
  
  .flex-box{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  
  .flex-box > div:not( :last-child ) {
    /* margin-bottom: 10px; */
  }
  
  .flex-box.flex-start,
  .flex-box.flex-start.responsive
  {
    align-items: flex-start;
  }
  
  .flex-box.responsive{
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  
  .flex-box.separate{
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  
  .flex-box.responsive.separate{
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  
  .flex-box.three-item > .item-box {
    flex-basis: 33%;
  }
  
  
  .relative-wrapper{
    position: relative;
  }
  
  .absolute-wrapper{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
  }
  
  .center-flex-wrapper{
    width: 100%;
    height: 100%;
  
    display: -webkit-box;
  
    display: -ms-flexbox;
  
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  
  .text-align-left{
    text-align: left;
    text-align-last: left;
  }
  
  .text-align-center{
    text-align: center;
    text-align-last: center;
  }
  
  .text-align-right{
    text-align: right;
    text-align-last: right;
  }
  
  
  .small-divider {
    width: 65px;
    margin:0;
  }
  
  .big-divider{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
  }
  
  .big-divider img{
    width: 20px;
    height: 20px;
  }
  .big-divider hr{
    border-width: 1px;
    border-color: #617042;
    border-color: var( --outline-color );
    width: auto;
    min-width: 20px;
    flex-grow: 1;
  }
  
  .big-divider h2{
    font-family: "Times New Roman";
    font-weight: normal;
    text-transform: uppercase;
    line-height: 1.2;
    margin: 0 10px;
    flex-shrink: 1;
    /* width: min-content; */
  }
  
  :lang( zh ) .big-divider h2{
    font-weight: bold;
    padding: 0 20px;
  }
  
  
  .big-divider-white{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
  }
  
  .big-divider-white img{
    width: 12px;
    height: 12px;
  }
  
  .big-divider-white hr{
    border: none;
    background: white;
    height: 2px;
    width: auto;
    min-width: 50px;
    flex-grow: 1;
  }
  
  .big-divider-white p{
    color: white;
    font-weight: bold;
    line-height: 1em;
    font-size: 1.2em;
    margin: 0 30px;
    flex-shrink: 1;
  }
  
  
  :lang( zh ) .big-divider h2{
    width: auto;
  }
  
  .border-box {
    border: 1px solid var( --highlight-color );
    text-align: center;
    text-align-last: center;
  }
  
  @media( min-width: 800px ){
    body{
      max-width: 800px;
      /* text-align: left; */
      /* text-align: justify; */
      text-align-last: auto;
    }
  
  
    header,
    main > * {
      margin-left: 45px;
      margin-right: 45px;
    }
  
    h1{
      font-size: 2.8em;
      margin: 0;
    }
  
    h2{
      font-size: 2.15em;
      margin: 1em 0;
    }
  
    h3{
      font-size: 1.6em;
    }
  
  
    :lang( zh ) body{
      /* font-size: 13px; */
      line-height: 1.25;
    }
  
    :lang( zh ) h1{
      font-size: 2.2em;
      margin: 0 0 .5em 0;
    }
  
    :lang( zh ) h2{
      /* font-size: 1.6em; */
      font-size: 2.35em;
      margin: 0 0 .5em 0;
    }
  
    :lang( zh ) h3{
      font-size: 1.4em;
      margin: 0 0 .5em 0;
    }
  
    .mobile-only{
      display: none;
    }
  
    .desktop-only{
      display: block;
    }
  
    .flex-box > div:not( :last-child ) {
      /* margin-right: 20px;
      margin-bottom: unset; */
    }
  
    .flex-box.responsive{
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
    }
  
    .flex-box.responsive.separate{
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row;
    }
  
    .flex-box > .text-box {
      width: 100%;
    }
  
    .flex-box > .text-box:first-child {
      padding-right: 25px;
    }
    .flex-box > .text-box:last-child {
      padding-left: 25px;
    }
  
    .flex-box > .text-box h2 {
      margin-top: 0;
      margin-bottom: .5em;
    }
  
    .flex-box > .img-box{
      flex-shrink: .7;
    }
  
    footer{
      height: 60px;
    }
  
  
  }

  
/* custom */
:root {
    --frame-color: #062A3F;
    --text-highlight-color: #042A3F;
    --contact-us-bg-color: #FFFBF0;
}

body {
    border: var( --frame-color ) solid;
    border-width: 0 6px;
    text-align: center;
    text-align-last: auto;
  
    padding: 0;
    letter-spacing: 0.012em;
}

main > * {
    margin-left: 15px;
    margin-right: 15px;
}


header {
    margin: 0;
}

header #remark-1 {
    background-color: var(--frame-color);
    padding: 1em 0;
    margin-bottom: 0;
}

header #remark-1 .remark{
    margin: 0;
    color: var( --content-white-color );
}

header #remark-1 .remark a {
    color: var( --content-white-color );
}

.gold-text{
  color:var(--content-gold-color);
  font-family:"SarahScript";
}

.flex-align-end{
  align-items: flex-end!important;
}

.space-wrap{
  white-space: pre-line;
}

.blue-text{
  color:var(--content-blue-color);
}

.bold{
  font-weight: 600;
}

.margin-0{
  margin: 0;
}

.flex{
  display: flex;
}

.mobile-column{
  flex-direction: column;
}

#section-0 {
    /* background-image: url("img/leaflet_design_resources(Nov 2023)-03.png"); */
    background-size: cover;
    background-position: center;
    
    width: 100%;
    /* aspect-ratio: 760/518; */
    padding-bottom: 20px;
    margin-bottom: 30px;
}


#section-0 .flex-box {
    /* padding: 20px 15px; */
    justify-content: flex-start;
    align-content: center;
    padding-bottom: 0;
    border-bottom: 1px solid var(--frame-color);
    position: relative;
    flex-direction: row;
}

#section-0 .flex-box .title-year{
  position: absolute;
  right: 0;
  bottom: -20px;
  background-color: white;
  font-size: 2.9em;
  letter-spacing: 8px;
  padding:0 5px 0 10px
}

#section-0 #img-logo {
    max-width: 100px;
    background-color: var(--frame-color);
    padding: 0;
    
}

#section-0 h1 {
  font-family: Cinzel !important;
  font-weight: 600;
  font-size: min(6vw, 2.4em);
  
  color: var( --content-blue-color );
  margin:auto;
}

#section-0 p {
    padding: 0 20px;
    
    color: var( --content-blue-color );
    font-weight: 600;
}


:lang(zh) #section-0 p {
    font-weight: 500;
    font-size: 15px;
}


#section-1 {
  margin-bottom:40px;
}


#section-1 .title{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: auto;
  margin-bottom:20px
}

#section-1 .title .deco{
  flex:2;
  justify-content: center;
  align-items: center;
}

#section-1 .title .deco .square{
  flex:1;
}

#section-1 .title .deco .line{
  flex:5;
}

#section-1 .title .deco img{
  width: 100%;
  margin: auto;
  display: block;
  position: relative;
}

#section-1 .title h1{
  font-family: Cinzel !important;
  font-size: 2em;
  font-weight: 600;
  margin: 0;
  padding: 0 25px;
}

#section-1 .cover{
  margin-bottom:20px;
}

#section-1 .text-box{
  flex:5;
}

#section-1 .img-box{
  flex:5;
  margin-top:20px;
}

#section-1 .img-box img {
    /* max-width: 300px; */
    width: 100%;
}

.hyphens{
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
}

#section-2 {
  margin: 0;
  background-image: url("img/leaflet_design_resources(Mar 2025)-04.jpg");
  background-size: contain;
  aspect-ratio: 760/744;
  padding: 30px 90px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
}



#section-2 h1{
  font-family: Cinzel !important;
  font-size: 2em;
  font-weight: 600;
}

#section-2 p{
  text-align: center;
  letter-spacing: 0;
  line-height: 1.1;
}

.hreverse{
  -moz-transform: scaleX(-1);
  -o-transform: scaleX(-1);
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
  filter: FlipH;
  -ms-filter: "FlipH";
}

#section-3{
  margin:0;
  display: block;
  position: relative;
  margin-bottom:60px;
}
#section-3 h1{
  font-family: Cinzel !important;
  font-size: 2em;
  font-weight: 600;
  margin-bottom:0px;
}
#section-3 h2{
  margin: 0;
  font-weight: 400;
  font-size: 2.5em;
}
#section-3 .img-deco{
  display: flex;
  margin-left: 8px;
  margin-right: 8px;
  justify-content: space-between;
  margin-bottom: 8px;
}
#section-3 .img-deco img {
  width: 30%;
}

#section-3 .menu{
  margin-left: 15px;
  margin-right: 15px;
  width: calc( 100% - 30px);
  margin-bottom: 5px;
}

#section-3 .chef{
  display: flex;
  justify-content: center;

  gap:50px;
  margin-bottom:30px;
}

#section-3 .chef img{
  width: 35%;

}

#section-3 .desc{
  text-align: center;
  margin-left: 15px;
  margin-right: 15px;
  font-size: 16px;
  margin-bottom: 40px;
}

#section-3 .dish{
  display: flex;
  justify-content: center;

  gap:10px;
  margin-bottom:30px;
}

#section-3 .dish img{
  width: 45%;

}

#section-4{
  display: flex;
  gap: 30px;
  /* margin: 12.5%; */
  flex-direction: column;
}

#section-4 .img{
  flex:1;
  
}

#section-4 .img img{
  width: 70%;
}

#section-4 .content{
  flex:2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#section-4 .content h1{
  font-family: Cinzel !important;
  font-size: 2.2em;
  font-weight: 600;
  margin: 0 10%;
  margin-bottom:0px;
}

#section-4 .content p{
  font-size: 16px;
  margin-left:2.5%;
  margin-right:2.5%;
}

#section-5{
  margin:0;
}

#section-5 .title{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: auto;
  margin-bottom:20px;
  background-color:var(--frame-color);
  padding:20px 15px;
}

#section-5 .title .deco{
  flex:1;
  justify-content: center;
  align-items: center;
}

#section-5 .title .deco .square{
  flex:1;
}

#section-5 .title .deco .line{
  flex:3;
}

#section-5 .title .deco img{
  width: 100%;
  margin: auto;
  display: block;
  position: relative;
}

#section-5 .title h1{
  font-family: Cinzel !important;
  font-size: 2em;
  font-weight: 600;
  margin: 0;
  padding: 0 25px;
  color:white;
  flex:7;
  text-align: center;
  letter-spacing: 1px;
}

#section-5 .content{
  margin: auto 15px;
}

#section-5 .content .row{
  display:flex;
  gap:20px;
  justify-content: center;
  align-items: center;
  margin-bottom:20px;
}

#section-5 .content .row:nth-child(even){
  flex-direction: row-reverse;
}

#section-5 .content .row .img{
  flex:1

}

#section-5 .content .row .img img{
  width:100%;
  
}

#section-5 .content .row .desc{
  flex:1
}

#section-5 .content .row .desc h2{
  font-weight: 100;
  letter-spacing: 2px;
  font-size: 2.5em;
  text-align:left;
}

#section-5 .content .row .desc p{
  text-align:left;
}

#section-6{
  margin-left: 20px;
  margin-right: 20px;
}

#section-6 .flex{
  gap:8px;
}

#section-6 h1{
  font-family: Cinzel !important;
  font-size: 2em;
  font-weight: 600;
  margin: 0;
  padding: 0 25px;
  text-align: center;
}

#section-6 p{
  text-align: center;
  margin-bottom:30px;
}

#section-6 img{
  width: 100%;
}

#section-7{
  margin-left: 35px;
  margin-right: 35px;
}

#section-7 .flex{
  gap:8px;
}

#section-7 h1{
  font-family: Cinzel !important;
  font-size: 2em;
  font-weight: 600;
  margin: 0;
  padding: 0 25px;
  text-align: center;
}

#section-7 p{
  text-align: center;
  margin: 0 ;
  margin-bottom:30px;
}

#section-7 img{
  width: 100%;
}

#section-8{
  background-image: url("img/leaflet_design_resources(Mar 2025)-23.jpg");
  aspect-ratio: 692/228;
  display: flex;
  justify-content: center;
  align-items: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  margin: 30px 30px;
  margin-bottom: 50px;
}

#section-8 p{
  font-size: 14px;
  text-align: center;
  padding: 10px 20px;
}

#section-8 span{
  font-size: 15px;
}

#section-9{
  background-image: url("img/leaflet_design_resources(Mar 2025)-25.jpg");
  aspect-ratio: 760/394;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-size: contain;
  /* background-repeat: no-repeat; */
  margin:0;
  padding:0 60px;
}

#section-9 h1{
  font-family: Cinzel !important;
  font-size: 2em;
  font-weight: 600;
  margin: 0;
  padding: 0 25px;
  text-align: center;
}

#section-9 p{
  font-size: 14px;
  text-align: center;
}

#section-9 span{
  font-size: 15px;
}

#footer {
    background-color: var(--frame-color);
    
    margin: 0;
    /* padding: 1em; */
    padding-bottom: 6px;
}

#footer p {
    color: var( --content-blue-color );
    
    margin: 0;
    font-weight: bold;
    font-size: .95em;
    text-align: center;
}



@media( min-width: 800px ){
    body {
        border-width: 0 12px;
        text-align: left;
    }

    
    main > * {
        margin-left: 20px;
        margin-right: 20px;
    }

    .mobile-column{
      flex-direction: row;
    }

    #section-0 {
        /* background-image: url("img/leaflet_design_resources(Nov 2023)-02.png"); */
        /* aspect-ratio: 1212/538; */
        margin-bottom: 15px;
    }

    #section-0 #img-logo {
        max-width: 140px;
        padding: 0 5px;
    }

    #section-0 h1 {
        font-size: 54px;
        /* margin-left: 18px; */
        /* margin-top: 12px; */
        margin:auto 0 auto 18px;
    }

    #section-0 .flex-box{
      border-bottom: 2px solid var(--frame-color);
    }

    #section-0 .flex-box .title-year{
      position: absolute;
      right: 0;
      bottom: -25px;
      background-color: white;
      font-size: 50px;
      letter-spacing: 8px;
      padding:0 15px 0 25px
    }

    #section-0 p {
        padding-right: 80px;
    }

    #section-1 {
      margin-left: 30px;
      margin-right: 30px;
      margin-bottom:20px;
    }


    #section-1 .title{
      display: flex;
      justify-content: center;
      align-items: center;
      width: 80%;
      margin: auto;
      margin-bottom:20px
    }
    
    #section-1 .title .deco{
      flex:2;
      justify-content: center;
      align-items: center;
    }
    
    #section-1 .title .deco .square{
      flex:1;
    }
    
    #section-1 .title .deco .line{
      flex:8;
    }
    
    #section-1 .title .deco img{
      width: 100%;
      margin: auto;
      display: block;
      position: relative;
    }
    
    #section-1 .title h1{
      font-family: Cinzel !important;
      font-size: 2.4em;
      font-weight: 600;
      margin: 0;
      padding: 0 25px;
    }

    #section-1 .cover{
      margin-bottom:30px;
    }

    #section-1 .text-box {
        /* padding-left: 18px; */
    }

    #section-1 .text-box > p {
        font-size: 16px;
        /* line-height: 1.1; */
        text-align: justify;
    }

    #section-1 .img-box{
      margin-top:0;
    }

    #section-1 .img-box img {
        /* max-width: 215px; */
    }

    #section-2 {
      margin: 0;
      background-image: url("img/leaflet_design_resources(Mar 2025)-03.jpg");
      background-size: contain;
      aspect-ratio: 1212/682;
      padding: 30px 140px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      margin-bottom: 60px;
    }

    #section-2 h1{
      font-family: Cinzel !important;
      font-size: 2.4em;
      font-weight: 600;
    }

    #section-2 p{
      font-size: 16px;
    }

    #section-3 h1{
      font-family: Cinzel !important;
      font-size: 2.4em;
      font-weight: 600;
      text-align: center;
      margin-bottom:0px;
    }

    #section-3 h2{
      text-align: center;
      margin-bottom: 20px;
    }

    #section-3 .img-deco{
      position: absolute;
      width: calc(100% - 60px);
      left: 0;
      right:0;
      margin:auto;
      top:0
    }
    #section-3 .img-deco img{
      width: 23%;
    }
    #section-3 .menu{
      margin-left: 80px;
      margin-right: 80px;
      width: calc( 100% - 160px);
    }

    #section-3 .chef{
      gap:80px;
    }

    #section-3 .chef img{
      width: 27%;
    
    }

    #section-3 .desc{
      text-align: center;
      margin-left: 30px;
      margin-right: 30px;
    }

    #section-3 .dish{
      display: flex;
      justify-content: center;
    
      gap:15px;
      margin-bottom:30px;
    }
    
    #section-3 .dish img{
      width: 35%;
    
    }

    #section-4{
      display: flex;
      gap: 30px;
      margin: 30px;
      flex-direction: row;
    }

    #section-4 .img img{
      width: 100%;
    }

    #section-4 .content h1{
      font-family: Cinzel !important;
      font-size: 2.4em;
      font-weight: 600;
      text-align: left;
      margin-bottom:0px;
      margin: 0;
    }

    #section-4 .content p{
      font-size: 15px;
      margin-left:0;
      margin-right:0;
    }

    #section-5{
      margin-bottom: 40px;
    }

    #section-5 .title{
      display: flex;
      justify-content: center;
      align-items: center;
      width: 100%;
      margin: auto;
      margin-bottom:20px;
      background-color:var(--frame-color);
      padding:20px 30px;
    }
    
    #section-5 .title .deco{
      flex:2;
      justify-content: center;
      align-items: center;
    }
    
    #section-5 .title .deco .square{
      flex:1;
    }
    
    #section-5 .title .deco .line{
      flex:10;
    }
    
    #section-5 .title .deco img{
      width: 100%;
      margin: auto;
      display: block;
      position: relative;
    }
    
    #section-5 .title h1{
      font-family: Cinzel !important;
      font-size: 2em;
      font-weight: 600;
      margin: 0;
      padding: 0 25px;
      color:white;
      flex:7;
      text-align: center;
      letter-spacing: 6px;
    }
    
    #section-5 .content{
      margin: auto 30px;
    }
    
    #section-5 .content .row{
      display:flex;
      gap:30px;
      justify-content: center;
      align-items: center;
      margin-bottom:10px
    }
    
    #section-5 .content .row:nth-child(even){
      flex-direction: row-reverse;
    }
    
    #section-5 .content .row .img{
      flex:1
    
    }
    
    #section-5 .content .row .img img{
      width:100%;
      
    }
    
    #section-5 .content .row .desc{
      flex:1.6
    }
    
    #section-5 .content .row .desc h2{
      font-weight: 100;
      letter-spacing: 2px;
      font-size: 2em
    }

    #section-6{
      margin-left: 30px;
      margin-right: 30px;
      
    }

    #section-6 .flex{
      gap:15px;
    }

    #section-7{
      margin-left: 30px;
      margin-right: 30px;
      
    }

    #section-7 .flex{
      gap:10px;
    }
    
    #section-8{
      background-image: url("img/leaflet_design_resources(Mar 2025)-22.jpg");
      aspect-ratio: 1124/193;
      margin-left: 30px;
      margin-right: 30px;
      
    }

    #section-9{
      background-image: url("img/leaflet_design_resources(Mar 2025)-24.jpg");
      aspect-ratio: 1211/304;
      padding:0 100px;
    }
}