@import url('https://fonts.googleapis.com/css2?family=Exo:ital,wght@0,100..900;1,100..900&display=swap');

:root {
  /* Bootstrap override */
  --bs-primary: #0d6efd;
  --bs-success: #02B86F;
  --bs-warning: #F4B400;
  --bs-light: #E9F0F5;
  --bs-dark: #002C48;
  --bs-danger: #dc3545;

  --bs-body-bg: #ffffff;
  --bs-body-color: #212529;

  --bs-border-radius: 0.5rem;

  /* WHATSAPP */
  --brand-whatsapp: #25D366;

  --color-dark: var(--bs-dark);
  --color-primary: var(--bs-primary);
  --color-success: var(--bs-success);
  --color-warning: var(--bs-warning);
}

/* UTILITES */
body {
    font-family: "Exo", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

.text-whatsapp {
  color: var(--brand-whatsapp);
  font-weight: 800;
}

.bg-dark {
  background-color: var(--bs-dark) !important;
}

.text-brand-dark {
  color: var(--bs-dark);
}

/* NAVBAR */
.custom-navbar {
  background-color: var(--bs-dark);
}

.custom-navbar .nav-link {
  color: var(--bs-dark);
  transition: opacity 0.2s ease;
}

.custom-navbar .nav-link:hover {
  opacity: 1;
}

/* HERO */
.hero {
  min-height: 100vh;
  background: url("/images/vitaly-gariev-0QPMpD2wTb8-unsplash.jpg") center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 90px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 44, 72, 0.65);
}

.hero .container {
  position: relative;
  z-index: 2;
}

/* CARDS */
.card {
  border-radius: var(--bs-border-radius);
  border: 1px solid var(--bs-light);
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}

.icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
}

/* BADGES */
.discount-badge {
  display: inline-block;
  background: #25d366;
  color: #0b3d1f;
  padding: 3px 10px;
  font-weight: 700;
  border-radius: 6px;
}

.discount-badge-danger {
  display: inline-block;
  background: rgba(220, 53, 69, 0.18);
  color: #b02a37;
  padding: 2px 8px;
  font-weight: 600;
  border-radius: 6px;
}

.badge-primary-soft {
  display: inline-block;
  background: rgba(13, 110, 253, 0.12);
  color: var(--bs-dark);
  padding: 4px 10px;
  font-weight: 500;
  border-radius: 6px;
}

/* PRICE BOX */
.price-box {
  border-left: 4px solid var(--brand-whatsapp);
  background: #fff;
  color: #111;
}

.price-box small {
  color: #2b2b2b;
  font-weight: 500;
}

/* TABLE */
.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* scrollbar only if needed */
.table-responsive::-webkit-scrollbar {
  height: 6px;
}

.table-responsive::-webkit-scrollbar-thumb {
  background: #dc3545;
  border-radius: 10px;
}

/* IFRAME */
iframe {
  width: 100%;
  border: 0;
  border-radius: 8px;
  height: 1000px; /* mobile */
}

/* FOOTER */
.social-icon {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

@media (min-width: 992px) {
  iframe {
    height: 720px; /* desktop */
  }
}

/* LAYOUT FIX SCROLL */
section {
  scroll-margin-top: 80px;
}
