﻿@charset "UTF-8";
/* ============================================================
   ACREX India — Single shared variables file
   File: scss/abstracts/_variables.scss
   Use this one file for master page + all inner pages.
   ============================================================ */
/* ---------- Brand colors ---------- */
/* ---------- Neutral colors ---------- */
/* ---------- Borders ---------- */
/* ---------- Shadows ---------- */
/* ---------- Gradients ---------- */
/* ---------- Radius ---------- */
/* ---------- Layout ---------- */
/* ---------- Spacing ---------- */
/* ---------- Typography ---------- */
/* ---------- Font sizes ---------- */
/* ---------- Sizes ---------- */
/* ---------- Transitions ---------- */
/* ---------- Breakpoints ---------- */
/* ---------- Z-index ---------- */
/* ---------- Reusable mixins ---------- */
/* ---------- CSS custom properties for browser/runtime usage ---------- */
:root {
  --primary: #00A0C4;
  --primary-dark: #0082a0;
  --secondary: #72C22C;
  --secondary-dark: #5fa323;
  --bg-main: #ffffff;
  --bg-alt: #f5f8fa;
  --text-dark: #1e293b;
  --text-muted: #64748b;
  --navy: #082638;
  --navy-2: #0c3447;
  --navy-3: #123f56;
  --border: rgba(0, 160, 196, 0.15);
  --border-dark: rgba(0, 160, 196, 0.3);
  --shadow-sm: 0 4px 15px rgba(0, 160, 196, 0.05);
  --shadow-md: 0 10px 30px rgba(0, 160, 196, 0.1);
  --shadow-lg: 0 20px 50px rgba(0, 160, 196, 0.15);
  --gradient: linear-gradient(135deg, #00A0C4 0%, #72C22C 100%);
  --gradient-dark: linear-gradient(135deg, #082638 0%, #0c3447 100%);
  --radius: 12px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --container: 1480px;
  --exhibitor-blue: var(--primary);
  --exhibitor-blue-dark: var(--primary-dark);
  --visitor-green: var(--secondary);
  --visitor-green-dark: var(--secondary-dark);
}

@media (max-width: 1360px) {
  :root {
    --container: 1240px;
  }
}
.hof-page {
  background: radial-gradient(circle at 8% 8%, rgba(0, 160, 196, 0.08), transparent 28%), radial-gradient(circle at 92% 20%, rgba(114, 194, 44, 0.1), transparent 26%), linear-gradient(180deg, #ffffff 0%, #f5f9fc 100%);
  padding: 70px 0;
  overflow: hidden;
}

.hof-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 18px;
}

.hof-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
  color: #5f6f7f;
  font-size: 15px;
}
.hof-breadcrumb a {
  color: #00a0c4;
  text-decoration: none;
  font-weight: 700;
}
.hof-breadcrumb a:hover {
  color: #72c22c;
}
.hof-breadcrumb span {
  line-height: 1.4;
}

.hof-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 34px;
  align-items: center;
  padding: 46px;
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(0, 160, 196, 0.12), rgba(114, 194, 44, 0.09)), #ffffff;
  border: 1px solid rgba(16, 32, 51, 0.1);
  box-shadow: 0 18px 45px rgba(16, 32, 51, 0.1);
  overflow: hidden;
}
.hof-hero::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  right: -90px;
  top: -90px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0, 160, 196, 0.22), rgba(114, 194, 44, 0.2));
  filter: blur(2px);
}
.hof-hero::after {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  left: -50px;
  bottom: -50px;
  border-radius: 50%;
  background: rgba(0, 160, 196, 0.08);
}

.hof-hero-content,
.hof-hero-action {
  position: relative;
  z-index: 1;
}

.hof-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 8px 16px;
  border-radius: 999px;
  color: #00a0c4;
  background: rgba(0, 160, 196, 0.1);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}

.hof-hero h1 {
  max-width: 760px;
  margin: 0 0 20px;
  color: #102033;
  font-size: clamp(32px, 4vw, 45px);
  line-height: 1.08;
  font-weight: 600;
  letter-spacing: -0.04em;
  /*   font-family:$font-display;*/
}
.hof-hero p {
  margin: 0 0 16px;
  color: #5f6f7f;
  font-size: 17px;
  line-height: 1.8;
}
.hof-hero p:last-child {
  margin-bottom: 0;
}
.hof-hero p strong {
  color: #102033;
  font-weight: 800;
}

.hof-hero-action {
  padding: 28px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow: 0 12px 35px rgba(16, 32, 51, 0.08);
  backdrop-filter: blur(14px);
  text-align: center;
}

.hof-nomination-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 54px;
  padding: 14px 24px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #00a0c4, #72c22c);
  text-decoration: none;
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  box-shadow: 0 14px 28px rgba(0, 160, 196, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.hof-nomination-btn:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(0, 160, 196, 0.32);
}

.hof-deadline {
  margin: 18px 0 0;
  color: #102033;
  font-size: 15px;
  font-weight: 800;
}

.hof-section {
  margin-top: 46px;
  padding: 36px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(16, 32, 51, 0.1);
  box-shadow: 0 12px 34px rgba(16, 32, 51, 0.06);
}

.hof-section-head {
  margin-bottom: 26px;
}
.hof-section-head span {
  display: inline-block;
  color: #72c22c;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.hof-section-head h2 {
  margin: 0;
  color: #102033;
  font-size: clamp(25px, 3vw, 38px);
  line-height: 1.18;
  /*   font-weight: 600;*/
  letter-spacing: -0.03em;
}

.hof-inductee-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.hof-one-row {
  grid-template-columns: minmax(280px, 420px);
}

.hof-inductee-card {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid rgba(16, 32, 51, 0.1);
  box-shadow: 0 12px 28px rgba(16, 32, 51, 0.08);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}
.hof-inductee-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
.hof-inductee-card h3 {
  margin: 0;
  padding: 20px;
  color: #102033;
  font-size: 19px;
  line-height: 1.35;
  font-weight: 850;
}
.hof-inductee-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(16, 32, 51, 0.16);
  border-color: rgba(0, 160, 196, 0.28);
}
.hof-inductee-card:hover img {
  transform: scale(1.06);
}

.hof-previous-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.hof-previous-card {
  overflow: hidden;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid rgba(16, 32, 51, 0.1);
  box-shadow: 0 10px 24px rgba(16, 32, 51, 0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.hof-previous-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.hof-previous-card div {
  padding: 16px;
}
.hof-previous-card h3 {
  margin: 0 0 6px;
  color: #00a0c4;
  font-size: 24px;
  font-weight: 900;
}
.hof-previous-card p {
  margin: 0;
  color: #102033;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 750;
}
.hof-previous-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 42px rgba(16, 32, 51, 0.13);
}
.hof-previous-card:hover img {
  transform: scale(1.06);
}

.hof-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.hof-gallery-card {
  position: relative;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 18px;
  background: #dde8ef;
  cursor: pointer;
  aspect-ratio: 1/0.72;
  box-shadow: 0 10px 24px rgba(16, 32, 51, 0.08);
}
.hof-gallery-card::after {
  content: "View";
  position: absolute;
  inset: auto 14px 14px auto;
  padding: 8px 13px;
  border-radius: 999px;
  color: #fff;
  background: rgba(16, 32, 51, 0.72);
  font-size: 12px;
  font-weight: 800;
  opacity: 0;
  transform: translateY(8px);
  transition: 0.25s ease;
}
.hof-gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease, filter 0.3s ease;
}
.hof-gallery-card:hover::after {
  opacity: 1;
  transform: translateY(0);
}
.hof-gallery-card:hover img {
  transform: scale(1.08);
  filter: brightness(0.82);
}

body.hof-lightbox-open {
  overflow: hidden;
}

.hof-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 70px 90px;
  background: rgba(5, 12, 22, 0.86);
  backdrop-filter: blur(8px);
}
.hof-lightbox.active {
  display: flex;
}
.hof-lightbox img {
  max-width: 100%;
  max-height: 82vh;
  object-fit: contain;
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
  background: #fff;
}

.hof-lightbox-close,
.hof-lightbox-nav {
  position: absolute;
  border: 0;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}

.hof-lightbox-close {
  top: 24px;
  right: 28px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 34px;
  line-height: 1;
}
.hof-lightbox-close:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: rotate(90deg);
}

.hof-lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  font-size: 34px;
}
.hof-lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.22);
}

.hof-lightbox-prev {
  left: 28px;
}

.hof-lightbox-next {
  right: 28px;
}

@media (max-width: 1024px) {
  .hof-hero {
    grid-template-columns: 1fr;
    padding: 36px;
  }
  .hof-hero-action {
    max-width: 420px;
  }
  .hof-inductee-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .hof-previous-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .hof-gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 768px) {
  .hof-page {
    padding: 42px 0;
  }
  .hof-container {
    padding: 0 14px;
  }
  .hof-hero {
    padding: 28px 22px;
    border-radius: 24px;
  }
  .hof-hero p {
    font-size: 15.5px;
  }
  .hof-section {
    margin-top: 30px;
    padding: 24px 18px;
    border-radius: 22px;
  }
  .hof-inductee-grid,
  .hof-one-row,
  .hof-previous-grid,
  .hof-gallery-grid {
    grid-template-columns: 1fr;
  }
  .hof-inductee-card img {
    height: 210px;
  }
  .hof-previous-card img {
    height: 190px;
  }
  .hof-gallery-card {
    aspect-ratio: 1/0.68;
  }
  .hof-lightbox {
    padding: 70px 18px;
  }
  .hof-lightbox-nav {
    width: 44px;
    height: 44px;
    font-size: 26px;
  }
  .hof-lightbox-prev {
    left: 12px;
  }
  .hof-lightbox-next {
    right: 12px;
  }
  .hof-lightbox-close {
    top: 18px;
    right: 18px;
  }
}
