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

@font-face {
 font-family: 'Playfair Display';
 src: url('fonts/PlayfairDisplay-Regular.ttf') format('truetype');
 font-weight: normal;
 font-style: normal;
}

/* Hero Page */
.heropage{
  font-family: 'Playfair Display', serif;
  background-image: url("lumiere.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
  position: relative;
  color: #3e2f24;
}


  
.heropage::before {        /* tint */
 content: "";
 position: absolute;
 top: 0;
 left: 0;
 height: 100%;
 width: 100%;
 background-color: rgba(255, 244, 229, 0.4); /* beige-orange */
 mix-blend-mode: multiply;
 z-index: 0;
}



/* Navigation Menu */
  .heropage .nav {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: rgba(108, 47, 11, 0.95);
  font-family: 'Playfair Display', sans-serif;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 3rem;
  z-index: 1;
  }

  .heropage .list-left, .list-right {
    display: flex;
    list-style: none;
    gap: 2rem;
  }

  .heropage .list-left li a,
  .list-right li a {
    text-decoration: none;
    color: #fefefe;
    font-size: 1.1rem;
    transition: all 0.3s ease;
  }

  .heropage .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff9f2;
  }

  .heropage .list-left li a:hover:not(.logo),
  .list-right li a:hover {
    transform: scale(1.1);
    color: #ffe3ba;
  }



/* Content */
 .heropage .hero{
  margin-top: 50px;
  padding: 2rem;
  display: flex;
  justify-content: right;
  align-items: center;
  position: relative;
  z-index:0;
  }

 .heropage .image {
  position:relative;
  float:right;
  width: 60%;
  max-width: 500px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
 }




/* Best Sellers */
 /* page */
  .bspage {
    background-color: #e8d8c3;
    background-size: cover;
    text-align:center;
    padding-bottom:1rem;
  }  
  .bspage h2{
    font-family: "Xanh Mono", monospace;
    font-size:3.1rem;
    padding-top:4.5rem;

  }

  .bspage h2 .w1{
    color:#b08263;
  }

  .bspage h2 .w2{
    color:#864618;
  }

  .bspage h3 {
    color:#dbb265ee;
    font-size:1.8rem;
    font-family:"Handlee", cursive;
    margin: 1rem;
  }

 /* Item Cards */
  .bsgrid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 2.2rem;
    max-width: 1240px;
    margin: 5rem auto 3rem auto;
    padding: 0 2rem;
  }

  .itemcard {
    background-color: #ffffff;
    border-radius: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    width: 100%;
    position: relative;
  }

  .itemcard:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  }

  .itemcard img {
    border-radius: 10px;
    width: 100%;
    height: 250px;
    display: block; 
    object-fit: cover;
    padding:5px 8px;
  }

  .itemcard h3{
    color:#e4c282ee;
    font-size:1.7rem;
    font-family:"Handlee", cursive;
    margin: 2rem 1rem 1rem 1rem;
  }

  .itemcard .cake{
    font-size:1.5rem;
    margin: 2rem 0.8rem 0.8rem 1.5rem;
  }

  .itemcard p {
    font-size: 0.95rem;
    padding: 1rem;
    font-family: "Open Sans", serif;
    color:#7a6c5d
  }

 /* Category Badges */
    .badge {
      position: absolute;
      top: 12px;
      left: 12px;
      padding: 4px 10px;
      font-size: 0.75rem;
      color: white;
      border-radius: 999px;
      font-family: 'Playfair Display', serif;
    }

    .badge.tea {
      background-color: #6e9e70;
    }

    .badge.coffee {
      background-color: #a67b5b;
    }

    .badge.dessert {
      background-color: #c97f7f;
    }


/* Why-Us Section */
  .why-us {
    background-color: #d9a066;
    min-height: 100vh;
    padding-top: 4.5rem;
  }

  .why-us h2 {
    font-family: "Playfair Display", serif;
    font-size: 3.2rem;
    color: aliceblue;
    margin-bottom: 1rem;
    text-align: center;
  }

  .why-us h3 {
    font-family: "Handlee", cursive;
    font-size: 1.9rem;
    color: aliceblue;
    margin-bottom: 8rem;
    text-align: center;
  }

  .why-us .points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 4rem;
    max-width: 1300px;
    margin: 0 auto; 
    /* padding: 0 1rem; */
  }

  .why-us .point {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .why-us .point h3 {
    color: #4e342e;
    margin-bottom: 1rem;
  }

  .why-us .point p {
    color: #FFF8E7;
    font-size: 1.3rem;
    font-family: "Quicksand";
  }

/* Footer */
  .footer{
    min-height: 45vh;
    background-color: #3e2c27;
    font-family: 'Segoe UI', sans-serif;
    color: #f1e7d7;
    padding:40px 20px 0 20px;
  }

  .footer h3{
  margin-bottom: 10px;
  font-size: 1.3rem;
  color: #ffe3b3;
  font-weight: bold;
  }

  .footer .containers{
    display: flex;
    flex-direction: row;
    max-width: 1400px;
    gap:10rem;
    margin:auto;
  }

  .footer .containers2{
    display: flex;
    flex-direction: row;
    gap:5rem;
    margin:auto;
  }

  .logo{
    font-size: 1rem;
    border-right: 3px solid #6b4c43;
    align-items: center;
    max-width: 300px;
  }

  .logo p{
    padding-left: 10px;
  }

  .logo-img{
    max-width: 300px;
    border-right: 2px solid #6b4c43;
  }

  .hours,
  .logo,
  .contact,
  .order,
  .socials{
    flex: 1 1 20px;
  }

  .footer ul {
  list-style: none;
  padding: 0;
  }

  .footer ul li{
    font-size: 1rem;
    text-decoration: none;
  }
  
  .footer ul a,
  .more a{
    color:#f1e7d7;
    font-family: sans-serif;
    transition: color 0.3s;
    text-decoration: none;
  }

  .footer ul a:hover,
  .more a:hover{
    color:#f2cf94;
  }

  .more{
    padding: 50px auto;
    margin:50px 50px 30px 50px;
    
  }

  .more .item:not(:first-child)::before{
    content:"|";
    color: #f1e7d7;
    margin:0 8px;
  }

  .more a{
    font-family: "Inconsolata", monospace;
    letter-spacing: 3px;
    font-size: 1.2rem;
  }
  


  .bottom{
    text-align: center;
    border-top: 1px solid #6b4c43;
    padding:15px;
    margin-top: 30px;
    font-size: 1rem;
    letter-spacing: 3px;
    color: #d6bda7;
  }



