/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BASE */
body {
  font-family: 'Roboto', sans-serif;
  color: #111;
  line-height: 1.5;
}

a {
  text-decoration: none;
  color: inherit;
}

h2 {
  font-weight: 300;
}

/* HEADER */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  position: absolute;
  width: 100%;
  z-index: 10;
  background-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.75),
    rgba(0, 0, 0, 0.5)
  );
}

.logo img {
  width: 75%;
}

nav a {
  font-weight: 100;
  margin-left: 45px;
  font-size: 1.5rem;
  color: white;
  white-space: nowrap;
}

nav a:hover {
  opacity: 0.6;
}

.active {
  color: #2682d6;
}

.width-100 {
  width: 100% !important;
}

.header {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: top;
  display: block;
}

/* HERO */
.hero {
  position: relative;
  height: 80vh;
  overflow: hidden;
}

.hero video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

#what-we-offer {
  padding: 60px 0;
  background: #00539e;
}

.what-we-offer {
  position: relative;
  margin: 0 50px;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
}

/* BUTTON */
.btn {
  margin-top: 40px;
  padding: 12px 28px;
  border: 1px solid white;
  background: transparent;
  font-weight: 700;
  color: white;
  transition: 0.3s;
}

.btn:hover {
  background: white;
  color: #00539e;
}

.btn-blue {
  display: block;
  margin: 40px 0;
  padding: 12px 28px;
  border: 1px solid #2682d6;
  font-weight: 700;
  color: #2682d6;
  transition: 0.3s;
}

.btn-blue:before {
  content: '⤓';
  position: relative;
  left: -10px;
}

.btn-blue:hover {
  color: #00539e;
}

/* ABOUT US */
.about-us, .policy-statements {
  color: #666;
}

.headline {
  font-size: 2.5em;
  color: #00539e;
}

.about-us p {
  margin-top: 25px;
}

.about-us .box img {
  border: 6px solid white;
  box-shadow: 0 0 4px #666;
}

.box img, .box-img img {
  object-fit: cover;
  width: stretch;
  height: stretch;
  display: block;
}

.story {
  background: #c3e0fa;
  color: #666;
}

.story h2 {
  margin-bottom: 45px;
  color: #00539e;
}

.story img {
  width: 250px;
  float: right;
}

.story p {
  margin-bottom: 25px;
  column-count: 2;
}

.catering, .design-and-procurement {
  background: #c3e0fa;
  color: #666;
}

.management {
  color: #666;
}

.management li {
  margin-bottom: 10px;
}

.management .box {
  overflow: auto;
}

.management .accordion .hide-mobile {
  border: 6px solid white;
  box-shadow: 0 0 4px #666;
}

.catering h1, .catering h2, .management h1, .management h2, .design-and-procurement h1, .design-and-procurement h2 {
  text-align: center;
}

.catering ul {
/*column-count: 2;*/
}

.box {
  align-self: center;
}

.box-img {
/*grid-column: span 2;*/
  height: 275px;
  overflow: hidden;
  display: flex;
  align-items: center;
  border: 6px solid white;
  box-shadow: 0 0 4px #666;
}

.box-shadow {
  box-shadow: 0 0 4px #666;
}

.about-us .box-img {
  height: auto;
}

.design-and-procurement .box-img {
  height: 300px;
}

summary {
  margin: 0 auto 25px auto;
  padding: 15px;
  max-width: 400px;
  text-align: center;
  font-size: 1.5em;
  font-weight: 500;
  color: #00539e;
  border: 1px solid #00539e;
  cursor: pointer;
}

.accordion {
  padding: 0 5% 5% 5%;
  max-width: 1200px;
  margin: auto;
}

.management .accordion ul {
  padding-left: 25px;
}

.catering .accordion h2 {
  font-weight: 500;
  color: #00539e;
}

.catering .accordion ul {
  padding-left: 0px;
  display: inline;
  text-align: center;
}

.catering .accordion img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Wrap content for animation */
.content {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
}

/* When open, expand */
details[open] .content {
  max-height: fit-content;
}

/* GRID */
.container {
  padding: 5%;
  max-width: 1200px;
  margin: auto;
}

.grid {
  display: grid;
  gap: 20px;
}

.grid-sure {
  display: grid;
  gap: 20px;
}

.span-2 {
  grid-column: span 2;
}

.col-1 {
  grid-template-columns: 1fr;
}

.col-2 {
  grid-template-columns: 1fr 1fr;
}

.col-2-sure {
  grid-template-columns: 1fr 1fr;
}

.col-3 {
  grid-template-columns: 1fr 1fr 1fr;
}

/* CARD */
.card {
  position: relative;
  display: block;
  min-height: 350px;
  color: white;
  text-align: center;
  overflow: hidden;
}

/* IMAGE */
.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* OVERLAY */
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25); /* 25% black */
  z-index: 1;
}

/* TEXT */
.card span {
  position: absolute;
  top: 15%;
  left: 50%;
  width: 90%;
  transform: translate(-50%, -50%);
  z-index: 2;
  font-size: 1.5em;
  font-weight: 700;
  text-transform: uppercase;
  text-shadow: 0 2px 4px rgba(0,0,0,0.6);
}

.card div {
  position: absolute;
  top: 80%;
  left: 50%;
  width: 90%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-shadow: 0 2px 4px rgba(0,0,0,0.6);
}

/* OPTIONAL: FIX HEIGHT */
.card {
  height: 250px;
}

/* HOVER EFFECT */
.card:hover img {
  transform: scale(1.05);
  transition: 0.4s ease;
}

.card::before {
  background: rgba(0, 0, 0, 0.5);
}

.contact-form h2 {
  margin-bottom: 40px;
}

.contact-form form .col-1 {
  padding: 10px;
  background: #c3e0fa;
  border: 1px solid #666;
  font-family: inherit;
}

.contact-form form p {
  display: flex;
}

.contact-form form p img {
  width: 150px;
  display: inline;
}

.contact-form form p input {
  padding: 10px;
  background: #c3e0fa;
  border: 1px solid #666;
  font-family: inherit;
  width: 50px;
}

.contact-form button {
  padding: 15px;
  background: #00539e;
  color: white;
  font-family: inherit;
  letter-spacing: 5px;
  font-size: 1.5em;
  font-weight: 100;
  border: none;
  cursor: pointer;
}

.team {
  background: #c3e0fa;
  text-align: center;
  color: #666;
}

.team p {
  margin-bottom: 50px;
}

/* FOOTER */
footer {
  padding: 40px;
  background: #333;
  color: #666;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

footer > div {
  margin: auto;
}

footer .logo {
  margin-bottom: 10px;
}

.copyright {
  width: 100%;
  margin: auto;
  padding-bottom: 25px;
  background: #333;
  color: #666;
  font-size: .75em;
  text-align: center;
}

/* HAMBURGER */
#menu-toggle {
  display: none;
}

.menu-icon {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-icon span {
  width: 35px;
  height: 2px;
  background: white;
  margin: 3px 0;
  transition: 0.3s;
}

/* TABLET */
@media (max-width: 900px) {
  nav a {
    font-size: 2.5vw;
    margin-left: 0px;
  }
  
  nav a:not(:first-child) {
    margin-left: 2.5vw;
  }
  
  .what-we-offer h1 {
    margin-bottom: 25px;
  }
  
  .hide-mobile {
    display: none;
  }
  
  /* GRID STACK */
  .col-2,
  .col-3 {
    grid-template-columns: 1fr;
  }
  
  .card span {
    font-size: 5vw;
    font-weight: 400;
  }
  
  .story img {
    float: none;
  }
  
  .story p {
    column-count: 1;
  }
}

/* MOBILE */
@media (max-width: 600px) {

  .menu-icon {
    display: flex;
    z-index: 20;
  }

  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: black;
    color: white;
    display: flex;
    flex-direction: column;
    padding: 100px 30px;
    transition: right 0.3s ease;
  }

  nav a {
    margin: 15px 0;
    font-size: 1.5rem;
  }
  
  nav a:first-child {
    margin-left: 2.5vw;
  }

  /* OPEN MENU */
  #menu-toggle:checked + .menu-icon + nav {
    right: 0;
  }

  /* ICON ANIMATION */
  #menu-toggle:checked + .menu-icon span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  #menu-toggle:checked + .menu-icon span:nth-child(2) {
    opacity: 0;
  }

  #menu-toggle:checked + .menu-icon span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  .hero h1 {
    font-size: 32px;
  }
}