body{
  font-family: "Cormorant", serif;
  background:#1a3048;
  overflow-x:hidden;
}

/* LINKS */
a{
  font-size:18px;
  color:#1b7a7e;
  font-weight:700;
  text-decoration:none;
}
a:hover{
  color:#FFF;
}

/* LOGO */
.logo{
  width:150px;
  max-width:100%;
  height:auto;
}

/* HERO SECTION */
.top-bg{
  background:url('../top-bg.jpg') center/cover no-repeat;
  position:relative;
  overflow:hidden;
  height:700px;
  border-radius:5px;
  padding:20px;
}

/* 🔥 DARK OVERLAY FOR READABILITY */
.top-bg::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.35);
  border-radius:5px;
  z-index:1;
}

.top-bg > *{
  position:relative;
  z-index:2;
}

/* TEXT */
.punchline{
  font-size:28px;
  color:#291b1a;
  font-weight:700;
  padding-top:75px;
  line-height:55px;
  word-break:break-word;
}

.content{
  font-size:18px;
  color:#291b1a;
  padding-top:30px;
  text-align:justify;
}

.description{
  font-size:18px;
  color:#291b1a;
}

/* FORM */
.lable{
  font-size:18px;
  font-weight:700;
  color:#291b1a;
}

.form-control,
.form-select{
  font-size:16px;
  font-weight:600;
}

/* BUTTON */
.orderBtn,
.btn-custom{
  font-size:18px;
  color:#FFF;
  font-weight:700;
  background:#291b1a;
  border:1px solid #291b1a;
  padding:8px 12px;
  border-radius:5px;
}

/* IMAGE */
#fabricImage{
  max-width:100%;
  height:auto;
  display:block;
}

/* keep overlap only on desktop */
.bg-circle{
  margin-top:-50px;
}

/* FOOTER */
.footer{
  color:#FFF;
  font-size:16px;
  margin-top:10px;
}

.footerlink{
  color:#FFF;
  font-size:16px;
  padding-left:20px;
}

/* ================================= */
/* ✅ TABLET */
/* ================================= */
@media (max-width: 992px){

  .top-bg{
    height:auto;
  }

  .punchline{
    font-size:40px;
    line-height:45px;
    padding-top:40px;
  }

  .content{
    font-size:16px;
  }

  .description{
    font-size:16px;
  }

  /* remove overlap */
  .bg-circle{
    margin-top:0;
    text-align:center;
  }

}

/* ================================= */
/* ✅ MOBILE */
/* ================================= */
@media (max-width: 768px){

  /* NAVBAR STACK */
  .row:first-child .col-md-6{
    width:100%;
    text-align:center !important;
  }

  /* TEXT WHITE ON MOBILE */
  .top-bg .punchline,
  .top-bg .content,
  .top-bg .description{
    color:#FFF !important;
    text-align:center;
  }

  .punchline{
    font-size:30px;
    line-height:36px;
    padding-top:20px;
  }

  .content{
    font-size:15px;
  }

  .description{
    font-size:15px;
  }

  /* IMAGE FIX */
  #fabricImage{
    margin-top:20px;
  }

  /* FORM FULL WIDTH */
  .form-container{
    width:100%;
  }

  /* BUTTON FULL WIDTH */
  .btn-custom,
  .orderBtn{
    width:100%;
  }

  /* FOOTER CENTER */
  .footer{
    text-align:center !important;
  }

}

/* ================================= */
/* ✅ SMALL MOBILE */
/* ================================= */
@media (max-width: 480px){

  .punchline{
    font-size:24px;
    line-height:30px;
  }

  .content{
    font-size:14px;
  }

  .description{
    font-size:14px;
  }

  .logo{
    width:110px;
  }

}