/* Inspiration and design from https://jazzfm.ro/ */


/* Global Variables */
html {
	scroll-behavior: smooth;
  }

header {
    position: relative;
}


/* Brand Colours */

.yellow-bg {
    background-color: #ffcc00;
}
.white-bg {
    background-color: whitesmoke;
    min-height: 100vh
}

.gray-bg {
    background-color: #cdcdcd;
    min-height: 100vh;
}

.red-bg {
    background-color: #c7293c;
    min-height: 100vh
}

.green-bg {
    background-color: #008d44;
    min-height: 100vh;
	display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pasta {
    color:wheat;
}

.tomato {
    color: tomato;
}

.white-ft {
    color:whitesmoke;
}

.isabelline {
    color:#ede7e3;
}

.orange-peel {
    color:#ffa62b;
}


/* Layout Tools */

.price {
    float:right;
}

.container-fluid{
    width: 100%;
    padding-right: 20px;
    padding-left: 20px;
    margin-right: auto;
    margin-left: auto;
}


.center {
    text-align: center;
}

.announcement {
    font-size: 25px;
}

.hero-body {
    /* font-family: 'Fragment Mono', monospace; */
    font-family: "Oswald", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
}

#menu {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.menu-btns {
    display:flex;
    justify-content: space-evenly;
}

.menu-wrapper {
    position: relative;
    min-height: 300px;
    margin-top: 10%;
  }
  
  /* .menu-section {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
  } */

section {
    /* font-family: 'Fragment Mono', monospace; */
    font-family: "Oswald", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
}
.row {
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -20px;
    margin-left: -20px;
}

table {
    display: flex;
    flex-direction: row;
    justify-content: center;
    color:whitesmoke;
}

td {
    padding:0 10px;
}

/* Accordion  */

.accordion {
	margin: auto;
	width: 70%;
    padding: 5px;
}

@media (max-width: 1250px) {
    .accordion {
        margin: auto;
        width: 100%;
        padding: 5px;
    }
  }


.accordion input {
	display: none;
}
.box {
	position: relative;
	background: white;
    /* height: 75px; */
    transition: all .15s ease-in-out;
}
.box::before {
    content: '';
    position: absolute;
    display: block;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    pointer-events: none;
    box-shadow: 0 -1px 0 #e5e5e5,0 0 2px rgba(0,0,0,.12),0 2px 4px rgba(0,0,0,.24);
}
header.box {
	background: #00BCD4;
	z-index: 100;
	cursor: initial;
	box-shadow: 0 -1px 0 #e5e5e5,0 0 2px -2px rgba(0,0,0,.12),0 2px 4px -4px rgba(0,0,0,.24);
}
header .box-title {
	margin: 0;
	font-weight: normal;
	font-size: 16pt;
	color: white;
	cursor: initial;
}
.box-title {
	width: calc(100% - 40px);
	height: 64px;
	/* line-height: 64px; */
	padding: 0 20px;
	display: inline-block;
	cursor: pointer;
	-webkit-touch-callout: none;-webkit-user-select: none;-khtml-user-select: none;-moz-user-select: none;-ms-user-select: none;user-select: none;
}
.box-content {
	width: calc(100% - 40px);
	padding: 30px 10px;
	font-size: 11pt;
	color: rgba(0,0,0,.54);
	display: none;
}
.box-close {
	position: absolute;
	height: 64px;
	width: 100%;
	top: 0;
	left: 0;
	cursor: pointer;
	display: none;
}
input:checked + .box {
	height: auto;
	margin: 16px 0;
    box-shadow: 0 0 6px rgba(0,0,0,.16),0 6px 12px rgba(0,0,0,.32);
}
input:checked + .box .box-title {
	border-bottom: 1px solid rgba(0,0,0,.18);
}
input:checked + .box .box-content,
input:checked + .box .box-close {
	display: inline-block;
}
.arrows section .box-title {
	padding-left: 44px;
	width: calc(100% - 24px);
}
.arrows section .box-title:before {
	position: absolute;
	display: block;
	content: '\203a';
	font-size: 18pt;
	left: 20px;
	top: -2px;
	transition: transform .15s ease-in-out;
	color: rgba(0,0,0,.54);
}
input:checked + section.box .box-title:before {
	transform: rotate(90deg);
}

/* Google map */

.map-container {
    text-align: center;
    margin-top: 60px;
    height: 600px;
}

#map {
    height: 100%;
    width: 100%;
}

/* material symbols */

.material-symbols-outlined {
	font-size: 100px !important;
	margin-bottom: 30px;
	font-variation-settings:
  'FILL' 0,
  'wght' 400,
  'GRAD' 0,
  'opsz' 24
}

.symbol-container {
    position: relative;
}

/* animations */

@keyframes slide-in {
    from {
      transform: translateY(-100%);
    }
    to {
      transform: translateY(0%);
    }
  }

  /* ...and then apply it: */
  .material-symbols-outlined {
    animation: slide-in 1000ms;
  }

  .menu-section {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.5s ease, max-height 0.5s ease;
    pointer-events: none;
  }  

  .menu-section.show {
    opacity: 1;
    max-height: 2000px;
    overflow: visible;
    pointer-events: auto;
  }
  