*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.container{
    max-width: 1140px;
    margin: 0 auto;
}

/* สีเว็บกรอบบน */
nav{
    padding: 1rem;
    background-color: #333;
}

.nav-con{
    display: flex;
    justify-content: space-between;
}

/* สีร้านพฤกษาบน */
.logo a{
    font-size: 2rem;
    color: #fff;
    text-decoration: none;
}

.menu{
    display: flex;
    list-style: none;
    align-items: center;
}

.menu li{
    margin: 0 1rem;
}

/* สีเมนู */
.menu li a{
    color: #fff;
    text-decoration: none;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

nav ul li {
    display: inline;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    padding: 10px 15px;
    transition: 0.3s;
}

/* สีเมนู hover */
nav ul li a:hover {
    background-color: #1abc9c;
    border-radius: 5px;
}

/* ส่วน "เกี่ยวกับเรา" */
.about-section {
    text-align: center;
    background-color: #b4b4b4;
    padding: 50px 20px;
}

.about-section h1 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.about-section p {
    font-size: 18px;
    color: #555;
}

/* รูปภาพ */
.image-section {
    text-align: center;
    margin-top: 30px;
    color: #2c3e50;
}

.image-section img {
    width: 80%;
    max-width: 300px;
    border-radius: 10px;
}

div.gallery {
    border: 1px solid #ccc;
  }
  
  div.gallery:hover {
    border: 1px solid #777;
  }
  
  div.gallery img {
    width: 100%;
    height: auto;
  }
  
  div.desc {
    padding: 15px;
    text-align: center;
  }
  
  * {
    box-sizing: border-box;
  }
  
  .responsive {
    padding: 0 6px;
    float: left;
    width: 24.99999%;
  }
  
  @media only screen and (max-width: 700px) {
    .responsive {
      width: 49.99999%;
      margin: 6px 0;
    }
  }
  
  @media only screen and (max-width: 500px) {
    .responsive {
      width: 100%;
    }
  }
  
  .clearfix:after {
    content: "";
    display: table;
    clear: both;
  }

/* ส่วนล่าง */
.footer-top{
    margin-top: 2rem;
    padding: 3rem;
    background-color: #3a3a3a;
    color: #fff;
}

.footer-top-con{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 2rem;
}

.footer-top-item-con .date{
    color: #fff;
    padding: 0.5rem 0rem;
    border-radius: 5px;
    margin-right: 10px;
}

.footer-top-item:nth-child(2) h4,
.footer-top-item:nth-child(3) h4{
    margin-bottom: 1rem;
}