ul{list-style: none;} /* 리스트 앞에 . 제거*/
li{list-style: none;}
a{text-decoration: none;} /* 링크에 밑줄 제거*/

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
  }

  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
.grid-container{
  display:grid;
  grid-template-rows:100px 100px;
}

header{
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 125px;
    background-color: #FF94A4;
    z-index: 1000;
    display: flex;
    justify-content: space-between; /* .logo와 #main-navigation 사이에 공간을 분배 */
    align-items: center; /* 수직 가운데 정렬 */
    padding: 0 20px; /* 좌우 여백 추가 */
  }
  
  .logo{
    width: 150px;
    margin-left: 30px;
  }
  
  .content {
    padding-top: 0; /* top 여백 제거 */
    padding-left: 0;
    padding-right: 0;
  }
  .bigimg-container {
      display: flex;
      justify-content: flex-end; 
      width: 100%;
      margin-top:40px;
  }
    
  .bigimg {
      width: 800px;
      margin: 20px;
  }
  
  footer{
    position: relative;
    height: 290px;
    background-color: #FF94A4;
    margin-top: 0 auto;
  }
  
  .sns_container{
      position: absolute;
      right:80px; top:55px;
      width: 120px;
      display: flex; 
      flex-direction:row; 
      justify-content: space-between; 
      align-items: center; 
      gap: 30px;
  }
  
  .sns_container img {
      width: 26px; /* 이미지 크기 조정 */
      height: auto;
      object-fit: contain; /* 이미지 비율 유지 */
  }
  
  .logo2{
      position: absolute;
      width: 90px;
      left: 60px; top:50px;
  }
  
  .text{
      position: absolute;
      font-size: 13px; text-align: left;
      left:60px; top: 120px;
      color: white;
  }
  
  .text2{
      position: absolute;
      font-size: 14.5px; text-align: left;
      left:60px; top: 145px;
      color: white;
  }


   footer{
   height: 290px;
   background-color: #FF94A4;
   }

   #main-navigation {
    display: flex; /* flexbox 적용 */
    justify-content: center; /* 메뉴 항목들을 수평으로 정렬 */
    align-items: center; /* 메뉴 항목들을 수직으로 정렬 */
    height: 100%;
    width: 800px;
    margin-bottom: 10px;
    margin-right:50px;
   }
          
   .outer-menu-item {
   /* 메뉴바 우측정렬 */
    display: flex;
    width: 135px;
    height: 65px;
    align-items: center; 
    justify-content: center;
    margin-top: 15px;
    margin-right: 10px;
    float: right;  
    position: relative;
    color:white;
    font-family: 'EF_hyunydororong', Arial, sans-serif;
    font-size: 20px;
   }      
  
   .outer-menu-item:hover .inner-menu {
    display: block;
   }
  
   .outer-menu-item:hover {
   background: #FFB7C2;
   color: white
   }
  
   .menu-title {
    display: block;
    height: 30px; line-height: 30px;
    text-align: center;
    padding: 5px 20px;
   }
  
   * {
     box-sizing: content-box; /*  설정한 width와 height 값이 곧 요소 내부의 콘텐츠 크기 */
   }
  
  ul {
    list-style-position: inside;
    padding-left: 0;
  }
  
  .inner-menu {
  display: none;
  position: absolute;
  background: #ff4a65;
  color: white;
  z-index: 1200;
  text-align: left;
  left: 0; 
  top: 100%;
  width: 100%;
  margin:0; padding:0;
  }
  
  /* inner-menu-item 기본 스타일 */
  .inner-menu-item > a {
  display: block;
  width: 100%;
  padding: 5px 0;
  height: 40px;
  line-height: 30px;
  text-align: center;
  align-items: center; 
  justify-content: center;
  background-color: #fbeec8;
  color: #FF94A4;
  }
  
  /* inner-menu-item hover 시 스타일 */
  .inner-menu-item > a:hover {
  background:#FF94A4;
  color: white;
  }
  
  .content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: #392A2A;
    }

  .text-container {
    position: relative;
    text-align: center;
  }

  h1{
    font-family:'Ownglyph_meetme-Rg';
    font-size: 37px; font-weight: 100;
    color:white;
    border: solid 1px white; 
    border-radius: 50px;
    padding:15px; padding-left: 40px; padding-right: 40px;
    margin-top: 40px; margin-bottom:20px;
    z-index: 2;
  }

  .angel{
    position: absolute;
    top: 52%;
    left: 50%;
    transform: translate(-50%, -50%); 
    width: 700px;
    height: auto;
    z-index: 1; /
  }

  .box-container {
     display: flex;
     gap: 40px; 
     padding-top: 50px;
  }
    
  .box {
    position: relative; 
     background-color: white;
     width: 380px; 
     height: 500px; 
     border-radius: 20px;
     box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
     overflow: hidden;
     display: flex;
     flex-direction: column;
  }
    
  .food{
     width: 380px;
     height: 300px; 
     z-index: 100;
     object-fit: cover;
     display: block;
     margin-top: 0;
  }

  .text-container2 {
    display: flex;
    flex-direction: column; 
    justify-content: flex-start; 
    padding: 20px;
    padding-left: 30px;
    text-align: left; 
    flex-grow: 1; /* 텍스트 영역이 남은 공간 채우도록 */
  }
  
  .text-container2 h2 {
    font-size: 30px;
    font-family: pretendard;
    color: #4A3737;
    font-weight: 700;
    margin-top: 10px; margin-bottom: 30px;
  }
  
  .text-container2 p {
    font-size: 20px;
    font-family: pretendard;
    font-weight: 500;
    color: #4A3737;
    line-height: 27px;
    margin-bottom: 5px;
  }

/* 화살표 아이콘 */
  .box i{
    position:absolute; 
    bottom: 15px; right: 20px;
    height: 50px;
    width: 50px;
    text-align: center;
    list-style: none; 
    background: white; color:#4A3737;
    line-height: 50px;
    border: solid 1.5px #4A3737;
    border-radius: 50%;
    font-size: 1.5rem ;
    transform: translateY(-50%);
    cursor: pointer;
  }
  
.box i:hover {
  background-color: #FEEFEE;
  border: #FF94A4 solid 2px;
  color: #FF94A4;
  cursor: pointer;
}
