
.brand-title {
  text-transform: lowercase;
  text-align: center;
  font-size: 800%;
  font-weight: 700;
  letter-spacing: 1px;
  color: #6f0202;
  margin: 40px 0 20px;
  margin-bottom: 30px;
}

.brand-title {
  text-transform: lowercase;
  text-align: center;
  font-size: 800%;
  font-weight: 900;
  letter-spacing: 1px;
  font-family: "Arial Black", Impact, system-ui, sans-serif;
  margin: 60px 0 50px;
  
  
  background:
    radial-gradient(130% 180% at 50% 25%, #ffe6eb 0%, #ffc2d0 25%, transparent 55%),
    radial-gradient(150% 200% at 50% 85%, #ff4775 0%, #b1002d 45%, #6a0017 80%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;

  
  -webkit-text-stroke: 3px #530014;
  text-shadow:
    0 2px 2px #530014,
    0 4px 4px rgba(0, 0, 0, 0.25),
    0 8px 12px rgba(0, 0, 0, 0.3),
    0 -2px 10px rgba(255, 180, 200, 0.7),
    0 -6px 20px rgba(255, 220, 230, 0.6);

  position: relative;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,.25));
}

.brand-title::before {
  content: "";
  position: absolute;
  top: 5%;                 
  left: 12%;
  right: 12%;
  height: 0%;             
  background: radial-gradient(
    ellipse at 50% 0%,
    rgba(255,255,255,0.9) 0%,
    rgba(255,255,255,0.6) 30%,
    rgba(255,255,255,0) 100%
  );
  border-radius: 80px;
  mix-blend-mode: screen;
  filter: blur(2px);
  pointer-events: none;
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.brand-title:hover {
  background-image:
    linear-gradient(90deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0) 30%, rgba(255,255,255,0.9) 60%, rgba(255,255,255,0) 100%),
    radial-gradient(130% 180% at 50% 25%, #ffe6eb 0%, #ffc2d0 25%, transparent 55%),
    radial-gradient(150% 200% at 50% 85%, #ff4775 0%, #b1002d 45%, #6a0017 80%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}

.brand-title-small {
  text-transform: lowercase;
  text-align: center;
  font-size: 600%;           
  font-weight: 800;          
  letter-spacing: 0.5px;     
  font-family: "Arial Black", Impact, system-ui, sans-serif;
  margin: 40px 0 30px;       
  margin-bottom: 150px;
  background:
    radial-gradient(130% 180% at 50% 25%, #ffe6eb 0%, #ffc2d0 25%, transparent 55%),
    radial-gradient(150% 200% at 50% 85%, #ff4775 0%, #b1002d 45%, #6a0017 80%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;

  -webkit-text-stroke: 2px #530014;   
  text-shadow:
    0 2px 2px #530014,
    0 3px 3px rgba(0, 0, 0, 0.25),
    0 6px 8px rgba(0, 0, 0, 0.3),
    0 -2px 6px rgba(255, 180, 200, 0.7),
    0 -4px 12px rgba(255, 220, 230, 0.6);

  position: relative;
  filter: drop-shadow(0 6px 12px rgba(0,0,0,.25));
}

.brand-title-small::before {
  content: "";
  position: absolute;
  top: 5%;
  left: 12%;
  right: 12%;
  height: 0%;
  background: radial-gradient(
    ellipse at 50% 0%,
    rgba(255,255,255,0.9) 0%,
    rgba(255,255,255,0.6) 30%,
    rgba(255,255,255,0) 100%
  );
  border-radius: 80px;
  mix-blend-mode: screen;
  filter: blur(2px);
  pointer-events: none;
}

.brand-title-small:hover {
  background-image:
    linear-gradient(90deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0) 30%, rgba(255,255,255,0.9) 60%, rgba(255,255,255,0) 100%),
    radial-gradient(130% 180% at 50% 25%, #ffe6eb 0%, #ffc2d0 25%, transparent 55%),
    radial-gradient(150% 200% at 50% 85%, #ff4775 0%, #b1002d 45%, #6a0017 80%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}


.brand-subtitle {
  text-align: center;
  font-style: italic;
  font-weight: 700;      
  font-size: 160%;       
  letter-spacing: 1px;   
  color: #6f0202;        
  text-transform: none;  
}


.cloud-callout {
  position: relative;
  background: #d9c6b0;
  border-radius: 28px;
  padding: 24px 28px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  max-width: 800px;
  margin: 50px auto;
}

.cloud-callout::before,
.cloud-callout::after {
  content: "";
  position: absolute;
  background: #cbb499;
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.cloud-callout::before {
  width: 70px; height: 70px;
  top: -20px; left: 24px;
}

.cloud-callout::after {
  width: 50px; height: 50px;
  top: -28px; left: 78px;
}

.cloud-heading {
  margin: 0 0 8px;
  text-align: center;
  font-weight: 700;
  letter-spacing: 1px;
}


body {
  font-size: small;
  font-family:  "Century Gothic", "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 1.6em;
  color: #2e2e2e;
  background-color: #fff8e7;
}


.allcontent {
  width: 800px;
  margin: auto;
}


.rhodeessentials {
  font-size: 230%;
  font-weight: 500;
  margin-top: 40px;
  margin-bottom: 30px;
  color: #9c0101;
  font-weight: 600;
}


h1, h2 {
  letter-spacing: 0.5px;
  color: #9c0101;
  font-weight: 600;
}

h1 {
  font-size: 170%;
  font-weight: 500;
  margin-top: 40px;
  margin-bottom: 15px;
  color: #9c0101;
  font-weight: 600;
}

h2 {
  font-size: 140%;
  font-weight: 400;
  margin-top: 30px;
  margin-bottom: 10px;
  color: #9c0101;
  font-weight: 550;
}

h3 {
  text-align: left;
  font-size: 120%;
  font-weight: 500;
  color: #4a4a4a;
  letter-spacing: 0.5px;
  margin-top: 30px;
  margin-bottom: 15px;
  font-style: normal;
  font-weight: 900;
}


p {
  color: #474747;
  font-weight: 500;
  font-size: 13.5px;
}


.indeximg {
  width: 300px;         
  height: 400px;       
  object-fit: cover;   
  margin: 10px;
  border-radius: 8px;  
}


.center-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  margin: 0 auto;
  color: #9c0101;
}


.haileybieber {
  text-transform: lowercase;
  text-align: center;
  font-size: 400%;
  font-weight: 700;
  letter-spacing: 1px;
  color: #3e3e3e;
  margin: 40px 0 20px;
  margin-bottom: 80px;
}


.hailey-container {
  display: flex;
  align-items: flex-start;
  margin-bottom: 90px;
}


.hailey-container p {
  margin-top: 40px; 
}


.float-left {
  float: left;
  width: 300px;
  margin: 0 20px 20px 0;
  border-radius: 10px;
  margin-bottom: 30px;
  }


.hailey-img {
  width: 100%;
  border-radius: 10px;
}


.float-left h1 {
  white-space: nowrap;
  font-size: 170%;         
  font-weight: 500;
  color: #9c0101;
  letter-spacing: 0.5px;
  margin-top: 0px;
  margin-bottom: 25px;
  font-weight: 600;
}


.hailey-quote {
  font-style: italic;
  font-size: 14px;  
  color: #555;
  margin-top: 8px;
  text-align: center;
}


.jellopage {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: #fff8e7;
  width: 100%;
  margin: 0 auto;
  color:#9c0101;
}


.banner {
: url ("../images/banner.jpg");
  background-size: cover;
  background-position: center;
  text-align: center;
  color: #3e3e3e;
  padding: 80px 20px;
  font-family: "Century Gothic", sans-serif;
  margin-bottom: -80px;
}

.banner img {
 border: 3px solid #17550f;
border-radius: 15px;  
width: 500px;
}


.skincare {
  margin-top: 10%;
}


#guarantee {
  border: 5px #7c96ad;
  background-color: #d9c6b0;
  padding: 25px 80px;
  margin: 30px 270px 30px 30px;
  margin-bottom: 100px;
  background-image: url(images/background.gif);
  background-repeat: no-repeat;
  background-position: top left;
  box-shadow: 0 0 20px 10px rgba(255,255,255,0.6);
  position: relative; 
  margin-top: 80px;
}

#guarantee::before {
  content: '★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★';
  position: absolute;
  top: -20px;
  left: 0;
  width: 100%;
  text-align: center;
  color: #9c0101;
  font-size: 20px;
  margin-top: 10px;
}

#guarantee::after {
  content: '★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★';
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 100%;
  text-align: center;
  color: #9c0101;
  font-size: 20px;
  margin-bottom: 10px;
}


