/* ============================================================
   OlympicGuru – about.css
   Clean, text-focused styles – all decorative icons removed.
   ============================================================ */

:root {
  --bg: #ffffff;
  --bg-alt: #fafafa;
  --surface: #ffffff;
  --text: #0a0a0a;
  --text-muted: #5b5b5b;
  --border: #e7e7e7;
  --accent: #ff5a1f;
  --accent-hover: #e64a10;
  --whatsapp: #25d366;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, .05);
  --shadow: 0 6px 18px rgba(0, 0, 0, .08);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, .18);
  --radius: 12px;
  --radius-lg: 18px;
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: 0;
  background: none;
  color: inherit;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

h1,
h2,
h3,
h4 {
  font-family: 'Bebas Neue', 'Inter', sans-serif;
  letter-spacing: .5px;
  margin: 0 0 .5rem;
  line-height: 1.1;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

h3 {
  font-size: 1.2rem;
}

p {
  margin: 0 0 .8rem;
  color: var(--text-muted);
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== TOPBAR ===== */
.topbar {
  background: #0a0a0a;
  color: #fff;
  font-size: .82rem;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 20px;
}

.topbar a {
  color: #fff;
  margin-right: 14px;
  opacity: .9;
}

.topbar a:hover {
  opacity: 1;
  color: var(--accent);
}

.topbar-center {
  color: #fff;
}

@media (max-width: 820px) {

  .topbar-left a:nth-child(2),
  .topbar-right {
    display: none;
  }

  .topbar-inner {
    justify-content: space-between;
  }
}

/* ===== HEADER (simplified) ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
}

.logo-img {
  height: 42px;
  width: auto;
}

.logo-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.7rem;
  letter-spacing: 1.5px;
  color: var(--text);
}

.search {
  position: relative;
  width: 100%;
  max-width: 520px;
  justify-self: center;
}

.search input {
  width: 100%;
  padding: 12px 16px 12px 42px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #f5f5f5;
  color: var(--text);
  font-size: .95rem;
  transition: border .2s, background .2s, box-shadow .2s;
}

.search input:focus {
  outline: none;
  background: #fff;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255, 90, 31, .15);
}

.search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hdr-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 10px;
  position: relative;
  color: var(--text);
  font-weight: 500;
  font-size: .92rem;
  transition: background .2s, color .2s, transform .15s;
}

.hdr-action:hover {
  background: #f1f1f1;
  color: var(--accent);
  transform: translateY(-1px);
}

.hdr-action i {
  font-size: 1.1rem;
}

.badge-count,
.cart-count {
  position: absolute;
  top: -2px;
  right: -2px;
  background: var(--accent);
  color: #fff;
  font-size: .7rem;
  padding: 2px 6px;
  border-radius: 999px;
  font-weight: 700;
  min-width: 18px;
  text-align: center;
}

/* ===== Nav (Home / About only – always visible, no burger) ===== */
.nav {
  border-top: none;
  background: #fff;
}

.nav-list {
  display: flex;
  gap: 28px;
  justify-content: center;
  padding: 0;
  margin: 0;
}

.nav-link {
  font-size: .92rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 4px 0;
  position: relative;
  transition: color .2s;
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  height: 2px;
  width: 0;
  background: var(--accent);
  transition: width .25s;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 8px;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  height: 100vh;
  width: 82%;
  max-width: 340px;
  background: #fff;
  z-index: 90;
  padding: 18px;
  transition: left .35s ease;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.mobile-menu.open {
  left: 0;
}

.mobile-menu-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-menu-head button {
  font-size: 1.4rem;
}

.mobile-nav li a {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-weight: 500;
  font-size: 1.05rem;
}

.mobile-dropdown {
  position: relative;
  list-style: none;
}

.mobile-dropdown-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border);
}

.mobile-dropdown-toggle a {
  flex-grow: 1;
  border-bottom: none !important;
  text-decoration: none;
  color: var(--text);
}

.submenu-toggle-btn {
  background: transparent;
  border: none;
  padding: 14px;
  cursor: pointer;
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color 0.2s;
}

.submenu-toggle-btn:hover {
  color: var(--accent);
}

.mobile-submenu {
  display: none;
  list-style: none;
  padding-left: 20px;
  background: #fafafa;
  border-bottom: 1px solid var(--border);
}

.mobile-submenu.open {
  display: block;
}

.mobile-submenu li a {
  padding: 10px 0;
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--text-muted);
  border-bottom: none !important;
  display: block;
  text-decoration: none;
}

.mobile-subitem>a,
.mobile-category-toggle a {
  padding-left: 18px;
  font-size: 0.98rem;
}

.mobile-nested-submenu {
  padding-left: 18px;
  background: #fff;
}

.mobile-nested-submenu li a {
  padding-left: 18px;
  font-size: 0.9rem;
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, .5);
  z-index: 80;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
}

.overlay.show {
  opacity: 1;
  pointer-events: auto;
}

@media (max-width: 900px) {
  .header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 12px;
    padding: 12px 14px;
  }

  .nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .hdr-action-label {
    display: none;
  }
}

@media (max-width: 640px) {
  .header-inner {
    grid-template-columns: auto auto;
    grid-template-areas: "logo actions" "search search";
    row-gap: 10px;
  }

  .logo {
    grid-area: logo;
  }

  .header-actions {
    grid-area: actions;
  }

  .search {
    grid-area: search;
    max-width: 100%;
  }
}

.drawer {
  position: fixed;
  top: 0;
  right: -110%;
  height: 100vh;
  width: 420px;
  max-width: 92vw;
  background: #fff;
  z-index: 95;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  transition: right .4s cubic-bezier(.22, .61, .36, 1);
}

.drawer.open {
  right: 0;
}

.drawer-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  border-bottom: 1px solid var(--border);
}

.drawer-head h3 {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
}

.drawer-head h3 i {
  color: var(--accent);
  margin-right: 6px;
}

.drawer-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #f4f4f4;
  color: var(--text);
  transition: background .2s, color .2s, transform .15s;
}

.drawer-close:hover {
  background: var(--accent);
  color: #fff;
  transform: rotate(90deg);
}

.drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 22px 20px;
}

.auth-pane {
  animation: fadeIn .3s ease both;
}

.auth-pane.hidden {
  display: none;
}

.auth-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  margin: 0 0 4px;
}

.auth-sub {
  color: var(--text-muted);
  margin-bottom: 18px;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field>span {
  font-size: .82rem;
  font-weight: 600;
  color: var(--text);
}

.field input {
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: .95rem;
  background: #fafafa;
  transition: border .2s, background .2s, box-shadow .2s;
  font-family: inherit;
}

.field input:focus {
  outline: none;
  border-color: var(--accent);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(255, 90, 31, .15);
}

.auth-row {
  display: flex;
  justify-content: flex-end;
}

.link-muted {
  color: var(--text-muted);
  font-size: .85rem;
}

.link-muted:hover,
.link-strong {
  color: var(--accent);
}

.auth-foot {
  text-align: center;
  margin-top: 18px;
  color: var(--text-muted);
  font-size: .9rem;
}

.divider {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: .82rem;
  margin: 20px 0;
}

.divider::before,
.divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.cart-body {
  padding-bottom: 10px;
}

.cart-items {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cart-empty {
  text-align: center;
  color: var(--text-muted);
  padding: 40px 10px;
}

.cart-footer {
  border-top: 1px solid var(--border);
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #fafafa;
}

.cart-line {
  display: flex;
  justify-content: space-between;
  font-size: .92rem;
  color: var(--text);
}

.cart-line.total {
  font-weight: 800;
  font-size: 1.1rem;
  padding-top: 8px;
  border-top: 1px dashed var(--border);
  margin-top: 4px;
}

.cart-footer .btn {
  margin-top: 4px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 10px;
  font-weight: 600;
  font-size: .95rem;
  transition: transform .15s, background .2s, color .2s, box-shadow .2s;
  border: 2px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(255, 90, 31, .3);
}

/* ===== Toast (kept for potential use) ===== */
.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--text);
  color: #fff;
  padding: 12px 20px;
  border-radius: 10px;
  font-size: .9rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s, transform .25s;
  z-index: 200;
  box-shadow: var(--shadow-lg);
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ===== Floating buttons ===== */
.float-stack {
  position: fixed;
  bottom: 22px;
  left: 22px;
  z-index: 60;
  display: flex;
  flex-direction: column-reverse;
  gap: 12px;
}

.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.3rem;
  box-shadow: var(--shadow);
  transition: transform .2s, background .2s;
}

.float-btn:hover {
  transform: translateY(-3px) scale(1.05);
}

.back-to-top {
  background: var(--text);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s, transform .2s;
}

.back-to-top.show {
  opacity: 1;
  pointer-events: auto;
}

.whatsapp {
  background: var(--whatsapp);
  animation: waPulse 2s infinite;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, .6);
}

@keyframes waPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, .55);
  }

  70% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* ===== Footer ===== */
.footer {
  background: #0a0a0a;
  color: #d4d4d4;
  padding: 60px 0 20px;
}

.footer h3,
.footer h4 {
  color: #fff;
}

.footer p,
.footer a,
.footer li {
  color: #b0b0b0;
}

.footer a:hover {
  color: var(--accent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
}

.footer-brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.footer-col ul {
  display: grid;
  gap: 8px;
}

.footer-col h4 {
  margin-bottom: 14px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
}

.footer-contact p {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: .9rem;
}

.footer-contact i {
  color: var(--accent);
  margin-top: 4px;
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #1c1c1c;
  display: grid;
  place-items: center;
  transition: background .2s, transform .15s;
}

.social-links a:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid #1c1c1c;
  margin-top: 40px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: .85rem;
}

.legal-links {
  display: flex;
  gap: 16px;
}

@media (max-width: 1000px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ============================================================
   ABOUT‑PAGE SPECIFIC STYLES (no icons)
   ============================================================ */

/* ===== About Hero ===== */
.about-hero {
  padding: 60px 0 70px;
  background: linear-gradient(180deg, #ffffff 0%, #f8f8f8 100%);
  text-align: center;
}

.about-hero-copy {
  max-width: 820px;
  margin: 0 auto;
}

.about-hero-copy .eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.accent-text {
  color: var(--accent);
}

.about-hero-sub {
  font-size: 1.1rem;
  max-width: 620px;
  margin: 0 auto;
}

/* ===== Mission ===== */
.about-mission {
  padding: 70px 0;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.mission-item {
  text-align: center;
  padding: 30px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform .2s, box-shadow .2s;
}

.mission-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.mission-item h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  margin-bottom: 8px;
}

@media (max-width: 760px) {
  .mission-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Story ===== */
.about-story {
  padding: 70px 0 56px;
}

.section-alt {
  background: var(--bg-alt);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.story-text .eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

/* Even, consistent gap between the paragraph text and the button */
.story-text .btn-primary {
  margin-top: 8px;
}

.story-image {
  /* placeholder – no icon */
  background: none;
  min-height: 80px;
  /* keeps the grid space */
}

@media (max-width: 900px) {
  .story-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .story-image {
    display: none;
  }
}

/* ===== Team ===== */
.about-team {
  padding: 56px 0 70px;
}

.section-head {
  text-align: center;
  margin-bottom: 40px;
}

.section-head p {
  color: var(--text-muted);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Single-member layout: center one balanced card instead of stretching it full width */
.team-grid-single {
  grid-template-columns: minmax(0, 320px);
  justify-content: center;
}

.team-card {
  text-align: center;
  padding: 30px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform .2s, box-shadow .2s;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--text);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0 auto 16px;
}

.team-card h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  margin: 0;
}

.team-card span {
  display: block;
  font-size: .85rem;
  color: var(--accent);
  margin-bottom: 8px;
}

.team-card p {
  font-size: .9rem;
  margin: 0;
}

@media (max-width: 760px) {
  .team-grid {
    grid-template-columns: 1fr;
  }

  .team-grid-single {
    grid-template-columns: minmax(0, 300px);
  }
}

/* ===== Stats ===== */
.about-stats {
  padding: 70px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.stat-item {
  text-align: center;
  /* keeps the number and its label tightly and evenly grouped
       so "4+" doesn't drift away from "Years in Business" */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 4px;
  padding: 0 6px;
}

.stat-item strong {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.8rem;
  line-height: 1;
  color: var(--text);
}

.stat-item span {
  display: block;
  color: var(--text-muted);
  font-size: .9rem;
  max-width: 130px;
  line-height: 1.3;
}

@media (max-width: 760px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 20px;
  }

  .stat-item {
    gap: 6px;
  }

  .stat-item strong {
    font-size: 2.3rem;
  }
}

@media (max-width: 420px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 16px;
  }

  .stat-item span {
    max-width: 110px;
    font-size: .82rem;
  }
}

/* ===== CTA ===== */
.about-cta {
  padding: 56px 0 70px;
}

.cta-box {
  text-align: center;
  padding: 50px 30px 40px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.cta-box h2 {
  margin-bottom: 8px;
}

.cta-box p {
  max-width: 400px;
  margin: 0 auto 24px;
  color: var(--text-muted);
}

/* No arrow icon – button is plain */
.cta-box .btn-primary {
  margin-bottom: 0;
}


/* ===== Mobile Menu Toggle Improvements ===== */

.mobile-dropdown-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.submenu-toggle-btn,
.mobile-sub-toggle {
  width: 36px;
  height: 36px;
  border: none;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border-radius: 8px;
  transition: .25s;
}

.submenu-toggle-btn:hover,
.mobile-sub-toggle:hover {
  background: #f4f4f4;
}

.submenu-toggle-btn i,
.mobile-sub-toggle i {
  transition: transform .25s ease;
}

.submenu-toggle-btn[aria-expanded="true"] i,
.mobile-sub-toggle[aria-expanded="true"] i {
  transform: rotate(180deg);
}

.mobile-submenu {
  overflow: hidden;
  transition: all .3s ease;
}

.mobile-submenu[hidden] {
  display: none !important;
}

#wishlistBtn i,
#galleryWishBtn i,
#wishlist-btn i {
  transition: transform .25s ease, color .25s ease;
}

#wishlistBtn:hover i,
#galleryWishBtn:hover i,
#wishlist-btn:hover i {
  transform: scale(1.15);
}

#wishlistBtn .fas.fa-heart,
#galleryWishBtn .fas.fa-heart,
#wishlist-btn .fas.fa-heart {
  color: #ff3b3b;
}