@font-face {    
    font-family: "Westroon";
    src: url(../fonts/01_WESTROON/Westroon.woff2) format(woff2),
         url(../fonts/01_WESTROON/Westroon.otf) format(woff);
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "neato-serif-regular";
    src: url(../fonts/04_NEATO-SERIF/neato-serif-regular.woff2) format(woff2),
         url(../fonts/04_NEATO-SERIF/neato-serif-regular.otf) format(woff);
}

@font-face {
    font-family: "Fendesert-Script-Stamp";
    src: url(../fonts/03_FENDESERT/Fendesert-Script-Stamp.woff2) format(woff2),
         url(../fonts//03_FENDESERT/Fendesert-Script-Stamp.otf) format(woff);
}

body {
    font-family: "Westroon";
    background-color: #e7e0c6;
    margin: 0;
    padding: 0;
}

.thicket-color {
    color: #3a5a40;
}

.vanilla-color {
    color: #e7e0c6;
}

.meadow-color {
    color: #70876a;
}

.amber-color {
    color: #fe6f1f;
}

.brooke-color {
    color: #6bc4a6;
}

.cloud-color {
    color: #f9f4e4;
}

/* --------------- Navigation Bar --------------- */
.nav-section {
    height: 80px;
    background-color: #f9f4e4;
    border: 2px solid #3a5a40;
    border-radius: 26px;
    font-size: 1.2rem;
    display: flex;
    top: 8px;
    margin: 0px 21px;
    align-items: center;
    justify-content: center;
    position: relative;
}

.nav-img-wave {
    position: absolute;
    z-index: -1;
}

.nav-section ul {
    margin-right: 50px;
}

.logo {
    width: 160px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo img {
    max-height: 70px;
    width: auto;
}

.nav-button-list {
    position: absolute;
    right: -40px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.nav-button {
    width: 80px;
    height: 45px;
    background-color: rgb(249, 244, 228);
    font-family: "Westroon";
    display: inline-block;
    color: rgb(58, 90, 64);
    text-align: center;
    border: 3px solid rgb(58, 90, 64);
    border-radius: 15px;
    padding: 5px 20px;
}

.nav-button:hover {
    background-color: rgb(58, 90, 64);
    color: rgb(249, 244, 228);
}

/* ---------------------- SVG Circle --------------- */
.svg-circle {
    background-color: #fe6f1f;
    border-radius: 100%;
    position: fixed;
    bottom: 15px;
    left: -5px;
    margin-left: 16px;
    margin-right: 5px;
    opacity: 0;
    z-index: 1000;
    transform: translateX(-50px); /* Start off to the left */
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.spinning-text {
    animation: spin 20s linear infinite;
    transform-origin: 150px 150px; /* center of the SVG */
}

.svg-circle.visible {
    opacity: 1;
    transform: translateX(0);
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* --------------- Banner --------------- */
.banner {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 500px;
}

.logo-banner {
    position: relative;
    width: 600px;
    height: 300px;
    top: 20px;
    z-index: -1;
}

.adesivo {
    position: absolute;
    width: 80px;
    height: 80px;
    right: 55px;
    top: 60px;
    z-index: -1;
    animation: spin 70s linear infinite;
}

.banner-img {
    display: flex;
    position: relative;
    width: 800px;
    height: 600px;
    justify-content: center;
}

.silver-plate {
    width: 700px;
    height: 700px;
    position: absolute;
    top: 70px;
    z-index: 1;
}

#cookie-1 {
    width: 230px;
    height: 230px;
    z-index: 2;
    position: absolute;
    top: 340px;
    left: 230px;
    /*animation: float-1 15s ease-in-out infinite;*/
    /*filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.3));*/
}

#cookie-2 {
    width: 230px;
    height: 230px;
    top: 320px;
    left: 350px;
    z-index: 3;
    position: absolute;
    /*animation: float-2 15s ease-in-out infinite;*/
    /*filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.3));*/
    margin-bottom: 100px;
}

#cookie-3 {
    width: 230px;
    height: 230px;
    top: 260px;
    left: 200px;
    z-index: 1;
    position: absolute;
    /*animation: float-2 15s ease-in-out infinite;*/
    /*filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.3));*/
    margin-bottom: 100px;
}

/* --------------- Cookies Animation --------------- */

/* Hide cookies at first */
.cookie {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
}

/* Delay each one */
#cookie-1 {
    animation-delay: 0.4s;
}
#cookie-2 {
    animation-delay: 1.1s;
}
#cookie-3 {
    animation-delay: 1.8s;
}

/* --------------- Banner Text --------------- */
.banner-text {
    width: 600px;
    height: 300px;
    font-family: "Westroon";
    font-size: 1.3rem;
    background-color: #6bc4a6;
    border: 4px solid rgb(58, 90, 64);
    padding: 25px;
    border-radius: 15px;
    max-width: 600px;
    position: relative;
    top: 10px;
    right: 10px;
}

.banner-text h1 {
    font-family: "Westroon";
    font-weight: normal; /* Override browser default bold styling (User Agent Stylesheet). */
    font-style: normal; /* Override browser default bold styling (User Agent Stylesheet). */
    text-transform: uppercase;
}

.banner-text h2 {
    font-family: "Westroon";
    font-weight: normal;
    font-style: normal;
    margin-top: 10px;
    margin-bottom: 20px;
}

.banner-text img {
    width: 100px;
    height: 100px;
    position: absolute;
    top: -50px;
    right: -30px;
}

.button-1 {
    background-color: rgb(249, 244, 228);
    display: inline-block;
    color: rgb(58, 90, 64);
    text-align: center;
    border: 3px solid rgb(58, 90, 64);
    border-radius: 15px;
    padding: 5px 20px;
    margin-left: 10px;
    font-family: "Westroon";
}

.button-1:hover {
    background-color: rgb(58, 90, 64);
    color: rgb(249, 244, 228);
}

.pink-chip-chocolate-2 {
    bottom: -10px;
    z-index: 2;
    position: relative;
    width: 50px;
    height: 50px;
    animation: float-1 6s ease-in-out infinite;
}

.pink-chip-chocolate-3 {
    bottom: -200px;
    left: 250px;
    z-index: 2;
    position: relative;
    width: 50px;
    height: 50px;
    animation: float-2 6s ease-out-in infinite;
}

.chocolate-chunk-1 {
    width: 80px;
    height: 80px;
    bottom: -380px;
    left: 350px;
    z-index: 2;
    position: relative;
    animation: floatY 6s ease-in-out infinite;
}

/* --------------- Animations --------------- */

@keyframes float-1 {
    0%   { transform: translate(0px, 0px); }
    50%  { transform: translate(9px, -9px); }
    100% { transform: translate(0px, 0px); }
  }

  @keyframes float-2 {
    0%   { transform: translate(0px, 0px); }
    50%  { transform: translate(9px, 9px); }
    100% { transform: translate(0px, 0px); }
  }

  @keyframes floatY {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-20px); } /* goes up */
  100% { transform: translateY(0); }     /* back down */
}

@keyframes spin {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Smooth fade + move up */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --------------- Catalog --------------- */

.catalog {
    background-image: url("../img/pattern-3.0-2000px-2000px.svg");
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 100px;
    height: 900px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: -150px;
    z-index: 1;
}

.item-box {
  width: 800px;
  height: 500px;
  background-color: #6bc4a6;
  border: 4px solid #70876a;
  border-radius: 40px;
  display: flex;
  position: relative;
  justify-content: space-between; /* image left, text right */
  align-items: center; /* vertical centering */
  z-index: 5;
}

.oreo-gif {
    width: 420px;
    height: auto;
    margin-left: 0;   /* sticks to left side */
    z-index: 10;
}

.item-description {
  width: 350px;
  color: rgb(249, 244, 228);
  font-family: "Westroon";
  text-align: left;
}

.item-description h2 {
    font-family: "Westroon";
    font-weight: normal; /* Override browser default bold styling (User Agent Stylesheet). */
    font-style: normal; /* Override browser default bold styling (User Agent Stylesheet). */
    text-transform: uppercase;
}

.mood-stick {
    position: absolute;
    top: -70px;
    left: -30px;
    width: 240px;
    height: auto;
    z-index: -1;
}

.wave-item-box {
    position: absolute;
    width: 750px;
    height: auto;
    bottom: 0;
    border-bottom-left-radius: 35px;
    z-index: -1;
}

/* --------------- Second Catalog --------------- */
.catalog-all-items {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 22px;
    padding: 40px;

    position: absolute; /* It fixes the on hover for .cookie-img-swap */
    z-index: -1;
    height: auto;
    width: 100%;
    background-color: #f9f4e4;

    background-image: url("../img/pattern-1.3-sem-fundo-2000px-2000px.svg");
    background-size: cover;
    background-repeat: no-repeat;
}

/* --------------- catalog-items     --------------- */

.catalog-item {
    position: relative;
    width: 320px;
    height: 500px;
    border-radius: 25px;
    background-color: #f9f4e4;
    background-image: url("../img/pattern-2.1.svg");
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 20px 15px;
    text-align: center;
    overflow: hidden;
    border: 4px solid #3a5a40; /* Blue */
    box-shadow: 0 0 0 4px #6bc4a6;
    margin-top: 220px;
    cursor: pointer;
    z-index: 1;
    transition: transform 0.3s ease;
}

.catalog-item:hover {
    transform: scale(1.05);
}

.background-decor {
    position: absolute;
    width: 400px;
    height: 450px;
    bottom: 0;
    z-index: -1;
}

.item-logo {
    position: relative;
    width: 65px;
    height: auto;
    top: -15px;
}

.item-title {
    position: absolute;
    font-family: "Fendesert-Script-Stamp";
    font-weight: normal; /* Override browser default bold styling (User Agent Stylesheet). */
    font-style: normal; /* Override browser default bold styling (User Agent Stylesheet). */
    font-size: 5rem;
    color: #f9f4e4;
}

.cookie-img {
    position:absolute;
    width: 500px;
    height: auto;
    bottom: 0;
    z-index: 2;
}

.cookie-img-swap {
    position: absolute;
    width: 230px;
    height: auto;
    top: 200px;
    transition: transform 0.3s ease;
    z-index: 10;
}

.cookie-decorations {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.logotipo-5-9 {
    position: absolute;
    width: 100px;
    height: auto;
    bottom: 5px;
    z-index: 3;
}

.cookie-decor {
  width: 40px;
  height: auto;
  animation: float 3s ease-in-out infinite;
}

.cookie-decor:nth-child(2) {
  animation-delay: 1s;
}

.cookie-decor:nth-child(3) {
  animation-delay: 2s;
}

/* ---------- */
.catalog-item {
  position: relative;
  overflow: hidden;
  background-image: url("../img/pattern-2.1.svg");
  background-size: cover;
  background-repeat: no-repeat;
}

.catalog-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/pattern-3.0-2000px-2000px.svg"); /* your hover bg */
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -2;

  opacity: 0;
  transform: translateY(-100%);
  transition: opacity 0.6s ease, transform 0.6s ease;
  z-index: -2; /* sits below cookie/logo/etc. */
}

.catalog-item:hover::after {
  opacity: 1;
  transform: translateY(0);
}
*/
