@charset "UTF-8";
:root {
  --main-color: #EDEBF7;
  --text-color: #3C2769;
  --color-dark: #697586;
  --color-light: #f3d1e8;
  --color-menu: #dfdceb;
}

/* Box sizing */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body,
h1, h2, h3, h4, h5, h6,
p,
figure,
blockquote,
dl, dd {
  margin: 0;
}

ul[role=list],
ol[role=list],
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

a {
  text-decoration: none;
  color: inherit;
}
a:hover {
  cursor: pointer;
  text-decoration: underline;
}

img,
picture {
  max-width: 100%;
  display: block;
}

body {
  font-family: "Inter", serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--text-color);
  background-color: #EDEBF7;
}

h1 {
  font-family: "Roboto", serif;
  font-size: 56px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--text-color);
  text-align: center;
  margin-bottom: 20px;
}

h2 {
  font-family: "Roboto", serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--text-color);
  text-align: center;
  margin-bottom: 20px;
}

h3 {
  font-family: "Roboto", serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--text-color);
  text-align: center;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  body {
    background-color: var(--color-light);
    font-size: 18px;
    line-height: 1;
  }
  h1 {
    font-size: 46px;
  }
  h2 {
    font-size: 38px;
  }
  h3 {
    font-size: 22px;
  }
}
.button {
  width: auto;
  padding: 16px;
  border-radius: 16px;
  border: 2px solid black;
  color: var(--main-color);
  font-size: 16px;
  cursor: pointer;
  background: linear-gradient(90deg, #ff6b6b, #6c5ce7, #00cec9, #ff6b6b);
  background-size: 300%;
  transition: 0.5s;
}
.button:hover {
  background-position: right;
}
.button-menu {
  position: relative;
}
.button-lang {
  width: auto;
  padding: 8px;
  border-radius: 8px;
  border: 2px solid black;
  color: var(--text-color);
  background-color: var(--color-menu);
  font-size: 16px;
  transition: transform 0.5s ease;
  cursor: pointer;
}
.button-lang:hover {
  box-shadow: 0px 0px 15px 15px #e69090;
  transform: scale(1.2);
}
.button-list {
  position: absolute;
  top: 100%;
  right: 0;
  display: none;
}
.button-list.active {
  display: block;
}

.picture-circle-1, .picture-circle-2, .picture-circle-3 {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--color-light);
  position: relative;
}
.picture-circle-1 h3, .picture-circle-2 h3, .picture-circle-3 h3 {
  color: var(--color-light);
}
.picture-circle-1 {
  background-image: url(../images/Cookies.jpg);
}
.picture-circle-2 {
  background-image: url(../images/Cakes.jpg);
}
.picture-circle-3 {
  background-image: url(../images/Sweets.jpg);
}
.picture-catalog-1, .picture-catalog-2, .picture-catalog-3 {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: black;
  text-shadow: 1px 1px 2px var(--color-light), 0 0 1em #9d94b0, 0 0 0.2em var(--color-dark);
}
.picture-catalog-1 p, .picture-catalog-2 p, .picture-catalog-3 p {
  padding-bottom: 10px;
}
.picture-catalog-1 {
  background-image: url(../images/Fresh\ Ingredients.jpg);
  padding: 40px;
}
.picture-catalog-2 {
  background-image: url(../images/Artisan\ Craftsmanship.jpg);
  padding: 20px;
}
.picture-catalog-3 {
  background-image: url(../images/Custom\ Designs.jpg);
  padding: 20px;
}

.logo {
  width: 100px;
  height: 100px;
}

.icon {
  display: inline-block;
  vertical-align: text-top;
  fill: var(--text-color);
}
.icon-basket:hover {
  box-shadow: 0px 0px 15px 15px #e69090;
  transform: scale(1.2);
}

.video {
  display: flex;
  justify-content: center;
}

.catalog {
  display: flex;
  justify-content: center;
  gap: 24px;
  text-align: center;
}
.catalog-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-radius: 4px;
}
.catalog-cart {
  display: flex;
  flex-direction: column;
  width: 360px;
  padding: 20px;
  border: 2px solid var(--text-color);
  text-align: center;
}
.catalog-text {
  height: 300px;
  padding: 20px;
}

@media (max-width: 768px) {
  .catalog {
    flex-direction: column;
    align-items: center;
  }
  .catalog-text {
    height: auto;
  }
}
.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 16px;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 40px;
  background-color: var(--color-menu);
}
.footer-menu {
  width: 25%;
  text-align: center;
  align-items: center;
}
.footer-menu h3 {
  margin-bottom: 10px;
  text-transform: capitalize;
}
.footer-social {
  display: flex;
  justify-content: center;
  gap: 14px;
  padding: 10px;
}

@media (max-width: 768px) {
  .footer {
    flex-direction: column;
  }
  .footer-menu {
    width: 100%;
  }
  .footer-menu h3 {
    text-transform: uppercase;
  }
}
.header {
  display: flex;
  gap: 40px;
  padding: 20px;
}
.header-nav {
  display: flex;
  flex-direction: column;
  width: 90%;
  background-color: var(--color-menu);
}
.header-top {
  display: flex;
  justify-content: space-around;
  padding: 10px;
  border-bottom: 1px solid var(--color-dark);
}
.header-bottom {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 40px;
  padding: 10px 40px;
}

@media (max-width: 768px) {
  .header-nav {
    display: none;
  }
}
.main-banner-top {
  width: 100%;
  height: 400px;
  background-image: url("../images/Сupcakes.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin: 40px 0;
}
.main-banner-top h1 {
  text-shadow: var(--color-dark) 1px 0 20px;
  padding-top: 50px;
}
.main-banner-bottom {
  height: 360px;
  background: radial-gradient(circle, rgb(230, 230, 73) 0%, rgb(105, 117, 134) 63%, rgb(243, 209, 232) 100%);
  margin-bottom: 40px;
  padding: 20px;
  text-align: center;
}
.main-banner-bottom span {
  font-family: "Lavishly Yours", cursive;
  font-weight: 400;
  font-style: normal;
  font-size: 36px;
  font-size: 46px;
}
.main-banner-bottom p {
  padding: 20px 0;
}
.main-section {
  margin-bottom: 60px;
}
.main-section-top {
  margin-bottom: 100px;
}
.main-menu {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 40px;
}
.main-circle {
  width: 400px;
  height: 400px;
  border: 4px solid var(--text-color);
  border-radius: 50%;
  text-align: center;
  padding: 60px 0;
}
.main-text {
  width: 368px;
  height: 180px;
  background-color: rgb(70, 48, 48);
  border-radius: 60%;
  padding: 10px;
  position: absolute;
  bottom: -60px;
}
.main-text h3 {
  margin-bottom: 6px;
}
.main-text span {
  font-family: "Lavishly Yours", cursive;
  font-weight: 400;
  font-style: normal;
  font-size: 36px;
}
.main-text h4 {
  padding-bottom: 6px;
}

@media (max-width: 768px) {
  .main-menu {
    flex-direction: column;
    gap: 80px;
  }
  .main-circle {
    width: 300px;
    height: 300px;
  }
  .main-text {
    width: 268px;
  }
  .main-cart {
    width: auto;
  }
  .main-section-top {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}/*# sourceMappingURL=main.css.map */
