/*
Jewel Media Production - Home 01 brand theme overrides
Scoped to Home 01 only. Recolors the existing template to the
Jewel brand palette (#000000 / #54CBFA / #FFFFFF) and swaps in the
brand font for display headings. Does not alter template structure.
*/

/* ---------- Brand font ---------- */
@font-face {
  font-family: "GlimmerGroove";
  src: url("../fonts/jewel/GlimmerGroove-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ---------- Brand palette ---------- */
:root {
  --theme: #54CBFA;
  --header: #000000;
  --header2: #000000;
  --body-bg: #000000;
  --bg: #0A0A0A;
  --border: #232323;
}

body.body-bg {
  background-color: #000000;
}

/* ---------- Display / heading font ---------- */
.hero-1 .hero-content h1,
.section-title h2,
.project-title,
.message-items h2,
.footer-content h3 {
  font-family: "GlimmerGroove", "Marcellus", serif;
  letter-spacing: 0.5px;
}

.section-title h2 b,
.hero-1 .hero-content h1 b {
  color: var(--theme);
}

/* ---------- Remove multicolor SaaS-style glow blobs ---------- */
.color-bg,
.color-bg-2,
.circle-bg {
  display: none !important;
}

/* ---------- Eyebrow labels: swap yellow star icon for a brand accent ---------- */
.section-title h6 img {
  display: none;
}

.section-title h6 {
  padding-left: 26px;
  color: var(--theme);
}

.section-title h6::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 16px;
  height: 2px;
  background-color: var(--theme);
}

.project-title img {
  display: none;
}

/* ---------- Hero ---------- */
.hero-secton.hero-1 {
  background-color: #000000;
  background-position: center top;
}

.hero-1 .hero-content p {
  color: var(--theme);
}

.hero-1 .hero-content p.hero-desc {
  color: var(--text);
  font-size: 18px;
  text-transform: none;
  font-weight: 400;
  max-width: 620px;
  margin: 20px auto 0;
}

.hero-1 .hero-content .hero-buttons {
  margin-top: 320px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

@media (max-width: 1399px) {
  .hero-1 .hero-content .hero-buttons {
    margin-top: 40px;
  }
}

.hero-1 .hero-content .link-btn {
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  padding-bottom: 4px;
}

.hero-1 .hero-content .link-btn:hover {
  color: var(--theme);
  border-color: var(--theme);
}

.hero-1 .hero-image.hero-mark-strip {
  background-color: #050505;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.hero-1 .hero-image.hero-mark-strip img {
  width: auto;
  height: 46%;
  opacity: 0.9;
}

.message-items .lets-circle {
  font-size: 15px;
}

/* ---------- Buttons / links ---------- */
.theme-btn {
  color: var(--theme);
}

.link-btn {
  color: var(--white);
}

.link-btn:hover {
  color: var(--theme);
}

/* ---------- Header CTA button sizing ---------- */
.header-right .theme-btn {
  padding: 14px 28px;
  font-size: 15px;
  margin-right: 20px;
}

/* ---------- Accordion / Why Jewel ---------- */
.accordion-button:not(.collapsed) {
  color: var(--theme) !important;
}

/* ---------- Logo sizing fix (prevents intrinsic PNG size from breaking header) ---------- */
.header-1 .header-left .logo {
  flex-shrink: 0;
}

.header-1 .header-left .logo .header-logo img {
  width: 170px;
  max-width: 100%;
  height: auto;
  display: block;
}

.offcanvas__logo img {
  max-width: 150px;
  height: auto;
}

.footer-bottom .logo-img img {
  max-width: 180px;
  height: auto;
}

@media (max-width: 991px) {
  .header-1 .header-left .logo .header-logo img {
    width: 130px;
  }
}

/* ---------- Footer ---------- */
.footer-section .newsletter-btn {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  background-color: var(--theme);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  transition: 0.3s ease-in-out;
}

.footer-section .newsletter-btn:hover {
  background-color: var(--white);
}
