
@import url('https://fonts.googleapis.com/css2?family=Knewave&display=swap');






:root {

  --white: #ffffff;
  --yellow:#F9D576;
  --gold:#B98B4B;
}

/*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;

}


.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;
}

.logo-bar {
    background-color:#000;
    border-bottom:2px solid var(--gold);
}

.logo-text{
    color:#fff;
    font-size:2rem; 
    letter-spacing:0.5px; 
    text-transform:capitalize;  
    font-family: "Knewave", system-ui;
  
}

.logo-text,.modal-title{
text-align:center;
}

.modal-title {
  color:#fff;
  font-size: 2rem;
  text-transform:uppercase;
}

.modal-header {
  border-bottom: none;
  padding: 1rem;

}

@media (max-width: 576px) {
  .modal-title {
    font-size: 1.25rem;     /* mobile-friendly */
    line-height: 1.3;
    padding: 0 2.5rem;     /* prevents overlap with close button */
    letter-spacing: 0.5px;
  }
}

@media (max-width: 768px) {
  .modal-title {
    font-size: 1.6rem;
  }
}



@media (max-width: 400px) {
  .modal-title {
    font-size: 1.1rem;
  }
}



p {
  font-size: 1rem;
  text-transform:capitalize;
}

p,li{
 font-weight:400;
}
.card-header{
  font-weight: 500;
  text-transform: uppercase;
  text-align:center;
  font-size: 1.6rem;
  margin-bottom:15px;
  background-color:var(--yellow);
  border:1px solid #000;
}

@media (max-width: 576px) {
  .card-header {
    font-size: 1.1rem;       /* smaller, readable on phones */
    line-height: 1.25;
    padding: 0.6rem 0.75rem;
    letter-spacing: 0.5px;
  }
}


@media (max-width: 768px) {
  .card-header {
    font-size: 1.3rem;
  }
}



.card-body{
  text-align:center;
}

.card p{
  text-align:justify;
}

.card-footer{
  text-align:center;
}
.product-price{
  text-align:center;
}
.custom-hr {
  border: none;
  height: 3px;
  background-color: #000;
  opacity: 1; /* prevents Bootstrap fading */
}

.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:1px solid #000;
  background: linear-gradient(135deg, #000,#EB890A    , #555);
  transition: all 0.35s ease;
  border-radius:20px;
  text-transform:capitalize;
}

.btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #555,#EB890A, #000);
  color:#fff;
}

.btn:focus,
.btn:active {
  outline: none;
  box-shadow: none;
}



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.3rem;
  text-transform: capitalize;
}



/* HERO HEIGHT + FULL COLUMN FILL */
.hero-row{
  min-height: 70vh;            /* adjust: 60vh, 80vh, or 100vh */
}

.hero-left{
  background: #ffffff;         /* or your brand color */
}



.modal-header{
  background-color:#000;
  text-align:center;
}


@media (max-width: 768px) {
  .logo {
    height: 40px;
  }

  .logo-text {
    font-size: 1.1rem;
  }
}

.footer, .modal-footer {
  background-color:hsl(0, 0%, 0%);
  color:var(--white);
  padding: 12px 0;
}



.modal-dialog {
  max-width: 1200px !important;
}

.card h2{
  font-size:1.1rem;
}


.card p{
letter-spacing:2px;
text-align:justify;
}


a{
    color:#000;
    text-decoration:none;
}
a.copy{
  color:#fff;
}

.title{
  text-transform:capitalize;
}

ul{
  list-style: none;
}
h5,p{
   color:#000;
}


.copy-text {
  font-size: 1rem;
}


.img-fluid{
  width:75%;
}

