@import url('https://fonts.googleapis.com/css2?family=Henny+Penny&display=swap');
/* font-family: "Henny Penny", system-ui;  */

:root {

  --purple: #705699;
  --turk:#1B999B;
  --white:#ffffff;
  --text-dark:#333;
  --orange:#AE8940;
  
}


body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

}

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* Make sure default spacing doesn't create gaps */
html, body { height: 100%;}

/* Right side background cover */
.hero-right{
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Overlay fills the right column height */
.hero-right-overlay{
  min-height: 100%;
  background: rgba(0,0,0,0.3); /* optional */
}

/* Footer styling example (keep your colors) */
.footer{
  background: #000; /* change to your footer color */
  padding: 12px 0;
}

/* HERO HEIGHT + FULL COLUMN FILL */
.hero-row{
  min-height: 70vh;            /* adjust: 60vh, 80vh, or 100vh */
}

.hero-left{
  background: #ffffff;         /* or your brand color */
}


.logo-bar {
    background-color: var(--purple);
}

.logo-text{
    color:var(--white);
    font-size:2rem; 
    letter-spacing:0.5px; 
    text-transform:capitalize;  
}
.logo-text,.modal-title{
font-family: "Henny Penny", system-ui;
text-align:center;
}
.modal-header{
  background-color:var(--purple);
}
.modal-title{
color:var(--white);

}

.modal-body{
    background-color:var(--vanilla-cream);
}

@media (max-width: 768px) {
  .logo {
    height: 40px;
  }

  .logo-text {
    font-size: 1.1rem;
  }
}


.btn-shop {
  background: var(--white);
  color: var(--text-dark);
}
.btn-shop:hover{
background-color:var(--turk);
color:var(--white);
}
.btn-contact {
  background:var(--purple);
  color: var(--white);
  border: 1px solid var(--white);
}
.btn-contact:hover{
 background-color:var(--white);
 color:var(--white);
}
.btn-contact,.btn-shop{
  padding: 12px 24px;
  font-size:16px;
  text-transform:uppercase;
}

.btn-contact-close {
  background: var(--purple);
  color: var(--white);
  border: 1px solid var(--white);
  padding: 12px 24px;
}
.btn-contact-close:hover {
  color: var(--turk);
  border: 1px solid var(--turk);
  
}

.footer {
  background:var(--turk);
  color:var(--white);
}


.modal-dialog {
  max-width: 1200px !important;
}



.card h2{
  font-size:1.1rem;
}


.card p{
letter-spacing:2px;
text-align:justify;
}


.product-card-btn:hover {
  background-color: var(--purple);
}

.product-card-btn {
  width: 170px;
  padding: 10px 15px;
  margin-right: 20px;
  border-radius: 50px;
  margin-top: 1rem;
  margin-bottom: 1rem;
  font-family: "Josefin sans", Sans-serif;
  font-size: 16px;
  letter-spacing: 1px;
  outline: none;
  cursor: pointer;
  color: #fff;
  background-color: transparent;
  border: 2px solid var(--white);
  transition: color transform 0.3s;
  text-align: center;
}
.soap-line {
  text-align: center;
  color: var(--white);
  line-height: 1.9rem;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

a{
    color:#fff;
    text-decoration:none;
}
a.copy{
  color:#fff;
}

.title{
  text-transform:capitalize;
}
.soap-title{
  text-align:center;
}

ul{
  list-style: none;
}
.card-footer{
  background-color:var(--turk);
}

.modal-body-shop{
  background-color:var(--purple);
   color:var(--white)!important;
}
.modal-body-contact{
  color:var(--white);
  background-color:var(--turk);
}