/*
===============
Fonts
===============
*/
@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:wght@200;400;700&family=Montserrat:wght@200;400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;1,200&display=swap');

@import 'navbar.css';
@import 'main.css';
@import 'popup.css';
/*
===============
Variables
===============
*/
:root {

  --primary-color:  #59595C;
  --secondary-color: #CC9654;
  --tertiary-color: #3C4653;

  --clr-social-color-darker:hsl(205, 72%, 37%);
  --clr-social-color: hsl(205, 78%, 60%);
  --clr-social-color-light: hsl(205, 89%, 70%);

  /* grey used for paragraphs */
  --clr-grey-5:#69696b;
  --clr-grey-6: #747477;
  --clr-grey-7: #a9a9ad;
  --clr-grey-8: #cbcbd3;
  --clr-grey-9:  #e5e5eb;
  --clr-grey-10: hsl(210, 36%, 96%);
  --clr-white: #fff;
  --clr-red-dark: hsl(360, 67%, 44%);
  --clr-red-light: hsl(360, 71%, 66%);
  --clr-green-dark: hsl(125, 67%, 44%);
  --clr-green-light: hsl(125, 71%, 66%);
  --clr-black: #222;
  /* --ff-primary: 'Libre Baskerville', serif; */
  --ff-primary: 'Poppins', sans-serif;
  --ff-secondary: 'Poppins', sans-serif;
  --ff-tertiary: 'Poppins', sans-serif;
  --transition: all 0.3s linear;
  --spacing: 0.1rem;
  --radius: 0.25rem;
  --light-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --dark-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  --max-width: 1170px;
  --fixed-width: 620px;
}
/*
===============
Global Styles
===============
*/
*,
::after,
::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
    font-family: var(--ff-primary);
    background: var(--clr-grey-10);
    color: var(--primary-color);
    line-height: 1.5;
    font-size: 0.875rem;
  }

ul {
list-style-type: none;
}

a {
text-decoration: none;
color: white;
cursor: pointer;
}

h1,
h2,
h3,
h4 {
   
  letter-spacing: var(--spacing);
  text-transform: capitalize;
  line-height: 1.25;
  margin-bottom: 0.75rem;
  font-family: var(--ff-tertiary);
}

h1 {
  font-size: 3rem;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.25rem;
}
h4 {
  font-size: 0.875rem;
  color: var(--primary-color);
}
p {
  margin-bottom: 1.25rem;
  color: var(--clr-grey-5);
}
hr {
  color: white;
}

@media screen and (min-width: 800px) {
    h1 {
      font-size: 4rem;
    }
    h2 {
      font-size: 2.5rem;
    }
    h3 {
      font-size: 1.75rem;
    }
    h4 {
      font-size: 1rem;
    }
    body {
      font-size: 1rem;
    }
    h1,
    h2,
    h3,
    h4 {
      line-height: 1;
    }
  }

  /*
===============
Layouts
===============
*/
  .section {
    padding: 4rem 0;
  }

  .section-center {
    width: 90vw;
    margin: 0 auto;
    max-width: 1170px;
  }
  @media screen and (min-width: 992px) {
    .section-center {
      width: 95vw;
    }
  }
  main {
    /* min-height: 85vh; */
    width: 100%;
    margin: 0 auto; 
    /* display: flex; 
    justify-content: center;
    align-items: center; */
    
  }

/* .flip-memu {
  width: 100vw;
} */


  /*
===============
Container
===============
*/

/* index container */

/* .flipmenu {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90vw;
  height: 100%;
  padding: 70px 0 0 0;
  min-width: 320px;
} */

.dashboard-container {
  margin: 10px auto;
  width: 100vw;
  max-width: 800px;
  padding-left: 10px;
  padding-right: 10px;
}
.title-dashboard h3{
  text-align: center;
  border: 2px solid var(--clr-black);
  border-radius: var(--radius);
}
.box-dashboard {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 1px;
}
.box-dashboard-staff {
  display: grid;
  grid-template-columns: 1fr;
  column-gap: 1px;
}
.box1-dashboard {
  border: 1px solid var(--clr-black);
  height: 50px;
} 
.text1-dashboard {
  border: 1px solid var(--clr-black);
  font-size: smaller;
  text-align: center;
  height: 40px;
  background-color: #024A7A;
  color: white;
} 
.box1-text1-dashboard {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 230%;
  background-color: #024A7A;
  
}
table.cust-list {
  margin-top: 20px;
  border-collapse: collapse;
  table-layout: auto;
  width: 100%;  
}
table.cust-list th {
  background-color: #024A7A;
  color: #fff;
}
table.cust-list th,td {
  border: 1px solid var(--clr-grey-7);
  font-size: 80%;
  padding: 4px;
}
table.cust-list tr:nth-child(even){background-color: #f2f2f2;}
table.cust-list tr:hover {background-color: #ddd;}


  .index-container {
    width: 100%;
    /* margin: 0 auto; */
    min-height: 400px;
    background-image: url("../images/background.jpeg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    box-shadow: 5px 10px 18px var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 150px; 
    margin-left: auto;
    margin-right: auto;
  }

  .page-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 200px; 
    margin-left: auto;
    margin-right: auto;
  }

  .index-container h1 {
    /* font-family: var(--ff-tertiary); */
    margin-top: 20px;
    margin-bottom: 0;
    text-align: center;
    color: #fff;
    font-weight: 400;
    /* text-transform: uppercase; */
    font-size: 200%;
    text-shadow: 2px 2px var(--clr-black);

  }
  .index-container h3 {
    font-family: var(--ff-secondary);
    /* margin: px; */
    text-align: center;
    color: #fff;
    font-weight: 200;
    text-transform: uppercase;
    text-shadow: 2px 2px var(--clr-black);
    font-size: 100%;
  }
  .index-container a {
    font-family: var(--ff-tertiary);
    /* text-transform: uppercase; */
    border-radius: var(--radius);
    transition: var(--transition);
    background: transparent;
    color: var(--clr-white);
    width: 65%;
    border: .7px solid var(--clr-white);
    margin-top: 10px;
    padding: 5px 40px;
    text-align: center;
    cursor: none;
  }
  .enpower {
    /* font-family: var(--ff-secondary); */
    /* margin: px; */
    text-align: center;
    color: #fff;
    /* font-weight: 200; */
    /* text-transform: uppercase; */
    /* text-shadow: 2px 2px var(--clr-black); */
    font-size: 100%;
    margin-top: 10px;
    padding: 5px 40px;
    width: 65%;
    border: .7px solid var(--clr-white);
  }
  @media screen and (min-width: 1400px) {
    .enpower {
        font-size: 120%;
      margin-top: 15px;
      padding: 20px 50px;
      width: 40%;
    }
  }


/* hero container */

  .hero-container {
    width: 100vw;
    min-height: 24vh;
    max-height: 600px;
    /* background-image: url("../images/hero.png"); */
    /* background-repeat: no-repeat;
    background-size: cover;
    background-position: center; */
    box-shadow: 5px 10px 18px var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
  }

.text-col1{
  flex: 1 1 45%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.text-col1 img{
  width: 85%;
  max-height: 400px;
  max-width: 400px;
}
.text-col2{
    flex: 1 1 55%;
  }
.text-col2 h4{
  margin-top: 20px;
  margin-left: 10px;
  padding-top: 10px;
  color: #fff;
  border-top: 2px solid var(--secondary-color);
  width: 6rem;
  font-family: var(--ff-tertiary);
}
.text-col2 p {
  margin-right: 10px;
  font-family: var(--ff-tertiary);
  font-size: x-small;
  text-align: justify;
  padding-left: 10px;
  padding-right: 10px;
  color: #fff;
}

/* hero2 container */
.hero2-container {
  width: 100vw;
  height: 20vh;
  background-image: url("../images/hero4.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  box-shadow: 5px 10px 18px var(--primary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}
.hero2-container a {
  font-family: var(--ff-tertiary);
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
  background: transparent;
  color: var(--clr-white);
  width: 65%;
  border: .8px solid var(--clr-grey-9);
  margin-top: 20px;
  padding: 12px 40px;
  text-align: center;
  cursor: pointer;

}
.hero2-container a:hover {
  background: var(--secondary-color);
  transform: translateY(-3px);
  color: var(--clr-black);
  border: none;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* footer container */
.footer-container {
 
  background-color: #024A7A;
  width: 100%;
   
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    
    margin-left: auto;
    margin-right: auto;

}
.brand-section {
  width: 90%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  margin: 10px auto;
}
.brand-section img {
  width: 14%;
}
.social-section {
    display: flex;
    justify-content: center;
    padding: 20px;
    flex-wrap: wrap;
    flex-direction: row;
}
.social-section a {
  color: white;
  padding: 20px;
  font-size: 170%;
}
.copyright-text {
  margin: 20px;
  font-size: 60%;
  color:rgb(189, 186, 186);
  font-family: var(--ff-tertiary);
  }

  @media screen and (min-width: 1000px) {
    .copyright-text {
      font-size: 80%;
    }
  }


/* menu container */
.menu-container {
  width: 100vw;
  min-height: 50vh;
  box-shadow: 5px 10px 18px var(--primary-color);
  margin-top: 80px;
  padding: 20px;
  font-family: var(--ff-tertiary);
}
.menu-container h2 {
  font-family: var(--ff-primary);
  font-weight: 400;
  margin: 20px auto;
}
.mainmenu-item {
  display: flex;
  flex-wrap: wrap;
  padding: 10px;
  width: 75vw;
  margin: 0 auto;
}
.mainitem-desc {
  flex: 1 1 50%;
  min-width: 15ch;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.mainitem-desc h3 {
  text-transform: uppercase;
  font-size: 100%;
  padding: 18px;
  font-weight: 600;
  border-top: 3px solid var(--secondary-color);
  margin-top: 20px;
}
.mainitem-desc a {
  text-transform: uppercase;
  padding: 10px;
  background-color: var(--tertiary-color);
  border-radius: var(--radius);
  color: #fff;
  font-size: small;
  transition: var(--transition);
}
.mainitem-desc a:hover {
  background: var(--secondary-color);
  transform: translateY(-3px);
  color: var(--clr-black);
  border: none;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.mainitem-pic {
  flex: 1 1 50%;
  min-width: 25ch;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;

}
.mainitem-pic img {
  max-width: 90%;
  border-radius: var(--radius);
}
.menu-item {
  display: grid;
  flex-wrap: wrap;
  grid-template-columns: 1fr;
}
.item-detail {
  display: flex;
  flex-direction: column;
  padding: 20px;
  align-items: center;
  border: .5px solid var(--clr-grey-9) ;
}
.item-detail img {
  max-width: 90%;
  border-radius: var(--radius);
}
.item-name {
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  font-weight: 700;
  margin-top: 10px;
}
.item-desc p {
  text-align: justify;
  font-size: smaller;
}


/* voucher container */
  .voucher-container {
    margin: 0 auto;
    display: grid;
    justify-content: center;
    align-items: center;
    width: 70vw;
    grid-template-columns:  1fr;
    color: #fff;
  }
  .voucher-img img{
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80%;

  }
  .voucher-form form{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 20rem;
    flex-direction: column;
  }
  .voucher-form form input{
    width: 90%;
    border: none;
    outline: none;
    margin-bottom: 20px;
    border-radius: var(--radius);
    background-color: rgb(209, 206, 206);
    box-shadow: none;
  }

  .dailydeals-img {
    margin: 0 auto;
    width: 70vw;
  }
  .dailydeals-img img{
    width: 100%;

  }

  /* contact us and reservation */
  .customer-form form{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    /* height: 20rem; */
    flex-direction: column;
    
  }
  .signup-form {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 80%;
    padding: 10px;
    box-shadow: 5px 10px 18px var(--primary-color);
    background-color: #034A7B;
    margin: 0 auto;
    font-family: var(--ff-secondary);
  }
  .cust-signup-form {
    appearance: none;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 80%;
    min-height:30px;
    padding: 5px;
    /* box-shadow: 5px 10px 18px var(--primary-color); */
   
    margin: 5px auto;
    font-family: var(--ff-secondary);
  }
  .cust-signup-label {
    /* display: flex; */
    /* justify-content:left;  */
    /* align-items:left;
    flex-direction: column; */
    /* width: 90%; */
    /* padding: 10px; */
    width: 80%;
    font-size: 10px;
    /* box-shadow: 5px 10px 18px var(--primary-color); */
    /* margin: 5px auto; */
    text-align: left;
    font-family: var(--ff-secondary);
    
  }

  .signup-form input {
    width: 100%;
    font-size: 14px;
    padding: 14px;
    font-family: var(--ff-secondary);
    margin: 20px auto;
    /* outline-style: none; */
    border: none;
    border-radius: var(--radius);
  }
  .signup-form select {
    width: 100%;
    font-size: 14px;
    padding: 14px;
    border-radius: var(--radius);
    font-family: var(--ff-secondary);
    margin: 20px auto;
  }
  .signup-form textarea {
    width: 100%;
    font-size: 14px;
    padding: 14px;
    border-radius: var(--radius);
    font-family: var(--ff-secondary);
    margin: 20px auto;
  }

/* button */
.button-container {
  margin: 10 auto;
  display: flex;
  align-items: center;
  max-width: 20rem;
}
.button-primary {
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
  background: var(--clr-social-color-darker);
  color: var(--clr-white);
  width: 80%;
  border: none;
  padding: 12px 40px;
  margin: 10 auto;
  cursor: pointer;
}
.button-primary:hover {
  background: blue;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);

}
.button-secondary {
  text-align: center;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
  background: var(--tertiary-color);
  width: 50%;
  border: none;
  padding: 12px 40px;
  margin: 10 auto;
  cursor: pointer;
}
.button-secondary:hover {
  background: var(--clr-grey-5);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);

}

/* Notification */
.notification {
  padding: 15px;
  margin: 10px auto;
  border: 1px solid transparent;
  border-radius: 4px;
  width: 90%;
  }

  .mynotif-is-success{
  background-color:#D1EED8;
  color: green;
  }

  .mynotif-is-danger{
  background-color:#FFD7D6;
  color: red;
  }

  

@media screen and (min-width: 992px) {
  .section-center, .hero-container, .hero2-container, .footer-container {
    width: 90vw;
  }
  .index-container, .menu-container {
    width: 90vw;
  }
  .social-section a {
    font-size: 200%;
  }
  .menu-container {
    margin-top: 100px;
  }
  .mainitem-pic {
    justify-content: flex-start;
  }
  .dailydeals-img {
    width: 50vw;
  }
}
@media screen and (min-width: 600px) {
  .menu-item {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (min-width: 800px) {
  
  .voucher-container {
    grid-template-columns:  1fr 1fr;
  }
  .signup-form {
    width: 50%;
  }
  .menu-item {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .index-container{
    height: 100vh;
  }
  .hero-container {
    height: 95vh;
  }
  .text-col2 h4{
    padding-top: 30px;
    font-size: xx-large;
    width: 12rem;
    margin-left: 40px;
  }
  .text-col2 p {
    font-size: larger;
    padding: 40px;
  }
  .hero2-container {
    height: 50vh;
  }
  .index-container h1 {
    font-size: 400%;
    text-shadow: 2px 5px var(--clr-black);
  }
  .index-container a, .hero2-container a {
    width: 35%;
    font-size: 130%;
  }
  
  
  .mainmenu-item {
    width: 75vw;
  }
}
@media screen and (min-width: 1000px) {
  .menu-item {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

/* typography */
.u-text-center {
  text-align: center;
}
.u-text-upper {
text-transform:uppercase;
}
