@import url('https://fonts.googleapis.com/css2?family=Sora:wght@100;200;300;400;500;600;700;800&display=swap');

body {
	font-family: 'Sora', Arial, sans-serif;
	font-size: 22px;
    font-weight: 300;
	line-height: 1.3;
	
	background-color: #ffffff;
	color: #1A1A1A;
	width: 100%;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 15px 60px 15px 60px;
  background-color: #ffffff;
  
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99;
}

header a {
  font-size: 16px;
  font-weight: 500;
  margin-left: 20px;
}

.header-left, .header-right {
  width: 40%;
}

.header-left .socials {
  width: 30px;
  text-align: left;
  margin-left: -10px;
}

.header-right {
  text-align: right;
}

.header-right a:hover {
  border-bottom: 2px solid #aa1919;
  padding-bottom: 2px;
}

.header-logo {
  width: 20%;
  text-align: center;
  margin: 0 auto;
}
.header-logo img {
  display: inline-block;
  width: 100px;
}

footer {
  background-color: #1A1A1A;
  color: #ffffff;
  font-size: 16px;
  display: flex;
  justify-content: space-between;
  padding: 10px 60px 10px 60px;
  width: 100%;
}

footer p {
   padding-bottom: 0;
}

.bold {
  font-weight: 600;
}

h3 {
  font-weight: 500;
  font-size: 36px;
  padding-bottom: 20px;
}

h4 {
  font-size: 30px;
  font-weight: 600;
  color: #aa1919;
  padding-bottom: 20px;
}

section {
  padding-left: 60px;
  padding-right: 60px;
}

p {
  padding-bottom:10px;
}

a {
  color: #1A1A1A;
  text-decoration: none;
  margin-bottom: 5px;
  cursor: pointer;
}

a:visited {
  color: #1A1A1A;
}

.button-light, .button-dark {
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 50px;
  z-index: 99;
}

.button-light {
  background-color: #ffffff;
}

.button-light:hover {
  background-color: #1a1a1a;
  color: #ffffff;
}

.button-dark {
  background-color: #1a1a1a;
  color: #ffffff;
}

.button-dark:hover {
  background-color: #ffffff;
  border: 2px solid #1a1a1a;
  color: #1a1a1a;
}

.menu {
  background-color: #ffffff;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 111px;
  left: 0;
  transform: translateY(-130%);
  z-index: 2;
  transition: transform 0.5s ease;
}

/* ANIMATED HAMBURGER ICON */

#hamburger-icon {
  width: 25px;
  height: 18px;
  position: relative;
  top: 0;
  right: 0;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  cursor: pointer;
  display: none;
}

#hamburger-icon span {
  display: block;
  position: absolute;
  height: 4px;
  width: 100%;
  background: #000000;
  border-radius: 2px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}

#hamburger-icon span:nth-child(1) {
  top: 0px;
}

#hamburger-icon span:nth-child(2),#hamburger-icon span:nth-child(3) {
  top: 9px;
}

#hamburger-icon span:nth-child(4) {
  top: 18px;
}

#hamburger-icon.open span:nth-child(1) {
  top: 9px;
  width: 0%;
  left: 50%;
}

#hamburger-icon.open span:nth-child(2) {
  transform: rotate(45deg);
}

#hamburger-icon.open span:nth-child(3) {
  transform: rotate(-45deg);
}

#hamburger-icon.open span:nth-child(4) {
  top: 9px;
  width: 0%;
  left: 50%;
}

/*  //////////////// */

.menu-open {
  max-height: 40vh;
  overflow: hidden;
}

.menu-open .menu {
  transform: translateY(0%);
}

.menu a {
  display: block;
  cursor: pointer;
}

.menu a:hover {
  color: #aa1919;
  cursor: pointer;
}

.menu .page-links {
  font-size: 36px;
  font-weight: 500;
  line-height: 1.1;
  padding-top: 40px;
  padding-bottom: 40px;
}

.menu .social-links {
  font-size: 30px;
  font-weight: 500;
}

.hero {
  background-image: url(/assets/sf_shopfront_hq.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  max-width: 100%;
  height: 1280px;
  padding: none;
  
  position: relative;
  top: 80px;
  left: 0;
  z-index: -10;
}

.intro {
  position: relative;
  background-color: #aa1919;
  color: #fff1da;
  padding-top: 80px;
  padding-bottom: 120px;
  height: 700px;
}

.intro-cakes {
  width: 560px;
  position: absolute;
  top: 0;
  right: 60px;
  transform: translateY(50%);
  z-index: 1;
}

.intro h2 {
  font-size: 48px;
  font-weight: 500;
  max-width: 980px;
  margin-bottom: 80px;
  
  position: absolute;
  top: 80px;
  left: 60px;
  z-index: 2;
}

.intro p {
  max-width: 550px;
  margin-bottom: 40px;
  
  position: absolute;
  top: 400px;
  left: 60px;
  z-index: 3;
}

.intro .button-light {
  position: absolute;
  top: 560px;
  left: 60px;
  z-index: 3;
}

.gallery {
  display: flex;
  margin-top: 80px;
  margin-bottom: 80px;
}

.gallery img {
  width: 50%;
  padding: 10px;
}

.google-reviews {
  padding-bottom: 80px;
  text-align: center;
}

.tagembed-container {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/*////////////////////////////////////////////////////////////////*/
/* CONTACT US */

.store-info {
  display: flex;
  justify-content: space-between;
  margin-top: 150px;
}

.divider {
  border-bottom: 6px solid #9f1818;
  width: 60px;
  height: 6px;
  margin-bottom: 60px;
}

.opening-hours, .address {
  max-width: 550px;
  margin-bottom: 80px;
}

.storefront {
  width: 100%;
  height: 100%;
  max-width: 570px;
  position: relative;
}

.section p {
  margin-bottom: 20px;
}

.say-hello {
  position: absolute;
  top: 780px;
  right: 40px;
  max-width: 650px;
  margin-bottom: 80px;
}

.say-hello p {
  padding-bottom: 20px;
}

.say-hello .hello-socials {
  width: 35px;
  height: 35px;
  margin-top: 5px;
  margin-left: 10px;
}

.contact-socials {
  padding-top: 20px;
}

.faqs {
  background-color: #fff8ec;
  padding: 40px 60px;
  margin-top: 80px;
}

.question {
  padding-bottom: 20px;
  max-width: 1280px;
  position: relative;
}

.expand-question {
  position: absolute;
  top: 0;
  right: 0;
  display: none;
  transition: 0.5s all ease;
}

.active {
  transform: rotate(45deg);
}

.long-red-divider {
  border-bottom: 1px solid #aa1919;
  width: 100%;
  height: 2px;
  margin-bottom: 20px;
  margin-top: 20px;
}

/*////////////////////////////////////////////////////////////////*/
/* SPECIAL ORDERS */

.conditions {
  padding-bottom: 40px;
  margin-top: 150px;
}

.special-order-conditions .conditions h3 {
  text-align: center;
  margin-bottom: 40px;
}

.cakes-filter {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.filter {
  margin-top: 20px;
}

.filter a {
  font-size: 18px;
  display: inline;
  margin-left: 15px;
}

.selected {
  border-bottom: 2px solid #aa1919;
  padding-bottom: 2px;
}

.order-list {
  background-color: #fff8ec;
  padding-bottom:40px;
}
.order-list h4 {
  color: #1A1A1A;
  padding-top: 40px;
  margin-left: 10px;
}

.long-divider {
  border-bottom: 2px solid #1a1a1a;
  width: 100%;
  height: 2px;
}

.food-item p {
  font-size: 18px;
}

.food-item .order-name, .food-item .order-price {
  font-weight: 600;
  margin-top: 18px;
}

.food-item .order-description {
  color: #666666;
}

.savouries, .tarts, .cakes {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
}

.food-item {
  width: 25%;
  padding: 10px;
}

.mobile-order-list {
  background-color:  #fff8ec;
  padding-top: 40px;
  padding-bottom: 30px;
  font-weight: 500;
  
} 

.mobile-order-list p {
  margin-bottom: 20px;
}


/*////////////////////////////////////////////////////////////////*/
/* OUR AWARDS */

.awards {
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 150px;
  padding-bottom: 40px;
}

.award-year h3 {
  text-align: center;
  color: #9f1818;
  background-color: #ffffff;
}

.red-divider {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.left-divider, .right-divider {
  border-bottom: 2px solid #9f1818;
  width: 45%;
  height: 2px;
  margin-top: -20px;
}

.medals {
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 40px;
  padding-left: 40px;
  padding-right: 40px;
  
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
}

.medal {
  width: 25%;
  text-align: center;
}

.medal-item {
  font-size: 20px;
}

.medal img {
  max-width: 200px;
  padding: 40px;
}

/*MEDIA QUERIES*/

@media (max-width:1280px) {
  .hero {
    height: 800px;
    background-image: url(/assets/sf_shopfront_2000px.jpg);
  }
  .intro-cakes {
    width: 700px;
 	 transform: translateY(20%);
  }
  .gallery img {
    padding: 40px;
  }
}


@media (max-width:1220px) {
  .storefront {
    max-width: 400px;
  }
  .opening-hours, .address {
    max-width: 450px;
  }
  .say-hello {
    max-width: 520px;
    right: 0;
    top: 800px;
  }
  .medal img {
    max-width: 175px;
}
  .medal-item {
  font-size: 18px;
}
}

@media (max-width:1030px) {
  body {
    font-size: 18px;
  }
  header {
  padding: 10px 20px;
  }
  
  footer {
  font-size: 14px;
  padding: 10px 20px;
}
  section {
  padding-left: 40px;
  padding-right: 40px;
  }
  .intro, .intro h2, .intro-cakes, .intro p, .intro .button-light {
    position: static;
  }
  .intro {
    padding-top: 40px;
    padding-bottom: 80px;
    height: auto;
  }
  .intro h2 {
  	font-size: 36px;
    max-width: 800px;
    margin-bottom: 40px;
    margin-top: 180px;
	}
  .intro-cakes {
    width: 100%;
    height: 550px;
    object-fit: cover;
    margin-top: -110px;
    margin-left: auto;
    margin-right: auto;
  }
  .intro p {
  	max-width: 550px;
 	 	margin-bottom: 40px;
  }
  .left-divider, .right-divider {
 	 	width: 42%;
  }
  .say-hello {
    max-width: 450px;
    top: 800px;
  }
  .storefront {
    max-width: 370px;
  }
}
  

@media (max-width:940px) {
  h3 {
    font-size: 30px;
  }
  h4 {
    font-size: 20px;
  }
  .header-left, .header-logo {
    width: auto;
  }
  .header-right {
    display: none;
  }
  .header-logo img {
    transform: translateX(-35%);
  }
  #hamburger-icon {
    display: initial;
  }
  .store-info {
    display: block;
  }
  .divider {
    margin-bottom: 30px;
  }
  .opening-hours, .address {
  margin-bottom: 30px;
  }
  .say-hello {
    position: initial;
    margin-top: 40px;
  }
  .map {
    display: none;
  }
  .faqs {
    padding: 30px;
  }
  .question {
    padding-bottom: 0;
  }
  .question .answer {
    display: none;
  }
  .question h4 {
    padding-right: 40px;
    max-width: 550px;
  }
  .expand-question {
    display: block;
  }
  .food-item {
 	 width: 33.33%;;
}
}

@media (max-width:870px) {
  .hero {
    height: 600px;
  }
  .cakes-filter {
    display: block;
  }
  .filter {
 		margin-top: 10px;
    margin-bottom: 20px;
} 
  .medal {
  width: 50%;
	}
  .left-divider, .right-divider {
  width: 40%;
}
}

@media (max-width:580px) {
  body {
    font-size: 16px;
  }
  section {
  	padding-left: 25px;
  	padding-right: 25px;
  }
  .hero {
    height: 500px;
  }
  .button-light, .button-dark {
  	font-size: 16px;
  	padding: 8px 15px;
  }
   .intro-cakes {
    height: 350px;
    margin-top: -84px;
  }
  .intro h2 {
    font-size: 24px;
    margin-top: 100px;
	}
  .gallery {
    margin-top: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
  }
  .gallery img {
    width: 100%;
  }
  .special-order-conditions .divider {
    display: none;
  }
  .order-list {
    display: none;
  }
  .mobile-order-list {
    display: block;
  }
}

@media (max-width:480px) {
  header {
    padding: 5px 10px;
  }
  .header-logo img {
    width: 75px;
  }
  .header-left .socials {
  	width: 25px;
    padding-bottom: 5px;
	}
  .hero {
    height: 320px;
  }
  .menu {
  top: 80px;
  }
  .menu .page-links {
  font-size: 30px;
  padding-bottom: 40px;
  }
  .menu .social-links {
  font-size: 20px;
  }
  .medal {
  	width: 100%;
	}
  .left-divider, .right-divider {
  	width: 36%;
  }
  footer {
  	display: inline-block;
    width: 100%;
    text-align: center;
    padding-top: 15px;
    padding-bottom: 15px;
	}
}
  
  @media (max-width:370px) {
    .contact-details {
      display: flex;
      flex-direction: column;
      text-align: center;
      margin: 15px auto;
    }
  }