/* =========================================================
   WESTS WEBSITE STYLES
========================================================= */

/* =========================================================
   ROOT VARIABLES
========================================================= */

:root {
  --bg: #111111;
  --panel: #171717;
  --panel-2: #1f1f1f;
  --text: #ffffff;
  --muted: rgba(255,255,255,0.72);
  --line: rgba(255,255,255,0.10);
  --accent: #d9b26a;
  --radius: 28px;
  --shadow: 0 24px 60px rgba(0,0,0,0.35);
}

/* =========================================================
   GLOBAL RESET
========================================================= */

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui,
    -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

/* =========================================================
   SITE LAYOUT
========================================================= */

.site {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.shell {
  flex: 1;
  display: grid;
  grid-template-columns: 210px 1fr;
  background: #101010;
}

.main {
  background: #131313;
}

.content {
  padding: 26px 28px 34px;
}

.inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* =========================================================
   SIDEBAR
========================================================= */

.sidebar {
  background: #0a0a0a;
  border-right: 1px solid var(--line);
  padding: 22px 18px;
}

.sidebar-logo {
  display: none;
}

.sidebar-title {
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0.02em;
  font-size: 14px;
  margin-bottom: 20px;
}

.sidebar-nav {
  display: grid;
  gap: 16px;
  margin: 18px 0 28px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 12px;
  color: rgba(255,255,255,0.88);
}

/* Sponsor Sidebar Styles - Start */ 

    .sponsor-box {
      border: 1px solid var(--line);
      background: rgba(255,255,255,0.03);
      border-radius: 18px;
      padding: 14px;
    }

    .sponsor-label {
      color: var(--muted);
      font-style: italic;
      margin-bottom: 10px;
    }

.sponsor-logo-dark {
  height: 145px;
  overflow: hidden;
  background: #111;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sponsor-logo-dark img {
  width: 122%;
  max-width: none;
  height: auto;
  display: block;
}

.sponsor-image1 {
  width: 125%;
  max-width: none;
  height: auto;
  display: block;
  margin: 0 0 10px -25%;
  margin-left: -16.5%;
  object-fit: contain;
  background: #111;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 4px;
}
    .sponsor-image2 {
  width: 100%;
  max-width: none;
  height: auto;
  display: block;
  margin: 0 auto 10px;
  object-fit: contain;
  background: #fff;
  border-radius: 10px;
  padding: 8px;
}

.sponsor-link {
  display: block;
  text-decoration: none;
}

.sponsor-link:hover {
  opacity: 0.9;
}

/* Sponsor Sidebar Styles - End */

/* =========================================================
   TOPBAR
========================================================= */

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 22px 32px 18px 40px;
  border-bottom: 1px solid var(--line);
  background: #101010;
}

.topbar-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

/* =========================================================
   BRANDING
========================================================= */

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  text-transform: uppercase;
}

.brand-logo {
  width: 128px;
  height: 128px;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand-text {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.brand-main {
  font-size: 40px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: white;
  line-height: 1;
}

.brand-sub {
  font-size: 38px;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: white;
  line-height: 1;
}

/* =========================================================
   SOCIAL ICONS
========================================================= */

.social {
  display: flex;
  gap: 10px;
}

.social a {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.05);
  color: white;
  font-size: 14px;
  transition: all 0.2s ease;
}

.social a:hover {
  background: white;
  color: black;
  border-color: white;
}

.social a i {
  color: white !important;
}

.social a:hover i {
  color: black !important;
}

/* =========================================================
   MENU
========================================================= */

.menu {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
}

.menu a.active {
  border-bottom: 2px solid white;
  padding-bottom: 6px;
}

.menu-item {
  position: relative;
  padding-bottom: 6px;
}

.menu-parent {
  pointer-events: none;
}

.menu-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  min-width: 190px;
  padding: 10px;
  border-radius: 14px;
  background: #181818;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  z-index: 20;
}

.menu-dropdown a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.85);
}

.menu-dropdown a:hover {
  background: rgba(255,255,255,0.08);
  color: #fff;
}

.menu-item:hover .menu-dropdown,
.menu-dropdown:hover {
  display: block;
}

/* =========================================================
   PAGE
========================================================= */

.page-header {
      margin-bottom: 22px;
    }

    .page-header h1 {
      margin: 0;
      font-size: 42px;
      line-height: 1;
      letter-spacing: -0.04em;
    }

    .page-header p {
      margin: 10px 0 0;
      color: var(--muted);
      font-size: 15px;
      max-width: 700px;
    }


/* =========================================================
   BUTTONS
========================================================= */

.btn {
  display: inline-block;
  padding: 13px 18px;
  border-radius: 14px;
  font-weight: 800;
  font-size: 15px;
}

.btn-primary {
  background: white;
  color: black;
}

.btn-secondary {
  background: rgba(255,255,255,0.10);
  color: white;
  border: 1px solid rgba(255,255,255,0.20);
}

/* =========================================================
   SPONSORS
========================================================= */

/* Sponsor box style - Start */
.sponsors-section {
  margin-top: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #181818;
  box-shadow: var(--shadow);
  padding: 22px;
}

.sponsors-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 16px;
}

.sponsor-content {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sponsor-card {
  min-height: 150px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
}

.sponsor-card img {
  max-width: 90%;
  max-height: 95px;
  object-fit: contain;
}

.sponsor-card-dark {
  background: #111;
}

.sponsor-card-light {
  background: #fff;
}

/* Sponsor box style - End */
.sponsors-strip {
  display: grid;
  grid-template-columns: 1fr 1fr; /* now equal */
  gap: 18px;
  margin-top: 16px;
}

.sponsor-feature {
  min-height: 150px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 26px;
}

.sponsor-feature-dark {
  background: #111;
}

.sponsor-feature-light {
  background: #fff;
}

.sponsor-feature img {
  width: auto;
  height: auto;
  max-width: 90%;
  object-fit: contain;
}

/* HB slightly larger */
.sponsor-feature-dark img {
  max-height: 155px;
  transform: scale(1.35) translateY(8px);
}

/* Bentley now wide like HB */
.sponsor-feature-light img {
  max-height: 110px;
}

/* =========================================================
   CONTACT
========================================================= */



/* =========================================================
   FOOTER
========================================================= */

.footer {
  margin-top: 50px;
  background: #111;
  color: #ccc;
  padding: 30px 20px;
  font-size: 14px;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-sep {
  color: rgba(255,255,255,0.4);
}

.footer-copy {
  color: #888;
  font-size: 13px;
}

/* =========================================================
   MOBILE NAVIGATION
========================================================= */

.mobile-menu-toggle,
.mobile-menu {
  display: none;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1100px) {

  .shell {
    grid-template-columns: 1fr;
  }

  .sidebar {
    display: none;
  }
}

@media (max-width: 720px) {
  .topbar {
  display: grid;
  grid-template-columns: 42px 1fr 42px;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
}

  .topbar-right {
    display: none;
  }

  .brand {
    min-width: 0;
    gap: 10px;
    grid-column: 2;
    justify-content: center;
  }

  .brand-logo {
    width: 68px;
    height: 68px;
  }

  .brand-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    min-width: 0;
  }

  .brand-main {
    font-size: 28px;
  }

  .brand-sub {
    font-size: 22px;
    letter-spacing: 0.10em;
  }

  .mobile-menu-toggle {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.20);
    background: rgba(255,255,255,0.06);
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    grid-column: 1;
    grid-row: 1;
  }

  .mobile-menu {
    display: none;
    padding: 16px 18px 20px;
    background: #101010;
    border-bottom: 1px solid var(--line);
  }

  .mobile-menu.is-open {
    display: grid;
    gap: 14px;
  }

  .content {
    padding: 18px;
  }

  .sponsors-strip {
    grid-template-columns: 1fr;
  }
}