

@font-face {
  font-family: 'Folkard';
  src: url('/fonts/folkard.woff2') format('woff2');
  src: url('/fonts/folkard.woff') format('woff');
  src: url('/fonts/folkard.ttf') format('truetype');
       font-weight: normal; 
  font-style: normal;  
}
@font-face {
  font-family: 'Amarillo'; 
  src: url('/fonts/Amarillo.otf') format('opentype'),
       url('/fonts/Amarillo.ttf') format('truetype');
       font-weight: normal; 
  font-style: normal;  
}

html {
  height: 100%; 
  overflow: hidden;
}

body {
  margin: 0;
  font-family: "Raleway", sans-serif;
  background: linear-gradient(to top, #442216ff, #f4d5caff);
  height: 100vh; 
  display: flex; 
  flex-direction: column; 
  overflow-y: hidden;
  -webkit-tap-highlight-color: transparent;
}

/*header*/
.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 5px;
  z-index: 10; 
  position: relative; 
  width: 100%;
  box-sizing: border-box;
}

.logo-principal img {
  max-height: 70px;
  width: auto;
  margin-left: 10px;
}

/*social media*/
.social-logos .social-icon {
  height: 35px;
  width: 35px;
  display: block;
  transition: transform 0.2s ease-in-out;
  margin-right: 10px;
}

.social-logos .social-icon:hover {
  transform: scale(1.1);
}

.social-logos {
  display: flex;
  gap: 5px;
  align-items: center;
  margin-bottom: 20px;
}

/*main*/
.header-info-container {
  width: 100%; 
  padding: 0 5px 15px 5px; 
  position: relative; 
  z-index: 5;
}
.cafeteria {
  color: #442216ff;
  font-weight: bold;
  margin-right: 10px;
  display: flex;
  flex-direction: column; 
  align-items: center;
  font-size: 14px;
  margin-top: -20px;
  margin-left: 95px;
}

.local img {
  height: 50vh;
  width: 100%;
}
.content-section {
  padding: 20px;
  display: flex; 
  flex-direction: row; 
  align-items: center; 
  justify-content: space-between; 
  width: 100%; 
  max-width: 400px; 
  margin: 0 auto; 
  box-sizing: border-box;
}

.description-box {
  flex-grow: 1; 
  padding-right: 15px;
}

.description-text {
  font-size: 1.25em; 
  font-weight: 500;
  line-height: 1.4; 
  text-align: center; 
  margin: 0;
  color: #f6e0cdff;
  font-family: Folkard;
  font-size: 30px;
  margin-left: 15px;
}
/*botones laterales*/
.buttons-container {
  display: flex;
  flex-direction: column; 
  gap: 15px;
  margin-top: -170px; 
}

.action-button {
  border: none;
  height: 45px;
  font-size: 18px;
  cursor: pointer;
  border-radius: var(--border-radius-small);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); 
  min-width: 120px; 
  border-radius: 25px;
  padding: 15px 5px;
  font-family: Folkard;
  -webkit-tap-highlight-color: transparent;
  display: flex; 
  align-items: center; 
  justify-content: center; 
  flex-direction: column;
}

.primary-button {
  background-color: #643c30cc;
  border: 2px solid #f6e0cdff;
  text-decoration: none;
  color: #f6e0cdff;
}

.secondary-button {
  background-color: #f6e0cdaf; 
  color: #311e18cc;
  border: 2px solid #643c30cc;
  text-decoration: none;
}

.tertiary-button {
  background-color: #b1734ecc; 
  border: 2px solid #f6e0cdff;
  color: #f6e0cdff;
  text-decoration: none;
}

.quaternary-button {
  background-color: #311e18cc;
  border: 2px solid #b1734ecc;
  text-decoration: none;
  color: #f6e0cdff;
}

/* footer*/
.complete-hours {
  list-style-type: none; 
  margin-top: -20px;
  padding-left: 0; 
  text-align: center; 
  margin-bottom: 5px;
  color: #f4d5caff; 
  font-size: 13px;
}

 @media (min-width: 625px) {
 .page-wrapper {
    max-width: 625px; 
    margin-left: auto; 
    margin-right: auto; 
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: linear-gradient(to top, #442216ff, #f4d5caff); 
  }
  
  body {
      background: #442216ff; 
  }

.navbar-container,
.header-info-container,
.main-content-section,
.main-footer {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
  }
  
  .complete-hours li {
    font-size: 20px;
    margin-top: 30px;
  }
}
















