/* ================================================= */
/* ------------------ General Style ---------------- */
/* ================================================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  color: #222;
  font-family: 'Montserrat', sans-serif;
  font-weight: 200;
  background: #fff;
  line-height: 1.6;
}

a {
  color: #007bff;
  transition: color 0.3s ease;
  text-decoration: none;
}

a:hover,
a:focus {
  color: #222;
  text-decoration: none;
}

p {
  font-size: 16px;
  margin-bottom: 15px;
}

h2 {
  color: #222;
  font-weight: 200;
}

@media (max-width: 767px) {
  h2 { font-size: 26px; }
}

@media (max-width: 575px) {
  h2 { font-size: 18px; }
}

/* ================================================= */
/* ------------------ Header Style ----------------- */
/* ================================================= */
.header {
  position: relative;
  background: url(../img/header-bg.jpg) center/cover no-repeat;
  padding: 100px 0;
  color: #222;
  text-align: center;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.85);
  z-index: 0;
}

.header .container {
  position: relative;
  z-index: 1;
}

.header .brand {
  font-size: 60px;
  font-weight: 200;
  text-transform: uppercase;
  letter-spacing: 8px;
  display: inline-block;
  margin-bottom: 25px;
  position: relative;
  color: #222;
}

.header .brand::before,
.header .brand::after {
  content: '';
  position: absolute;
  left: 50%;
  width: 120px;
  height: 1px;
  background: #007bff;
  transform: translateX(-50%);
}

.header .brand::before { top: -10px; }
.header .brand::after { bottom: -10px; }

.header h2 {
  font-size: 36px;
  font-weight: 300;
  margin-bottom: 15px;
}

.header .tagline {
  font-size: 22px;
  margin-bottom: 40px;
}

.header .btn img {
  max-width: 180px;
  border-radius: 6px;
  margin: 5px;
}

@media (max-width: 768px) {
  .header { padding: 70px 0; }
  .header .brand { font-size: 40px; }
  .header h2 { font-size: 28px; }
  .header .tagline { font-size: 20px; }
}

/* ================================================= */
/* -------------- Section Header Style ------------- */
/* ================================================= */
.section-header {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.section-header h2 {
  color: #007bff;
  font-size: 38px;
}

.section-header::before {
  content: '';
  position: absolute;
  width: 120px;
  height: 1px;
  background: #007bff;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
}

/* ================================================= */
/* ------------------ About Style ------------------ */
/* ================================================= */
.about {
  padding: 50px 0;
  background: #fff;
}

.about .img-col img {
  width: 100%;
  border-radius: 5px;
  transition: transform 0.3s ease;
}

.about .img-col:hover img {
  transform: scale(1.05);
}

.about .content-col h3 {
  font-weight: 300;
  margin-bottom: 15px;
}

.about .content-col p {
  margin-bottom: 20px;
}

.about .content-col a {
  display: inline-block;
  background: #007bff;
  color: #fff;
  padding: 10px 25px;
  border-radius: 5px;
  text-transform: uppercase;
  font-weight: 300;
  transition: all 0.3s ease;
}

.about .content-col a:hover {
  background: #222;
  color: #007bff;
}

h3.product-title {
  font-size: 18px;
  text-transform: uppercase;
  margin-top: 10px;
}

p.spice {
  color: red;
  font-weight: 500;
}

/* ================================================= */
/* ------------------ Feature Style ---------------- */
/* ================================================= */
.feature {
  padding: 50px 0;
  background: #f7f7f7;
  text-align: center;
}

.feature .f-item {
  margin-bottom: 30px;
}

.feature .f-item a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 75px;
  height: 75px;
  border-radius: 50%;
  font-size: 36px;
  background: #fff;
  box-shadow: 0 0 4px #ccc;
  margin-bottom: 10px;
}

.feature .f-item h3 {
  font-size: 16px;
  font-weight: 300;
  text-transform: uppercase;
}

.feature .f-img {
  display: inline-block;
  padding: 10px;
  border-radius: 15px;
  box-shadow: 0 0 5px #ccc;
}

.feature .f-img img {
  max-height: 480px;
  width: 100%;
  border-radius: 15px;
}

/* ================================================= */
/* ---------------- Subscribe Style ---------------- */
/* ================================================= */
.subscribe {
  position: relative;
  text-align: center;
  padding: 50px 0;
  background: url(../img/subscribe-bg.jpg) center/cover no-repeat;
  color: #fff;
}

.subscribe::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 0;
}

.subscribe .container {
  position: relative;
  z-index: 1;
}

.subscribe .section-header h2 {
  color: #fff;
}

.subscribe .section-header::before {
  background: #fff;
}

/* ================================================= */
/* ------------------ Footer Style ----------------- */
/* ================================================= */
.footer {
  text-align: center;
  padding: 25px 0;
  background: #fff;
}

.footer img {
  max-width: 180px;
  border-radius: 5px;
  margin: 5px;
}
