
@import url("https://fonts.googleapis.com/css2?family=Open+Sans+Condensed:wght@300;700&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100;0,200;0,400;1,200&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Turret+Road:wght@200;300;400&display=swap');

/* custom properties background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    url("./img/Untitled.jpg");
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  color:#fff;
}*/

:root {
  
  --mainFont:'Raleway', sans-serif ;
  --mainFontLogo: "Londrina Solid", cursive;
  --mainFont2:'Turret Road', cursive;
  --white: #ffffff;
  --pink:#B16D8F;
  --soft-pink:#FBCBDB;
  --yellow:#F9D576;
}

/*prevents over lapping bugs*/

* {
  box-sizing: border-box;
}




body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

}


html, body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}


header.quickshott-hero{
  flex: 1;                 /* fills available space above footer */
  display: flex;
  flex-direction: column;
  width: 100%;
}



/* Make hero area take ALL remaining space under the logo bar */
#heroWrap{
  flex: 1 1 auto;
  display: flex;
  min-height: 0; /* important for flex children height */
}

/* Make the row fill the heroWrap */
#heroWrap .row{
  flex: 1 1 auto;
  width: 100%;
  min-height: 0;
}

/* Make both columns stretch full height */
#heroWrap .col-lg-8,
#heroWrap .col-lg-4{
  min-height: 100%;
}

.hero-right{
  background-size: contain;     /* shows full image */
  background-position: left center;  /* centered */
  background-repeat: no-repeat;
  background-color: #000;       /* or your brand color */
background-size: cover;

}


.hero {
  background:
    linear-gradient(
      rgba(181, 109, 143, 0.35),
      rgba(181, 109, 143, 0.35)
    ),
    url("img/hero-nails.jpg");
  background-size: cover;
  background-position: center;
}
.info-panel {
  background: #ffffff;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.accent{
  text-shadow:1px 2px 3px #000;
  font-size:2rem;
}


.banner-paragraph {
  color: #eee;
  font-family:'Raleway', sans-serif ;
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.02rem;
  text-align: justify;
  text-transform: capitalize;
  margin:2rem;
}

.modal-title {
  color:#fff;
  font-size: 3rem;
  font-family: var(--mainFont2);
  text-transform:uppercase;
}
.modal-dialog {
  max-width: 1000px !important;
}
.modal-header {
  border-bottom: none;
  padding: 1rem;
}

  

p {
  font-size: 1.4rem;
  font-weight:300;
}
.card-title {
  font-weight: 400;
  text-transform: uppercase;
  color: var(--white);
  text-align: center;
  font-size: 1.6rem;
}


.modal-footer {
  border-top: none;
}
.btn {
  width: 170px;
  padding: 12px 24px;
  border-radius: 0;
  font-family: "Josefin Sans", sans-serif;
  font-size: 16px;
  letter-spacing: 1px;
  color: #fff;
  border: none;
  background: linear-gradient(135deg, #f19de4, #B06449, #F9D576);
  transition: all 0.35s ease;
  border-radius:25px;
}

.btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #F9D576, #b06449, #f19de4);
  color:#fff;
}

.btn:focus,
.btn:active {
  outline: none;
  box-shadow: none;
}


a {
  color: #ffffff;
}

a:hover {
  color: #fff;
  text-decoration: none;
}

li {
  list-style: none;
  font-weight: 200;
  font-size: 1.2rem;
}

li.title {
  font-weight: 300;
  margin-top: 1rem;
  font-size: 1.5rem;
  text-transform: capitalize;
}

.nail-line {
  text-align: center;
  color:#000;
  line-height: 1.9rem;
}

.copy-text {
  font-size: 1rem;
}



/* Footer styling example (keep your colors) */
.footer{
  background:#9487AC; /* 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:#B16D8F;
}

.logo-text{
    color:#fff;
    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:#000;
}
.modal-title{
color:#fff;

}

@media (max-width: 768px) {
  .logo {
    height: 40px;
  }

  .logo-text {
    font-size: 1.1rem;
  }
}

.footer, .modal-footer {
  background-color:#000;
  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 {
  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 #ffffff;
  transition: color transform 0.3s;
  text-align: center;
}

a{
    color:#fff;
    text-decoration:none;
}
a.copy{
  color:#fff;
}

.title{
  text-transform:capitalize;
}

ul{
  list-style: none;
}
h5,p{
   color:#000;
}
.modal-body.modal-service{
 background-color:var(--soft-pink);

  
}

.modal-body.modal-contact{
  background-color:#000;
  color:#fff;
}


