/* Root Variables */
:root {
  /* Core brand colours */
  --color-black: #000000;
  --color-white: #FFFFFF;

  /* Logo gold palette */
  --gold-lightest: #F5F5E7;
  --gold-light:    #F2E9A6;
  --gold-base:     #E1CB7D;
  --gold-dark:     #96783A; 
  --blue-dark:     #134465;

  --background-primary: var(--gold-lightest);
  --background-accent:  var(--gold-light);
  --text-primary:       var(--color-white);
  --accent-primary:     var(--gold-base);
  --accent-strong:      var(--gold-dark);

  /* Media Screen */
  --bp-mobile: 576px;
  --bp-tablet: 768px;
  --bp-laptop: 992px;
  --bp-desktop: 1200px;
}

/* General Styles */
* {box-sizing: border-box; scroll-behavior: smooth; overscroll-behavior: none;}
body {font-family:'Courier New', Courier, monospace; margin: 0; padding: 0; background-color: white;}
h1, h2, h3, h4, h5, h6 {color: var(--accent-primary);}
h1 {font-size: 3vw;}
h2 {font-size: 2vw;}
h3 {font-size: 1vw;}
a {color: var(--accent-primary); text-decoration: none; font-size: 1vw;}
p {line-height: 1vw; margin-bottom: 1em;font-size: 1vw;}
img {pointer-events: none;}
video {pointer-events: none;}
html {scroll-padding-top: 80px;}
.section-grad-left {margin: 0; height: calc(100vh - 80px); background: linear-gradient(260deg, rgb(194, 188, 169) 0%, rgba(255, 255, 255, 1) 100%);}
.section-grad-right {margin: 0; height: calc(100vh - 80px); background: linear-gradient(80deg, rgb(236, 231, 213) 0%, rgba(255, 255, 255, 1) 100%);}

/* Navigation Styles */
nav {
  width: 100%;
  height: 80px;
  background-color: var(--blue-dark);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  z-index: 1000;
  overflow: hidden;
}
nav ul {
  list-style-type: none;
  margin: 0;
  padding-top: 1rem;
  padding-bottom: 1rem;
  overflow: hidden;
  display: flex;
  justify-content: center;
  height: auto;
}
nav ul li {
  display: inline-block;
  position: relative;
  font-size: 1.25rem;
  text-align: center;
  text-decoration: none;
  min-width: 8rem;
}
nav ul li a {
  display: inline-flex;
  color: var(--accent-primary);
  text-align: center;
  padding: 0.5rem 1rem;
  text-decoration: none;
  vertical-align: middle;
}
nav ul li:hover {
  cursor: pointer;
  text-decoration: none;
  transform: scale(1.1);
}
nav ul li a:hover {
  color: var(--background-primary);
  text-decoration: none;
  font-weight: bold;
}
nav .coffee-bean {
  height: 1.25rem;
  width: auto;
  vertical-align: middle;
  visibility: hidden;
}
nav ul li:hover .coffee-bean {
  visibility: visible;
}

/* Hero Section Styles */
.hero {
  height: 100vh;
  width: auto;
  overflow: hidden;
  background-color: var(--blue-dark);
  top: 0;
  z-index: -1;
}
.hero-video {
  width: 102vw;
  height: 102vh;
  display: flex; 
  margin-left: -1vw;
  margin-right: -1vw;
  justify-content: center;
  align-items: center;
  object-fit: cover;
  opacity: 0.8;
  filter: 
  blur(10px) 
  contrast(1.2);
}
.hero-logo {
  position: absolute;
  top: calc(50vh + 40px);
  left: 50vw;
  transform: translate(-50%, -50%);
  width: 40vw;
  height: auto;
}

/* Common Section Styles */
.header {background-color: var(--blue-dark); box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);}
.heading-class {margin: auto; width: 60vw; padding: 1em; color: var(--text-primary); text-align: center;}
.paragraph-light-bg {color: var(--blue-dark);}
.section-div-content {margin: 0 20% 0 20%;}

/* About Section Styles */
.div {
  padding: 0.25rem;
  text-align: left;
}
.about-images {
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  justify-content: center;
  z-index: 1;
}
.about_img1, .about_img2, .about_img3 {
  margin-top: 1em;
  height: 15w;
  height: 15vw;
  aspect-ratio: 1.0;
  border-radius: 10vw;
  box-shadow: 4px 4px 14px rgba(0, 0, 0, 0.5);
}

/* Menu Section Styles */



/* Contact Us Styles */
.contact-form {
  margin: auto;
  width: 70vw;
  padding: 1em;
  background-color: var(--blue-dark);
  border-radius: 1rem;
  box-shadow: 4px 4px 14px rgba(0, 0, 0, 0.5);
}
label {
  color: var(--text-primary);
  font-weight: bold;
}
input {
  width: 100%;
  padding: 0.5em;
  margin: 0.5em 0;
  border: none;
  border-radius: 0.5rem;
}
input[type="submit"] {
  background-color: var(--accent-primary);
  color: var(--text-primary);
  cursor: pointer;
  font-weight: bold;
}
input[type="submit"]:hover {
  background-color: var(--accent-strong);
}
input[type="reset"] {
  background-color: var(--gold-light);
  color: var(--blue-dark);
  cursor: pointer;
  font-weight: bold;
}
input[type="reset"]:hover {
  background-color: var(--gold-base);
}

/* Footer Styles */
footer {
  bottom: 0;
  justify-content: center;
  background-color: var(--blue-dark);
}
.food-hygine {
  width: 20rem;
}




.container {
	height: 100vh;
}

form {
	min-width: 25rem;
	
	.title {
		font-family: 'Pacifico', cursive;
		color: #212529;
		font-size: 2.5rem;
	}
	
  .form-control {
    background-color: #f2f6f8;
		border-radius: 2rem;
    border: none;
    box-shadow: 0px 7px 5px rgba(0, 0, 0, 0.11);
		
    &.thick {
      height: 3.3rem;
      padding: .5rem 3.5rem;
    }
		
		&:focus {
			background-color: #f2f6f8;
			border: none;
			box-shadow: 0px 7px 5px rgba(0, 0, 0, 0.11);
		}
  }
	
	.message .form-control {
			padding: .5rem 1.8rem;
	}
	
  ::placeholder {
    font-family: 'Quicksand', sans-serif;
		font-weight: 600;
    font-size: 1.1rem;
    color: #838788;
    position: relative;
    left: 0;
  }
	
  input,
  textarea {
		font-family: 'Quicksand', sans-serif;
    color: #212529;
    font-size: 1.1rem;
  }
	
  .icon {
    color: #57565c;
    height: 1.3rem;
    position: absolute;
    left: 1.5rem;
    top: 1.1rem;
  }
}

.btn.btn-primary {
  font-family: 'Quicksand', sans-serif;
	font-weight: bold;
  height: 2.5rem;
  line-height: 2.5rem;
  padding: 0 3rem;
  border: 0;
  border-radius: 3rem;
  background-image:linear-gradient(131deg, #ffd340, #ff923c, #ff923c, #ff923c);
  background-size: 300% 100%;
  transition: all 0.3s ease-in-out;
}

.btn.btn-primary:hover:enabled {
  box-shadow: 0 0.5em 0.5em -0.4em #ff923cba;
  background-size: 100% 100%;
  transform: translateY(-0.15em);
}


.panels {
  display: flex;
  /* max-width: 80vw; */
  justify-content: center;
}

.panel {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  width: 5%;
  position: relative;
  height: 50vh;
  margin: 0 5px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  opacity: .5; 
  transition: all 200ms ease-in-out;
}


.panel.active {
  flex: 5;
  opacity: 1;
}

.panel h1 {
  position: relative;
  right: 20px;
  font: 700 30px 'Oswald', sans-serif;
  text-transform: uppercase;
  color: #fff;
  opacity: 0;
  filter: blur(4px);
}

.panel.active h1 {
  opacity: 1;
  right: 0;
  filter: blur(0);
  transition: all 350ms cubic-bezier(0.3, 0.7, 0.1, 1.6);
  transition-delay: 200ms;
}

/*  Background images  */

.panel:nth-child(1) {
  background: url(/Dessies/media/cappaccino.jpg);
  background-size: cover;
  background-position: center;
}

.panel:nth-child(2) {
  background: url(/Dessies/media/cold_drink_oreo_milkshake.jpg);
  background-size: cover;
  background-position: center;
}

.panel:nth-child(3) {
  background: url(/Dessies/media/bronuts.jpg);
  background-size: cover;
  background-position: center;
}

.panel:nth-child(4) {
  background: url(/Dessies/media/savory_sausage_rolljpg.jpg);
  background-size: cover;
  background-position: center;
}

.panel:nth-child(5) {
  background: url(/Dessies/media/seating.jpg);
  background-size: cover;
  background-position: center;
}

@media screen and (min-width: 1100px) {
  .panel h1 {
    font-size: 48px;
  }
}