/*
 Theme Name:   Bootscore Child
 Description:  Bootscore Child Theme
 Author:       Bootscore
 Author URI:   https://bootscore.me
 Template:     bootscore
 Version:      6.0.0
 Requires at least: 5.0
 Tested up to: 6.6
 Requires PHP: 7.4
 License: MIT License
 License URI: https://github.com/bootscore/bootscore-child/blob/main/LICENSE
 Text Domain:  bootscore
*/


/* EVO typography */
@font-face {
  font-family: "Helvetica Neue";
  src: url("assets/fonts/HelveticaNeueRoman.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Helvetica Neue";
  src: url("assets/fonts/HelveticaNeueMedium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Helvetica Neue";
  src: url("assets/fonts/HelveticaNeueBold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* EVO theme foundation: light-first tokens with dark overrides */
:root {
  /* Brand tokens */
  --ink: #05030a;
  --white: #ffffff;
  --smoke: #babac4;
  --gold: #ffc94a;
  --violet: #70579c;
  --gold-ink: #8a6400;

  /* Semantic tokens */
  --bg: var(--white);
  --surface: #f7f7fa;
  --text: #111018;
  --text-muted: #5d5b66;
  --border: #d8d8e2;
  --primary-bg: var(--ink);
  --primary-text: var(--white);
  --accent-text: var(--gold-ink);
  --accent-ui: var(--violet);
  --focus: var(--gold);
  --transition-base: 0.75s;

  --radius-sm: 0;
  --radius-md: 0;
  --control-height: 56px;
  --section-space-mobile: 72px;
  --section-space-desktop: 96px;
}

[data-theme="dark"] {
  --bg: var(--ink);
  --surface: #12101a;
  --text: var(--white);
  --text-muted: #c8c7d1;
  --border: #3a3745;
  --primary-bg: var(--white);
  --primary-text: var(--ink);
  --accent-text: var(--gold);
  --accent-ui: var(--violet);
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 500;
}

h1 {
  font-weight: 700;
}

button,
input,
select,
textarea {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/* Simple color utility classes */
.text-ink { color: var(--ink) !important; }
.text-white { color: var(--white) !important; }
.text-smoke { color: var(--smoke) !important; }
.text-gold { color: var(--gold) !important; }
.text-violet { color: var(--violet) !important; }
.bg-ink { background-color: var(--ink) !important; }
.bg-white { background-color: var(--white) !important; }
.bg-gold { background-color: var(--gold) !important; }
.bg-violet { background-color: var(--violet) !important; }

/* Dev-only toggle UI */
.evo-theme-toggle {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  height: 44px;
  padding: 0 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
}

.evo-theme-toggle:hover,
.evo-theme-toggle:focus-visible {
  outline: none;
  border-color: var(--focus);
}

/* Homepage hero */
.evo-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100svh;
  width: 100%;
  padding: 24px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}

.evo-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 3, 10, 0.42);
}

.evo-hero__content {
  position: relative;
  z-index: 1;
  width: min(100%, 860px);
  color: var(--white);
}

.evo-hero__eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-ui);
}

.evo-hero__title {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  line-height: 1.05;
  font-weight: 700;
}

.evo-hero__subheadline {
  max-width: 720px;
  font-size: clamp(1rem, 3vw, 1.25rem);
  line-height: 1.5;
}

.evo-hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--control-height);
  padding: 0 24px;
  border: 1px solid transparent;
  background: var(--gold);
  color: var(--ink);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition:
    border-color var(--transition-base) ease,
    background-color var(--transition-base) ease,
    color var(--transition-base) ease;
}

.evo-hero__cta:hover,
.evo-hero__cta:focus-visible {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}

/* Section typography */
.evo-section-title {
  font-size: clamp(1.75rem, 5vw, 3rem);
  line-height: 1.1;
  color: var(--text);
}

.evo-section-body {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  line-height: 1.6;
  color: var(--text-muted);
}

/* Premium experience amenities */
.evo-experience {
  padding-top: var(--section-space-mobile);
  padding-bottom: var(--section-space-mobile);
}

.evo-amenities-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.evo-amenity-highlight,
.evo-amenity-card {
  min-height: 168px;
}

.evo-amenity-highlight {
  background: var(--ink);
  border-color: transparent;
  color: var(--white);
}

.evo-amenity-highlight__inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 22px;
}

.evo-amenity-highlight__title {
  margin: 0;
  font-size: clamp(2rem, 6vw, 3rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.evo-amenities-panel {
  --amenities-gap: 12px;
  background: var(--white);
  padding: 12px;
}

.evo-amenities-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--amenities-gap);
  background: var(--white);
}

.evo-amenity-card {
  position: relative;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid rgba(216, 216, 226, 0.95);
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.evo-amenity-card > * {
  position: relative;
  z-index: 1;
}

.evo-amenity-icon {
  color: var(--gold);
  font-size: 14px;
  margin-bottom: 16px;
}

.evo-amenity-card__title {
  margin: 0;
  font-size: clamp(1.05rem, 2.4vw, 1.3rem);
  line-height: 1.3;
}

@media (min-width: 768px) {
  .evo-amenities-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 992px) {
  .evo-experience {
    padding-top: var(--section-space-desktop);
    padding-bottom: var(--section-space-desktop);
  }

  .evo-amenities-layout {
    grid-template-columns: 1.1fr 3fr;
  }

  .evo-amenity-highlight {
    min-height: 100%;
  }

  .evo-amenities-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .evo-amenity-card {
    background: transparent;
  }

  .evo-amenity-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--amenities-bg-image);
    background-repeat: no-repeat;
    background-size: calc(300% + (2 * var(--amenities-gap))) calc(300% + (2 * var(--amenities-gap)));
    opacity: 0.28;
  }

  .evo-amenities-grid .evo-amenity-card:nth-child(1)::before { background-position: 0% 0%; }
  .evo-amenities-grid .evo-amenity-card:nth-child(2)::before { background-position: 50% 0%; }
  .evo-amenities-grid .evo-amenity-card:nth-child(3)::before { background-position: 100% 0%; }
  .evo-amenities-grid .evo-amenity-card:nth-child(4)::before { background-position: 0% 50%; }
  .evo-amenities-grid .evo-amenity-card:nth-child(5)::before { background-position: 50% 50%; }
  .evo-amenities-grid .evo-amenity-card:nth-child(6)::before { background-position: 100% 50%; }
  .evo-amenities-grid .evo-amenity-card:nth-child(7)::before { background-position: 0% 100%; }
  .evo-amenities-grid .evo-amenity-card:nth-child(8)::before { background-position: 50% 100%; }
  .evo-amenities-grid .evo-amenity-card:nth-child(9)::before { background-position: 100% 100%; }
}
