@charset "UTF-8";

:root {
  --bs-blue: #0d6efd;
  --bs-indigo: #6610f2;
  --bs-purple: #6f42c1;
  --bs-pink: #d63384;
  --bs-red: #dc3545;
  --bs-orange: #fd7e14;
  --bs-yellow: #ffc107;
  --bs-green: #198754;
  --bs-teal: #20c997;
  --bs-cyan: #0dcaf0;
  --bs-black: #000;
  --bs-white: #fff;
  --bs-gray: #6c757d;
  --bs-gray-dark: #343a40;
  --bs-gray-100: #f8f9fa;
  --bs-gray-200: #e9ecef;
  --bs-gray-300: #dee2e6;
  --bs-gray-400: #ced4da;
  --bs-gray-500: #adb5bd;
  --bs-gray-600: #6c757d;
  --bs-gray-700: #495057;
  --bs-gray-800: #343a40;
  --bs-gray-900: #212529;
  --bs-primary: #3498db;
  --bs-secondary: #2c3e50;
  --bs-success: #198754;
  --bs-info: #0dcaf0;
  --bs-warning: #ffc107;
  --bs-danger: #dc3545;
  --bs-light: #f8f9fa;
  --bs-dark: #212529;
  --bs-primary-rgb: 230, 167, 86;
  --bs-secondary-rgb: 47, 23, 15;
  --bs-success-rgb: 25, 135, 84;
  --bs-info-rgb: 13, 202, 240;
  --bs-warning-rgb: 255, 193, 7;
  --bs-danger-rgb: 220, 53, 69;
  --bs-light-rgb: 248, 249, 250;
  --bs-dark-rgb: 33, 37, 41;
  --bs-white-rgb: 255, 255, 255;
  --bs-black-rgb: 0, 0, 0;
  --bs-body-color-rgb: 33, 37, 41;
  --bs-body-bg-rgb: 255, 255, 255;
  --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
  --bs-body-font-family: Lora, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
  --bs-body-font-size: 1rem;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.5;
  --bs-body-color: #212529;
  --bs-body-bg: #fff;
  --bs-border-width: 1px;
  --bs-border-style: solid;
  --bs-border-color: #dee2e6;
  --bs-border-color-translucent: rgba(0, 0, 0, 0.175);
  --bs-border-radius: 0.375rem;
  --bs-border-radius-sm: 0.25rem;
  --bs-border-radius-lg: 0.5rem;
  --bs-border-radius-xl: 1rem;
  --bs-border-radius-2xl: 2rem;
  --bs-border-radius-pill: 50rem;
  --bs-link-color: #3498db;;
  --bs-link-hover-color: #2980b9;
  --bs-code-color: #d63384;
  --bs-highlight-bg: #fff3cd;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}

body {
  margin: 0;
  font-family: var(--bs-body-font-family);
  font-size: var(--bs-body-font-size);
  font-weight: var(--bs-body-font-weight);
  line-height: var(--bs-body-line-height);
  color: var(--bs-body-color);
  text-align: var(--bs-body-text-align);
  background-color: var(--bs-body-bg);
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

h6,
.h6,
h5,
.h5,
h4,
.h4,
h3,
.h3,
h2,
.h2,
h1,
.h1 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-family: "Raleway", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-weight: 500;
  line-height: 1.2;
}

h1,
.h1 {
  font-size: calc(1.375rem + 1.5vw);
}

h2,
.h2 {
  font-size: calc(1.325rem + 0.9vw);
}

@media (min-width: 1200px) {

  .container-xl,
  .container-lg,
  .container-md,
  .container-sm,
  .container {
    max-width: 1140px;
  }

  h1,
  .h1 {
    font-size: 2.5rem;
  }
  h2,
  .h2 {
    font-size: 2rem;
  }

  h3,
  .h3 {
    font-size: 1.75rem;
  }
  h4,
  .h4 {
    font-size: 1.5rem;
  }
}


h3,
.h3 {
  font-size: calc(1.3rem + 0.6vw);
}  
h4,
.h4 {
  font-size: calc(1.275rem + 0.3vw);
}

h5,
.h5 {
  font-size: 1.25rem;
}

h6,
.h6 {
  font-size: 1rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

b,
strong {
  font-weight: bolder;
}

img,
svg {
  vertical-align: middle;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.container,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-right: auto;
  margin-left: auto;
}


@media (max-width: 576px) {
  .section-heading-lower {
    font-size: 2rem;
    font-weight: 700;
    white-space: normal;
    overflow-wrap: normal;
    word-break: keep-all;
    text-align: center;
    display: inline-block;
  }

  .container-sm,
  .container {
    max-width: 540px;
  }
}

@media (max-width: 992px) {
  .intro-text {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .intro-img {
    order: 2;
    margin-top: 1rem;
  }

  .intro-text>h2,
  .intro-text>p,
  .intro-text>.intro-button {
    order: 1;
  }
  .intro-text {
    position: static;
    transform: none;
    margin-bottom: 1.5rem;
  }

  .intro-img {
    margin-top: 0;
  }
  .container-md,
  .container-sm,
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  
  .container-lg,
  .container-md,
  .container-sm,
  .container {
    max-width: 960px;
  }
}


@media (min-width: 1400px) {

  .container-xxl,
  .container-xl,
  .container-lg,
  .container-md,
  .container-sm,
  .container {
    max-width: 1320px;
  }
}

.btn {
  --bs-btn-padding-x: 0.75rem;
  --bs-btn-padding-y: 0.375rem;
  --bs-btn-font-size: 1rem;
  --bs-btn-font-weight: 400;
  --bs-btn-line-height: 1.5;
  --bs-btn-color: #212529;
  --bs-btn-bg: transparent;
  --bs-btn-border-width: 1px;
  --bs-btn-border-color: transparent;
  --bs-btn-border-radius: 0.375rem;
  --bs-btn-hover-border-color: transparent;
  --bs-btn-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
  --bs-btn-disabled-opacity: 0.65;
  --bs-btn-focus-box-shadow: 0 0 0 0.25rem rgba(var(--bs-btn-focus-shadow-rgb), .5);
  display: inline-block;
  padding: var(--bs-btn-padding-y) var(--bs-btn-padding-x);
  font-size: var(--bs-btn-font-size);
  font-weight: var(--bs-btn-font-weight);
  line-height: var(--bs-btn-line-height);
  color: var(--bs-btn-color);
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  border: var(--bs-btn-border-width) solid var(--bs-btn-border-color);
  border-radius: var(--bs-btn-border-radius);
  background-color: var(--bs-btn-bg);
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.p-0 {
  padding: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}


.text-start {
  text-align: left !important;
}

.text-end {
  text-align: right !important;
}

.text-center {
  text-align: center !important;
}

/* rtl:end:remove */
.text-primary {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important;
}

.text-secondary {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-secondary-rgb), var(--bs-text-opacity)) !important;
}

.text-success {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-success-rgb), var(--bs-text-opacity)) !important;
}

.text-info {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-info-rgb), var(--bs-text-opacity)) !important;
}

body {
  min-height: calc(var(--real-vh, 1vh) * 100);
  overflow-x: hidden;
  position: relative;
  z-index: 0;
  background: none; /* remove any background */
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  background: linear-gradient(rgba(47, 23, 15, 0.65), rgba(47, 23, 15, 0.65)), url("../assets/img/img3.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  will-change: transform;
}


p {
  line-height: 1.75;
}

.text-faded {
  color: #f6e1c5;
}

.site-heading {
  margin-top: 5rem;
  margin-bottom: 5rem;
  text-transform: uppercase;
  line-height: 1;
  font-family: "Raleway", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

.site-heading .site-heading-upper {
  display: block;
  font-size: 2rem;
  font-weight: 800;
}

.site-heading .site-heading-lower {
  font-size: 5rem;
  font-weight: 100;
  line-height: 4rem;
}

.page-section {
  margin-top: 5rem;
  margin-bottom: 5rem;
}

.section-heading {
  text-transform: uppercase;
}

.section-heading .section-heading-upper {
  display: block;
  font-size: 1rem;
  font-weight: 800;
}

.section-heading .section-heading-lower {
  font-size: 2rem;
  font-weight: 700;
  white-space: normal;
  overflow-wrap: normal;
  word-break: keep-all;
  text-align: center;
  display: inline-block;
}


.bg-faded {
  background-color: #f6e1c5;
}

.btn-xl {
  font-weight: 700;
  font-size: 0.8rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  padding-left: 2rem;
  padding-right: 2rem;
}


.btn {
  box-shadow: 0px 3px 3px 0px rgba(33, 37, 41, 0.1);
}

.cta {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: rgba(230, 167, 86, 0.9);
}

.cta .cta-inner {
  position: relative;
  padding: 3rem;
  margin: 0.5rem;
}

.cta .cta-inner:before {
  border-radius: 0.5rem;
  content: "";
  position: absolute;
  top: -0.5rem;
  bottom: -0.5rem;
  left: -0.5rem;
  right: -0.5rem;
  border: 0.25rem solid rgba(255, 255, 255, 0.85);
  z-index: -1;
}

.footer {
  background-color: rgba(47, 23, 15, 0.9);
}

.intro {
  position: relative;
}

@media (min-width: 992px) {
  .product-item .product-item-title {
    position: relative;
    z-index: 1;
    margin-bottom: -3rem;
  }

  .product-item .product-item-img {
    position: relative;
    z-index: 0;
    max-width: 60vw;
  }

  .product-item .product-item-description {
    position: relative;
    z-index: 1;
    margin-top: -3rem;
    max-width: 50vw;
  }
  .list-hours {
    width: 50%;
    font-size: 1.1rem;
  }

  #mainNav .navbar-nav .nav-item .nav-link {
    font-size: 0.9rem;
  }

  #mainNav .navbar-nav .nav-item .nav-link:hover {
    color: rgba(255, 255, 255, 0.4);
  }

  #mainNav .navbar-nav .nav-item.active .nav-link:hover {
    color: #e6a756;
  }

  .about-heading .about-heading-img {
    position: relative;
    z-index: 0;
  }

  .about-heading .about-heading-content {
    margin-top: -5rem;
    position: relative;
    z-index: 1;
  }

  .intro {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
  }

  .intro .intro-img {
    width: 60%;
    object-fit: cover;
    margin-left: 400px;
    z-index: 1;
  }

  .intro .intro-text {
    position: absolute;
    top: 3rem;
    left: 0;
    width: 45%;
    z-index: 2;
    background-color: #f6e1c5;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  }

  .intro .intro-text .intro-button {
    width: 100%;
    position: absolute;
    bottom: -2rem;
    left: 0;
  }
}

@media (min-width: 1200px) {
  .intro .intro-text {
    width: 45%;
  }
}

.intro-img {
  max-height: 500px;
  object-fit: cover;
  width: 100%;
}

.btn.btn-primary.btn-xl {
  font-size: 2rem;
  font-weight: bold;
  display: inline-block;
  text-align: center;
  color: inherit;
  cursor: default;
  padding: 0;
  margin-top: 1rem;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.section-heading-upper::after {
  content: "";
  display: block;
  width: 0%;
  height: 2px;
  background-color: #e6a756;
  transition: width 0.4s ease-in-out;
  margin: 0.5rem auto 0;
}

.section-heading-upper:hover::after {
  width: 100%;
}


.intro-text,
.cta-inner,
.site-heading {
  animation: fadeInUp 0.8s ease-in-out both;
}

.intro-img:hover {
  transform: scale(1.03);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
}

.site-heading-lower,
.section-heading-lower {
  text-shadow: 1px 1px 2px #e6a756;
}

.footer {
  animation: fadeInUp 1s ease-in-out 0.6s both;
}

.intro-text:hover {
  box-shadow: 0 0 30px rgba(246, 225, 197, 0.6);
}

.btn.btn-primary.btn-xl:hover {
  animation: pulse 1s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.03);
  }

  100% {
    transform: scale(1);
  }
}

a,
button,
.btn,
.intro-text,
.intro-img,
.site-heading span,
.section-heading span {
  transition: all 0.3s ease-in-out;
}

.site-heading {
  animation: fadeInDown 1s ease-out;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.intro,
.cta-inner,
.footer {
  animation: fadeInUp 1s ease-in-out both;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.section-heading-upper::after {
  content: "";
  display: block;
  width: 0%;
  height: 2px;
  background-color: #e6a756;
  transition: width 0.4s ease-in-out;
  margin: 0.5rem auto 0;
}

.section-heading-upper:hover::after,
.site-heading-upper:hover::after {
  width: 100%;
}

.site-heading-lower,
.section-heading-lower {
  text-shadow: 1px 1px 2px rgba(230, 167, 86, 0.5);
}

.intro-img:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.intro-text:hover {
  box-shadow: 0 0 30px rgba(246, 225, 197, 0.5);
}

@keyframes popIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes pulse-glow {

  0%,
  100% {
    text-shadow: 0 0 5px #e6a756, 0 0 10px #e6a756;
  }

  50% {
    text-shadow: 0 0 15px #e6a756, 0 0 25px #e6a756;
  }
}

.btn.btn-primary.btn-xl::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  padding: 3px;
  background: linear-gradient(45deg, #ffccaa, #f6e1c5, #e6a756, #ffccaa);
  background-size: 300% 300%;
  animation: borderGlow 5s linear infinite;
  z-index: -1;
  filter: blur(3px);
}

.btn.btn-primary.btn-xl::after {
  content: "✨";
  position: absolute;
  font-size: 1.2rem;
  top: -0.6rem;
  right: -0.6rem;
  animation: sparkle 2s infinite ease-in-out;
  pointer-events: none;
  color: #000;
}

.btn.btn-primary.btn-xl {
  position: relative;
  padding: 1rem 2rem;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(230, 167, 86, 0.4);
  text-shadow: 1px 1px 2px #00000030;
  background-color: #fffbe6;
  color: #333;
  border: 2px solid transparent;
}

@keyframes borderGlow {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes sparkle {

  0%,
  100% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }

  50% {
    transform: scale(1.3) rotate(20deg);
    opacity: 0.6;
  }
}

.footer {
  background: linear-gradient(to right,
      rgba(224, 156, 66, 0.9),
      rgba(230, 167, 86, 0.9));
  padding: 2rem 0;
  text-align: center;
  color: rgb(0, 0, 0);
  font-weight: 500;
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(4px);
  animation: fadeInUp 1s ease-in 0.8s both;
  border-top: 1px solid rgba(230, 167, 86, 0.8);
}


.footer p {
  margin: 0;
  font-size: 0.9rem;
  opacity: 1;
  letter-spacing: 1px;
  font-size: x-large;
}

.cta-inner {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.cta-inner:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(230, 167, 86, 0.2);
}

@media (max-width: 500px) {
  .footer {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .footer p {
    font-size: 1rem !important;
    letter-spacing: 0.5px !important;
  }

  .btn.btn-primary.btn-xl.coming-soon-btn {
    font-size: 1.1rem !important;
    padding: 0.5rem 1rem !important;
    border-radius: 10px !important;
    margin-top: 0.5rem !important;
  }

  .btn.btn-primary.btn-xl.coming-soon-btn::after {
    font-size: 0.9rem !important;
    top: -0.3rem !important;
    right: -0.3rem !important;
  }
}

.fix-numbers {
  font-feature-settings: "tnum"; 
  font-variant-numeric: tabular-nums;
  font-family: "Segoe UI", Roboto, sans-serif;
}
.cta-inner {
  padding: 2rem 2rem;
  font-size: clamp(0.9rem, 2vw, 1.2rem); 
  border-radius: 1rem;
  background-color: rgba(246, 225, 197, 0.95);
  transition: all 0.3s ease-in-out;
  max-width: 100%;
}

.section-heading-lower {
  font-size: clamp(1.2rem, 3vw, 2.2rem); 
  line-height: 1.2;
  display: inline-block;
  word-break: break-word;
  white-space: normal;
  padding: 0.5rem 1rem;
  margin: auto;
}

@media (max-width: 768px) {
  .cta-inner {
    padding: 1.2rem 1rem;
  }

  .section-heading-lower {
    font-size: 1.6rem; 
  }
}

@media (max-width: 480px) {
  .cta {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .cta-inner {
    padding: 1rem 1rem;
    font-size: 1rem;
    border-radius: 0.75rem;
  }

  .section-heading-lower {
    font-size: 1.5rem !important;
    line-height: 1.3;
    padding: 0.3rem 0.5rem;
    word-break: break-word;
    white-space: normal;
  }

  .section-heading-upper {
    font-size: 0.85rem !important;
  }

  .cta-inner p {
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: justify;
  }
}

@media (max-width: 480px) {
  .container {
    max-width: 100% !important;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

@media (max-width: 480px) {
  .site-heading .site-heading-lower {
    font-size: 2.5rem;
    line-height: 1.2;
    word-break: break-word;
    text-align: center;
    padding: 0 0.5rem;
  }

  .site-heading .site-heading-upper {
    font-size: 1.1rem;
    text-align: center;
  }
}

.btn.btn-primary.btn-xl.coming-soon-btn {
  padding-top: 1rem; 
}

body {
  height: calc(var(--real-vh, 1vh) * 100);
}

