@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  scroll-behavior: auto !important;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  width: 100%;
}

:root {
  --SectionPadding: 70px 0;
  --HeadingFontSize: 55px;
  --BodyFontSize: 18px;
  --TitleFontSize: 52px;
  --buttonFontSize: 18px;
  --ServiceTitleFontSize: 32px;
  --FontHeading: "Baloo 2";
  --FontBody: "Montserrat";
  --ButtonBg: #000;
  --PrimaryColor: #fff;
  --hover-text: #000;
  --BannerTitleFontSize: 58px;
  --SubTitleFontSize: 24px;
  /* 🔥 Brand Colors */
  --BrandYellow: #FDFA00;
  --BrandOrange: #FE9103;
  --BrandDarkOrange: #F55E01;
  --BrandGreen: #93BE00;
  --BrandBrown: #321201;
  --BrandCream: #FFF7E6;
  /* Section Background */
  --ProductSectionBg: #E9BF8C;
}

::-moz-selection {
  background: var(--BrandBrown) !important;
  color: var(--BrandCream) !important;
  text-shadow: none;
}

::selection {
  background: var(--BrandBrown) !important;
  color: var(--BrandCream) !important;
  text-shadow: none;
}

@font-face {
  font-family: "Montserrat";
  src: url(../fonts/Montserrat/Montserrat-VariableFont_wght.ttf);
}
@font-face {
  font-family: "SpaceMono";
  src: url(../fonts/Space_Mono/SpaceMono-Regular.ttf);
}
@font-face {
  font-family: "SpaceMonoBlod";
  src: url(../fonts/Space_Mono/SpaceMono-Bold.ttf);
}
body {
  font-family: var(--FontBody);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--FontHeading);
}

.SectionTitle {
  margin-bottom: 42px;
  text-align: center;
}
.SectionTitle .Title {
  text-transform: capitalize;
  font-size: var(--HeadingFontSize);
  color: #4A1F00;
  text-shadow: 2px 2px 0 rgba(233, 191, 140, 0.9), 3px 3px 0 rgba(233, 191, 140, 0.6);
}
.SectionTitle p {
  font-size: 24px;
  color: #E9BF8C;
}

section {
  padding: var(--SectionPadding);
  overflow: hidden;
}

.WebBtn {
  display: inline-block;
  font-family: var(--FontBody);
  background: linear-gradient(135deg, var(--BrandYellow), var(--BrandOrange));
  color: var(--BrandBrown);
  font-weight: 800;
  padding: 12px 34px;
  border-radius: 40px;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 6px 0 var(--BrandDarkOrange);
  transition: all 0.2s ease;
}
.WebBtn:hover {
  transform: translateY(2px);
  box-shadow: 0 3px 0 var(--BrandDarkOrange);
}

#HeaderStrip {
  font-family: var(--FontHeading);
  text-align: center;
  padding: 10px;
  font-size: calc(var(--BodyFontSize) + 2px);
  letter-spacing: 1px;
  background: #321201;
  color: #fff;
  text-shadow: 1px 1px 0 #4A1F00, 2px 1px 0 #4A1F00, 3px 3px 0 #4A1F00, 2px 3px 0 #4A1F00, 2px 2px 0 #4A1F00;
}

#Header {
  width: 100%;
  position: absolute;
  z-index: 10;
}
#Header .HeaderContainer {
  margin: 0 auto;
  padding: 8px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#Header .HeaderContainer .LogoWrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
#Header .HeaderContainer .LogoWrapper .HeaderLogo {
  width: 100px;
  -o-object-fit: contain;
     object-fit: contain;
}

#Hero {
  padding: 0;
}
#Hero .HeroImage {
  height: 95vh;
  position: relative;
}
#Hero .HeroImage .left_img {
  position: absolute;
  top: 20%;
  left: -7%;
  width: 12%;
}
#Hero .HeroImage .right_img {
  position: absolute;
  top: 50%;
  right: -7%;
  width: 11%;
  transform: rotate(-20deg);
}
#Hero .HeroImage img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}

.ProductShowcaseSection {
  background: #FEFEFB;
  /* Image + Title Wrapper */
  /* Title */
  /* USP Section */
}
.ProductShowcaseSection .ProductRow {
  margin-top: 80px;
}
.ProductShowcaseSection .ProductCard {
  background-color: #ffffff;
  border-radius: 28px;
  padding: 28px;
  height: 100%;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.ProductShowcaseSection .ProductCard p {
  color: #321201;
  font-weight: 500;
}
.ProductShowcaseSection .ProductCard:hover {
  transform: translateY(-10px) rotate(-1deg);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}
.ProductShowcaseSection .ProductImageWrap {
  position: relative;
  margin-bottom: 40px;
}
.ProductShowcaseSection .ProductImage {
  max-height: 300px;
  margin: 0 auto;
  display: block;
  border-radius: 16px;
}
.ProductShowcaseSection .ProductTitle {
  font-family: var(--FontHeading);
  font-size: 26px;
  font-weight: 900;
  text-transform: uppercase;
  background-color: #ffffff;
  color: var(--BrandBrown);
  padding: 10px 24px;
  border-radius: 40px;
  position: absolute;
  left: 50%;
  bottom: -20px;
  transform: translateX(-50%) rotate(-2deg);
  box-shadow: 0 6px 0 rgba(0, 0, 0, 0.12);
  white-space: nowrap;
}
.ProductShowcaseSection .ShopNowBtn {
  display: inline-block;
  font-family: var(--FontBody);
  background: linear-gradient(135deg, var(--BrandYellow), var(--BrandOrange));
  color: var(--BrandBrown);
  font-weight: 800;
  padding: 12px 34px;
  border-radius: 40px;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 6px 0 var(--BrandDarkOrange);
  transition: all 0.2s ease;
}
.ProductShowcaseSection .ShopNowBtn:hover {
  transform: translateY(2px);
  box-shadow: 0 3px 0 var(--BrandDarkOrange);
}
.ProductShowcaseSection .UspRow {
  margin-top: 70px;
  text-align: center;
}
.ProductShowcaseSection .UspItem {
  font-family: var(--FontHeading);
  font-size: 32px;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
  color: #93BE00;
  letter-spacing: 2px;
}

/* 🎨 Product Color Themes */
.ThemeYellow {
  border-top: 6px solid #C98545;
  transform: rotate(-10deg);
}

.ThemeGreen {
  border-top: 6px solid var(--BrandGreen);
  transform: rotate(5deg);
}

.ThemeOrange {
  border-top: 6px solid #FE9103;
  transform: rotate(12deg);
}

.DecorImage {
  padding-top: 0px;
}

#CTA {
  background-color: #321201;
  padding: 30px 0 0;
}
#CTA .SectionTitle {
  text-align: left;
}
#CTA .SectionTitle .Title {
  max-width: 70%;
  font-size: var(--HeadingFontSize);
  color: #fff;
  text-shadow: 2px 2px 0 #4A1F00, 3px 3px 0 #4A1F00;
}
#CTA .SectionTitle p {
  color: #e6d1b0;
}
#CTA .CurveMarquee {
  width: 100%;
  overflow: hidden;
  padding: 0px 0 30px;
}
#CTA .CurveMarquee svg {
  width: 200%;
  height: 200px;
}
#CTA .CurveText {
  font-family: "Baloo 2", cursive;
  font-size: var(--HeadingFontSize);
  font-weight: 900;
  text-transform: uppercase;
  fill: #FFFFFF;
  letter-spacing: 2px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  color: #FFFFFF;
  text-shadow: 2px 2px 0 #4A1F00, 3px 3px 0 #4A1F00, 4px 4px 0 #4A1F00, 5px 5px 0 #4A1F00, 6px 6px 0 #4A1F00;
}

.ContactSection {
  padding: var(--SectionPadding);
  background: url("../images/FormBg.png");
  padding-bottom: 150px;
}

.ContactWrapper {
  max-width: 820px;
  margin: 0 auto;
  background-color: var(--PrimaryColor);
  border-radius: 30px;
  padding: 50px 40px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.12);
}

.ContactTitle {
  font-family: var(--FontHeading);
  font-size: var(--TitleFontSize);
  font-weight: 900;
  text-align: center;
  margin-bottom: 40px;
  color: var(--BrandBrown);
  text-shadow: var(--TextShadowDepth1), var(--TextShadowDepth2), var(--TextShadowDepth3);
}

/* Form */
.ContactForm .FormGroup {
  margin-bottom: 22px;
}
.ContactForm input,
.ContactForm textarea {
  width: 100%;
  font-family: var(--FontBody);
  font-size: var(--BodyFontSize);
  padding: 16px 20px;
  border-radius: 18px;
  border: 2px solid #f2e3c7;
  background-color: #fffaf2;
  outline: none;
  transition: all 0.2s ease;
}
.ContactForm input::-moz-placeholder, .ContactForm textarea::-moz-placeholder {
  color: #9b7b4e;
  font-weight: 500;
}
.ContactForm input::placeholder,
.ContactForm textarea::placeholder {
  color: #9b7b4e;
  font-weight: 500;
}
.ContactForm input:focus,
.ContactForm textarea:focus {
  border-color: var(--ButtonGradientEnd);
  box-shadow: 0 0 0 3px rgba(254, 145, 3, 0.2);
  background-color: #ffffff;
}
.ContactForm textarea {
  resize: none;
}

/* Submit Button */
.ContactSubmitBtn {
  margin-top: 10px;
  border: none;
}

.SiteFooter {
  background-color: #321201;
  padding: 70px 0 30px;
  color: #ffffff;
}
.SiteFooter .FooterRow {
  margin-bottom: 40px;
}
.SiteFooter .FooterBrand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.SiteFooter .FooterBrand .FooterLogo {
  max-width: 120px;
  margin-bottom: 18px;
}
.SiteFooter .FooterBlock {
  margin-top: 10px;
}
.SiteFooter .FooterTitle {
  font-family: var(--FontHeading);
  font-size: 26px;
  font-weight: 900;
  margin-bottom: 14px;
  color: var(--Yellow);
}
.SiteFooter .FooterText {
  font-family: var(--FontBody);
  font-size: var(--BodyFontSize);
  line-height: 1.6;
  color: #f3e4c9;
}
.SiteFooter .FooterSocials {
  display: flex;
  gap: 14px;
  margin-top: 12px;
}
.SiteFooter .SocialIcon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--BrandYellow), var(--BrandOrange));
  color: var(--BrandBrown);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  text-decoration: none;
  box-shadow: 0 4px 0 var(--ButtonShadowColor);
  transition: transform 300ms ease, box-shadow 0.15s ease;
}
.SiteFooter .SocialIcon i {
  line-height: 1;
}
.SiteFooter .SocialIcon:hover {
  transform: translateY(4px);
  box-shadow: 0 2px 0 var(--ButtonShadowColor);
}
.SiteFooter .SocialIcon:active {
  transform: translateY(4px);
  box-shadow: none;
}
.SiteFooter .FooterBottom {
  text-align: center;
  font-family: var(--FontBody);
  font-size: 14px;
  color: #e6d1b0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 20px;
}
.SiteFooter .FooterBottom a {
  color: var(--BrandOrange);
  text-decoration: none;
  font-weight: 500;
}
.SiteFooter .FooterBottom a:hover {
  text-decoration: underline;
}

.DecorImage.Footer {
  margin-top: -100px;
  background: transparent;
}

.BrandStorySection {
  padding: 100px 0;
  background: linear-gradient(to bottom, #FFF7E6, #F5E2C4);
}

.BrandStoryRow {
  align-items: center;
}

/* Image */
.BrandStoryImageWrap {
  position: relative;
  text-align: center;
}

.BrandStoryImage {
  max-width: 100%;
  border-radius: 30px;
  box-shadow: 0 30px 60px rgba(50, 18, 1, 0.2);
  transform: rotate(-2deg);
}

/* Content */
.BrandStoryContent {
  padding-left: 30px;
}

.BrandStoryTitle {
  font-family: var(--FontHeading);
  font-size: var(--BannerTitleFontSize);
  font-weight: 900;
  color: #321201;
  margin-bottom: 20px;
  text-shadow: var(--TextShadowDepth1), var(--TextShadowDepth2), var(--TextShadowDepth3);
}

.BrandStoryLead {
  font-size: 22px;
  font-weight: 700;
  color: #FE9103;
  margin-bottom: 20px;
}

.BrandStoryContent p {
  font-family: var(--FontBody);
  font-size: var(--BodyFontSize);
  line-height: 1.8;
  color: #5a321b;
  margin-bottom: 18px;
}

.BrandStoryHighlight {
  font-family: var(--FontHeading);
  font-size: 24px;
  color: #321201;
}

/* Emphasis Points */
.BrandStoryPoints {
  margin: 30px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.BrandStoryPoints span {
  background: linear-gradient(135deg, var(--ButtonGradientStart), var(--ButtonGradientEnd));
  padding: 10px 18px;
  border-radius: 30px;
  font-family: var(--FontHeading);
  font-weight: 800;
  color: #321201;
  box-shadow: 0 4px 0 var(--ButtonShadowColor);
}

/* Signature */
.BrandStorySignature {
  margin-top: 30px;
}
.BrandStorySignature strong {
  display: block;
  font-family: var(--FontHeading);
  font-size: 28px;
  color: #321201;
}
.BrandStorySignature span {
  font-family: var(--FontBody);
  color: #FE9103;
  font-weight: 600;
}

@media (max-width: 991px) {
  .BrandStoryContent {
    padding-left: 0;
    margin-top: 40px;
    text-align: center;
  }
  .BrandStoryPoints {
    justify-content: center;
  }
}/*# sourceMappingURL=style.css.map */