@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body.portal {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background: url("background.png") 0% 0% / cover no-repeat;
  background-position: center;
  align-items: center;
}

nav {
  position: relative;
  top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 100px;
  width: 100%;
  background-color: rgb(237, 26, 59);
  color: white; 
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
}

nav .logo {
  position: relative;
  color: rgb(31, 35, 32);
  font-size: 30px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 1px;
}

/* Navbar links */
.navbar a {
  color: white;
  background: #0000;
  text-decoration: none;
  letter-spacing: 1px;
  font-weight: 500;
  border-radius: 5px;
  transition: 0.3s;
  transition-property: background;
}

.navbar a:not(:last-child){
  margin-right: 12px;
}

/* Navbar links on mouse-over */
.navbar a:hover {
  background-color: rgb(31, 35, 32);
}

/* Current/active navbar link */
.navbar a:active {
  color: rgb(25, 143, 55);
}

label {
  display: none;
}

#check{
  z-index: 3;
  display: none;
}

.logo-img {
  max-width: 100%;
  max-height: 100%;
}

.extra-info {
  text-align: center;
}

.extra-info h3{
  color: rgb(254, 242, 0);
}

.extra-info h4 {
  color: rgb(255, 255, 255);
}

.extra-info h4 span{
  color: rgb(237, 26, 59);
}

body.contact-page{
  align-items: left;
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background: url("background.png") 0% 0% / cover no-repeat;
  background-position: center;
  font-weight: 500;
}

.contact-info {
  text-align: left;
  color: rgb(31, 35, 32);;
  padding-left: 1%;
}

body.tv-guide{
  align-items: center;
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background: url("background.png") 0% 0% / cover no-repeat;
  background-position: center;
  font-weight: 500;
}

.guide {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
  border-radius: 35px;
  padding-top: 10px;
}
.container {
  display: block;
  width: 100%;
}

.col{
  max-width: 95%;
  padding-top: 5%;
}

.col-md-3{
  padding-bottom: 50px;
  text-align: center;
  color: rgb(255, 255, 255);
}

.text span{
  color: rgb(255, 255, 255);
  font-weight: bold;
}

.text {
  color:#000000
}

.text a:link{
  color: #000000;
}

.text a:visited{
  color: #000000;
}

.icon{
  padding-bottom: 10px;
  font-size: 30px;
  color:rgb(254, 242, 0);
}

body.shuttle-page{
  align-items: center;
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background: url("background.png") 0% 0% / cover no-repeat;
}

.shuttle-container{
  display: flex;
  padding: 10px;
}

.card {
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
  max-width: 300px;
  text-align: center;
  font-family: arial;
  margin: 10px;
  background-color: rgb(255, 255, 255);
  transition: 0.3s;
}

.card .title {
  color: grey;
  font-size: 18px;
}

.card:hover {
  box-shadow: 0 8px 16px 0 rgb(254, 242, 0);
}

.shuttle-container button {
  border: none;
  outline: 0;
  display: inline-block;
  padding: 8px;
  color: white;
  background-color: rgb(237, 26, 59);
  text-align: center;
  cursor: pointer;
  width: 100%;
  font-size: 18px;
}

.chips .item{
  text-align: center;
  color:rgb(255, 255, 255);;
}

.drinks .item{
  text-align: center;
  color:rgb(255, 255, 255);;
}

.sweets .item{
  text-align: center;
  color:rgb(255, 255, 255);;
}

.card .title1 {
  color: rgb(237, 26, 59);
  font-size: 18px;
}

.maintitle h1{
  text-align: center;
  color:rgb(0, 0, 0);
}

.maintitle h2{
  text-align: center;
  color:rgb(254, 242, 0);
}


/* Add responsiveness - will automatically display the navbar vertically instead of horizontally on screens less than 960 pixels */
@media screen and (max-width: 1502px) {
  .navbar {
    display: none;
  }

  nav {
    padding: 30px 50px;
    padding-bottom: 50px;
  }

  nav .logo {
    position: absolute;
    font-size: 20px;
  }

  label {
    display: block;
    font-size: 25px;
    cursor: pointer;
    transition: 0.3s;
    transition-property: color;
  }

  label:hover {
    color: #000000;
  }

  label .close-btn {
    display: none;
  }

  #check:checked ~ nav .navbar {
    z-index: 2; 
    position: fixed;
    background: rgb(237, 26, 59);
    top: 0; 
    bottom: 0; 
    left: 0; 
    right: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  #check:checked ~ nav .navbar a {
    font-weight: 700;
    margin-right: 0;
    margin-bottom: 50px;
    letter-spacing: 2px;
  }
 
  #check:checked ~ nav label .menu-btn {
    display: none;
  }

  #check:checked ~ nav label .close-btn {
    z-index: 2;
    display: block;
    position: fixed;
  }

  label .menu-btn {
    position: absolute;
  }

  .guide{
    width:70%;
  }

  .shuttle-container{
    position: relative;
    display: inline-block;
    padding: 10px;
  }
  .shuttle-page h4{
    text-align: center;
  }
}

