@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Text:ital@0;1&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Changa+One:ital@0;1&family=DM+Serif+Text:ital@0;1&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #f8f5f1;
  font-family: "Montserrat", sans-serif;
  line-height: 1.6;
  color: #262626;
  font-size: 16px;
  overflow-x: hidden;
}


/* INTRO SECTION */
.intro-container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  margin: 12rem auto;
  gap: 12rem;
}

.intro {
  max-width: 750px;
  max-height: 500px;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
  transition: transform 0.5s ease, box-shadow 0.5s ease;

  opacity: 0;
  transform: translateX(-350px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.intro video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: fill;
}

.intro.visible {
  opacity: 1;
  transform: translateX(0);
}

.intro:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.container {
  flex: 1 1 550px;
  text-align: center;
  max-width: 800px;
  width: 100%;
  padding: 2rem 3rem;
  background-color: white;
  border: 2px solid #262626;
  border-radius: 6px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);

  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.container.visible {
  opacity: 1;
  transform: translateY(0);
}

.container h1 {
  font-family: "DM Serif Text", serif;
  font-size: 4.5rem;
  margin-bottom: 1rem;
  color: #3e2f1c;
}

.container p {
  font-size: 1.4rem;
  color: #555;
  margin-bottom: 1rem;
}

.container ul {
  list-style: disc;
  margin: 1rem 0 1rem 2rem;
  text-align: left;
}

.container ul li {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: #4a3b2a;
}

/* BENEFITS */
.benefits {
  display: flex;
  flex-direction: column;
  align-items: center; 
  text-align: center;  
  gap: 0.5rem;   
  background: white;
  border: 1px solid #262626;   
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
  max-width: 1100px;
  padding: 50px;
  margin: 3rem auto;
  border-radius: 4px;

  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.benefits.visible {
  opacity: 1;
  transform: translateY(0);
}

.benefits h2 {
  font-family: "DM Serif Text", serif;
  font-size: 1.8rem;
  margin: 2rem 0 0.8rem 0;
  color: #5a4230;
}

.benefits ul, .benefits p {
  list-style: none;
  font-size: 1.4rem;
  color: #555;
  margin-bottom: 1rem;
  width: 550px;
  padding: 0;
}

/* AROMAS */
.aromas-section {
  max-width: 90vw;
  height: 620px;
  margin: 1rem auto;
}

.aromas-section h2 {
  text-align: center;
  text-decoration: underline;
  font-family: "DM Serif Text", serif;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #3e2f1c;
}

.aromas {
  display: flex;
  justify-content: space-around; 
  flex-wrap: nowrap;
  margin: 1.4rem auto;  
  max-width: 80vw;   
}

.aroma {
  position: relative;
  width: 420px;
  height: 380px; 
  margin: 0 1rem;
  padding-top: 2rem;
}

.aroma-name {
  display: block;
  text-align: center;
  font-family: "DM Serif Text", serif;
  font-size: 1.3rem;
  color: #3e2f1c;
  margin-bottom: 0.5rem; 
}

.aroma img {
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.aroma img:first-child {
  top: 40px;
  left: 20px;
  z-index: 1;
  transform: rotateZ(-2deg);
}

.aroma img:last-child {
  top: 150px;
  left: 120px;
  z-index: -1;
  transform: rotateZ(-2deg);
}

.aroma:hover img {
  transform: scale(1.05) rotateZ(2deg);
  box-shadow: 0 12px 25px rgba(0,0,0,0.25);
}

.overlay {
  position: absolute;
  top: -10;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5); 
  backdrop-filter: blur(4px);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
  z-index: 3; 
}

.overlay p {
  color: #fff;
  font-size: 1.2rem;
  text-align: center;
  padding: 1rem;
}

.overlay a {
  display: block;
  margin-top: 4.4rem;
  text-decoration: underline;
  color: white;
}

.aroma:hover .overlay {
  opacity: 1;
  transform: scale(1.05) rotateZ(2deg);
  box-shadow: 0 12px 25px rgba(0,0,0,0.25);
}

/* SIZES */
.sizes {
  display: flex;
  flex-direction: column;
  align-items: center; 
  width: 550px;
  margin: auto;
  margin-bottom: 150px;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.all-size {
  display: flex;
  justify-content: space-between;
  width: 100%;          
  max-width: 500px;    
  margin: 0;
}

.all-size li {
  list-style: none;
}

.sizes p {
  font-size: 18px;
  text-align: center;
  margin-top: 0.5rem;
}


@media (min-width: 600px) and (max-width: 960px) {
  .aromas-section {
    height: auto;
    padding: 2rem 1rem;
  }

  .aromas-section h2 {
    font-size: 1.8rem;
  }

  .aromas {
    flex-direction: column;
    align-items: center;
    gap: 2rem; 
    max-width: 100%;
  }

  .aroma {
    width: 90%;
    height: 300px; 
    margin: 20px auto;
    padding-top: 1rem;
  }

  .aroma img:first-child {
    top: 20px;
    left: 10px;
    width: 90%;
    height: 90%;
  }

  .aroma img:last-child {
    top: 100px;
    left: 40px;
    width: 90%;
    height: 90%;
  }

  .aroma-name {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
  }

  .intro-container {
    flex-direction: column;
    margin: 4rem auto;
    gap: 3rem;
  }

  .intro, .container {
    flex: 1 1 100%;
  }

  footer .about {
    grid-template-columns: 1fr; 
    gap: 1rem;
  }

  footer .social {
    flex-direction: row;
    gap: 1rem;
  }

  footer ul {
    flex-direction: row;
    gap: 1rem;
    flex-wrap: wrap;
  }
}

@media (max-width: 590px) {

  nav {
    padding: 1.5rem 2rem;
  }

  .nav-section {
    padding: 1.5rem 2rem;
    gap: 0.5rem;
  }

  .nav-section li {
    width: 130px;
  }

  .intro-container {
    flex-direction: column;
    margin: 2rem auto;
    gap: 2rem;
  }

  .intro {
    max-width: 95%;
    max-height: auto;
  }

  .container {
    padding: 1rem;
    text-align: center;
  }

  .container h1 {
    font-size: 2rem;
  }

  .container p {
    font-size: 1rem;
  }

  .benefits {
    width: 95%;
    padding: 1rem;
    margin: 1.5rem auto;
  }

  .benefits h2 {
    font-size: 1.4rem;
  }

  .benefits ul, .benefits p {
    font-size: 1rem;
    width: 100%;
  }

  .aromas-section {
    height: auto;
    padding: 1rem 0.5rem;
  }

  .aromas-section h2 {
    font-size: 1.4rem;
  }

  .aromas {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    max-width: 100%;
  }

  .aroma {
    width: 95%;
    height: 260px;
    margin: 15px auto;
    padding-top: 0.5rem;
  }

  .aroma img:first-child {
    top: 10px;
    left: 5px;
    width: 85%;
    height: 85%;
  }

  .aroma img:last-child {
    top: 70px;
    left: 25px;
    width: 85%;
    height: 85%;
  }

  .aroma-name {
    font-size: 1rem;
    margin-bottom: 0.2rem;
  }

  .sizes {
    width: 90%;
    margin-bottom: 3rem;
  }

  .all-size {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }

  .sizes p {
    font-size: 1rem;
  }

  footer .about {
    grid-template-columns: 1fr;
    gap: 1rem;
    text-align: center;
  }

  footer .social {
    flex-direction: row;
    justify-content: center;
    gap: 0.8rem;
  }

  footer ul {
    flex-direction: row;
    gap: 0.8rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  footer ul li {
    font-size: 0.9rem;
  }
}