/* ─── Reset & Base ───────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background-color: #0d1117;
  color: #f0ead6;
  font-family: 'Inter', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button { border: none; background: none; font: inherit; }

/* ─── Design Tokens ──────────────────────────────────────────────────────────── */
:root {
  --gold: #ffde59;
  --gold-dim: rgba(201, 168, 76, 0.18);
  --gold-faint: rgba(201, 168, 76, 0.08);
  --navy: #0d1117;
  --navy-mid: #161c26;
  --navy-deep: #0a0e14;
  --cream: #f0ead6;
  --warm: #b8a98a;
  --muted: #a5b0c6;
  --dim: #4a5568;
  --radius: 0;
}

/* ─── Typography ─────────────────────────────────────────────────────────────── */
.font-display  { font-family: 'Playfair Display', Georgia, serif; }
.font-fraunces { font-family: 'Fraunces', Georgia, serif; }
.font-mono { font-family: 'JetBrains Mono', monospace; }

h2 {
	font-family: 'Inter', system-ui, sans-serif; 
	font-size: clamp(2rem, 4vw, 3rem);
  	line-height: 1.15;
  	font-weight: 800;
  	margin-bottom: 2rem;
	letter-spacing: -0.05em;
}

.section-label {
  font-family: 'Inter', system-ui, sans-serif; 
  font-size: 1rem;
	font-weight:800;
	
  letter-spacing: -0.03em;
  color: #f0ead6;
  margin-bottom: 1rem;
  transition: clip-path 0.7s cubic-bezier(0.76, 0, 0.24, 1), opacity 0.3s ease;
}

/* ─── Layout ─────────────────────────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
@media (min-width: 768px) { .container { padding: 0 5rem; } }

.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 768px) { .grid-2 { grid-template-columns: 1fr 1fr; } }

/* ─── Scroll Progress ────────────────────────────────────────────────────────── */
#scroll-progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 2px;
  z-index: 200;
  background: rgba(201, 168, 76, 0.1);
}

#scroll-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), rgba(201, 168, 76, 0.6));
  width: 0%;
  transition: width 0.1s linear;
}

/* ─── Custom Cursor (Scoped to fine pointer devices) ─────────────────────────── */

#cursor-dot {
  position: fixed; top: 0; left: 0;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold);
  pointer-events: none;
  z-index: 9999;
  will-change: transform;
}

#cursor-ring {
  position: fixed; top: 0; left: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.4);
  pointer-events: none;
  z-index: 9998;
  will-change: transform;
  transition: width 0.3s cubic-bezier(0.16,1,0.3,1),
              height 0.3s cubic-bezier(0.16,1,0.3,1),
              border-color 0.3s ease,
              background-color 0.3s ease;
}

#cursor-ring.expanded {
  width: 48px; height: 48px;
  border-color: rgba(201, 168, 76, 0.8);
  background: rgba(201, 168, 76, 0.06);
}

.btn-primary {
  display: inline-block;
  padding: 0.9375rem 2rem;
  background: var(--gold);
  color: var(--navy);
  font-family: 'Inter', system-ui, sans-serif; 
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  font-weight: 900;
  border: none;
  transition: opacity 0.2s ease, transform 0.35s cubic-bezier(0.16,1,0.3,1);
  align-self: flex-start;
	border-radius: 8px;
}
.btn-primary:hover { opacity: 0.88; transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); }

.btn-secondary {
  display: inline-block;
  padding: 0.875rem 2rem;
  border: 1px solid rgba(201,168,76,0.3);
	border-radius: 8px;
  color: var(--warm);
  font-family: 'Inter', system-ui, sans-serif; 
  font-size: 0.85em;
	font-weight: 900;
  letter-spacing: 0.1em;
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.35s cubic-bezier(0.16,1,0.3,1);
}
.btn-secondary:hover { border-color: rgba(201,168,76,0.7); color: var(--gold); }


/* ─── Navigation ─────────────────────────────────────────────────────────────── */
#site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.05rem 2rem;
  background: rgba(13, 17, 23, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

#site-nav.visible { opacity: 1; transform: translateY(0); }

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.nav-brand-name {
  font-family: 'Inter', system-ui, sans-serif; 
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: #fff;
  font-weight: 900;
}
.nav-brand-divider {
  width: 0;
  height: 1px;
  background: rgba(201, 168, 76, 0.4);
  transition: width 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
}
.nav-brand-year {
  font-family: 'Inter', system-ui, sans-serif; 
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  color: var(--muted);
  opacity: 0;
  transition: opacity 0.5s ease 0.5s;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

@media (min-width: 768px) { .nav-links { display: flex; } }

.nav-links a {
  position: relative;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: var(--warm);
  transition: color 0.2s ease;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.25s ease;
}
.nav-links a:hover { color: var(--gold); font-weight:bold;transition: width 0.25s ease; }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  display: none;
  padding: 0.8	rem 1.25rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: 'Inter', system-ui, sans-serif;
	font-weight:900;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.35s cubic-bezier(0.16,1,0.3,1);
	border-radius: 8px;
}

@media (min-width: 768px) { .nav-cta { display: block; } }
.nav-cta:hover { background: var(--gold); color: var(--navy); }

/* Hamburger Button Base */
.nav-hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  color: var(--gold);
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 50; /* Ensure button stays on top of the open menu */
  position: relative;
}

@media (min-width: 768px) { 
  .nav-hamburger { 
    display: none; 
  } 
}

.nav-hamburger span {
  display: block;
  width: 22px; 
  height: 1.5px;
  background: currentColor;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Hamburger "X" Animation 
  The spans are 1.5px tall with a 5px gap. 
  Translating the top and bottom spans by 6.5px aligns them perfectly in the center before rotating.
*/
.nav-hamburger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile Menu */
#mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 40;
  background: var(--navy);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

#mobile-menu.open { 
  display: flex; 
}

#mobile-menu a {
  
  font-size: 2rem;
  color: var(--cream);
  text-decoration: none;
  transition: color 0.2s ease;
	font-weight:900;
}

#mobile-menu a:hover { 
  color: var(--gold); 
}

/* ─── Hero ───────────────────────────────────────────────────────────────────── */
#hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 100vh;
  padding-top: 80px;
  overflow: hidden;
}

#hero-bg {
  position: absolute;
  inset: -20% 0 -20% 0;
  background-image: url('https://brokersconnect.co.uk/wp-content/uploads/2026/09/Gemini_Generated_Image_apm3gapm3gapm3ga.jpeg?w=1800&h=1200&fit=crop&auto=format');
  background-size: cover;
  background-position: center top;
  filter: brightness(0.7) saturate(0.8);
  will-change: transform;
  transform: scale(1.0);
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #0d1117 0%, rgba(13,17,23,0.4) 70%, transparent);
}
.hero-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 50%, rgba(0,0,0,0.5) 100%);
  pointer-events: none;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.035) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 10;
  padding: 0 2rem 6rem;
  max-width: 900px;
}

@media (min-width: 768px) { 
	.hero-content { padding: 0 5rem 6rem; } 
}

@media only screen and (max-width: 600px) { 
	.hero-content { padding: 6rem 2rem 6rem; } 
}

.hero-fade-item {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-fade-item.hero-enter {
  opacity: 1;
  transform: translateY(0);
}

.hero-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.hero-headline {
  font-family: 'Fraunces', 'Playfair Display', Georgia, serif;
  font-size: clamp(2.8rem, 6vw, 4.75rem);
  line-height: 1.05;
  font-weight: 700;
  width: fit-content;
  margin-bottom: 1.5rem;
  clip-path: inset(0 0 100% 0);
  transform: translateY(100%);
  transition: clip-path 1s cubic-bezier(0.76, 0, 0.24, 1),
              transform 1s cubic-bezier(0.76, 0, 0.24, 1);
}
.hero-headline.visible {
  clip-path: inset(0 0 0% 0);
  transform: translateY(0);
}

.hero-body {
  max-width: 560px;
  color: var(--warm);
  line-height: 1.7;
  font-size: 1rem;
	font-weight:600;
  margin-bottom: 2.5rem;
	letter-spacing: -0.5px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.hero-meta-item dt {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  color: var(--muted);
  margin-bottom: 0.25rem;
}

.hero-meta-item dd {
  color: var(--cream);
  font-size: 0.95rem;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

/* ─── Logo ─────────────────────────── */
.logo {
	width:500px;
  max-width: 100%;
  height: auto;
  display: block;
}

.smalllogo {
	width:50px;
  max-width: 100%;
  height: auto;
  display: block;
}


/* ─── Stats Bar ──────────────────────────────────────────────────────────────── */
#stats-bar {
  position: relative;
  z-index: 10;
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  background: rgba(22, 28, 38, 0.85);
  backdrop-filter: blur(12px);
}
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 1rem;
  gap: 0.25rem;
  border-right: 1px solid rgba(201, 168, 76, 0.12);
  border-bottom: 1px solid rgba(201, 168, 76, 0.12);
  transition: opacity 0.6s cubic-bezier(0.16,1,0.3,1), transform 0.6s cubic-bezier(0.16,1,0.3,1);
}

.stat-item.visible { opacity: 1; transform: translateY(0); }

@media (min-width: 768px) { .stat-item { border-bottom: none; } }

.stat-value {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2rem;
  color: #ffffff;
  font-weight: 700;
}
.stat-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  color: var(--muted);
  text-transform: uppercase;
}

/* ─── Sections ───────────────────────────────────────────────────────────────── */
.section { padding: 16rem 0; }

@media only screen and (max-width: 600px) { .section { padding: 5rem 0; } }

.section-dark { background: var(--navy-deep); }
.section-dark-1 { background: #E2E6EE; }

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(24px);
  transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ─── About ──────────────────────────────────────────────────────────────────── */

.event {
	margin: 0 auto;
	width:75%;
	align-content: center;
	text-align:center
}

.about-heading {
  background: linear-gradient(90deg, #ffde59, #ffffff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
	text-align: center;
	margin-bottom: 65px;
	font-size: 94px;
}

@media only screen and (max-width: 600px) { 
	.about-heading {
		font-size:45px;
		margin-bottom:45px;
		font-weight:bold;
		}
	}

.about-body {
	margin: 0 auto;
	width: 75%;
	text-align:center;
  	line-height: 1.6;
  	margin-bottom: 2rem;
	font-weight:600;
	letter-spacing:-0.5px;
	color: var(--muted);
}

.about-body span {color: #ffffff}


@media only screen and (max-width: 600px) { 
	.about-body {width:100%}
	}

.about-image {
	position:relative;
	overflow:hidden;
	margin-bottom: 65px;
	border-radius: 22px;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* cubic-bezier makes the animation start slightly faster and smoothly decelerate */
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), 
              filter 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.about-image img:hover {
  transform: scale(1.05); /* Smooth zoom in */
  filter: contrast(1.05) brightness(1.08); /* Slight pop in lighting and color */
}

.about-img-wrap { position: relative; overflow: hidden; }

.about-img-frame {
  position: absolute;
  top: 16px; left: 16px;
  right: -16px; bottom: -16px;
  border: 1px solid rgba(201, 168, 76, 0.15);
  pointer-events: none;
	border-radius: 22px;
}

/* ─── Image Wipe ─────────────────────────────────────────────────────────────── */
.img-wipe {
  overflow: hidden;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1.1s cubic-bezier(0.76, 0, 0.24, 1);
}
.img-wipe.visible { clip-path: inset(0 0% 0 0); }

.img-wipe img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16,1,0.3,1), filter 0.4s ease;
}

.img-wipe img:hover { transform: scale(1.04); filter: brightness(0.95); }


/* ─── Lender ─────────────────────────────────────────────────────────────── */

.lc-section {
    font-family: 'Inter', sans-serif;
    background: #f5f4f0;
    padding: 190px 0;
    overflow-x: hidden;
}

.lc-header {
    padding-left: 220px;
    padding-right: 48px;
    margin-bottom: 60px;
}

.lc-eyebrow {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #c8a84b;
    font-weight: 600;
    margin: 0 0 8px;
}

.lc-heading {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(28px, 4vw, 36px);
    color: #1a1a2e;
    margin: 0 0 8px;
    font-weight: 400;
    line-height: 1.2;
}
.lc-subheading {
    font-size: 15px;
	font-weight:600;
	letter-spacing: -0.5px;
    color: #4a4a5d;
    margin: 0;
    max-width: 540px;
	line-height: 1.6;
}

.lc-bleed-wrap {
    margin-left: -9999px;
    padding-left: 9999px;
}

.lc-track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 220px;
    scroll-behavior: smooth;
    padding-top: 10px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.lc-track::-webkit-scrollbar { display: none; }

.lc-spacer-start { flex-shrink: 0; width: 220px; }
.lc-spacer-end { flex-shrink: 0; width: 48px; scroll-snap-align: end; }

.lc-slide {
    scroll-snap-align: start;
    flex-shrink: 0;
    width: 397px;
}

.lc-slide {
  transform: translateY(50px); /* Pushes the card down initially */
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  will-change: opacity, transform;
}

.lc-visible .lc-slide { opacity: 1; transform: translateY(0); }

.lc-slide:nth-child(2) { transition-delay: 0.25s; }
.lc-slide:nth-child(3) { transition-delay: 0.31s; }
.lc-slide:nth-child(4) { transition-delay: 0.37s; }
.lc-slide:nth-child(5) { transition-delay: 0.43s; }
.lc-slide:nth-child(6) { transition-delay: 0.49s; }

.lc-card {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #ddd9d0;
    overflow: hidden;
    height: 100%;
    user-select: none;
    transition:
        transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
        border-color 0.35s ease,
        background-color 0.35s ease;
    will-change: transform;
}

.lc-card:hover {
    transform: translateY(-6px);
    border-color: #c8a84b;
    background-color: #fefefe;
}

.lc-badge-strip { height: 28px; display: flex; align-items: flex-start; flex-shrink: 0; }

.lc-badge {
    display: inline-block;
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fff;
    border-radius: 0 0 8px 0;
}

.lc-logo-wrap { padding: 50px 24px 20px; flex-shrink: 0; }

.lc-name-wrap { padding: 0 24px 16px; flex-shrink: 0; }

.lc-name {
    font-family: 'DM Serif Display', serif;
    font-size: 20px;
    color: #1a1a2e;
    margin: 0 0 4px;
    font-weight: 400;
    line-height: 1.3;
}
.lc-tagline {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #c8a84b;
    margin: 0;
}

.lc-divider { height: 1px; background: #ddd9d0; margin: 0 24px; flex-shrink: 0; }

.lc-summary-wrap { padding: 20px 24px; flex: 1; }
.lc-summary { font-size: 14px; color: #6b6b7b; line-height: 1.65; margin: 0; }

.lc-cta-wrap { padding: 0 24px 24px; flex-shrink: 0; }

.lc-cta {
    display: block;
    width: 100%;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #181f2e;
    background: transparent;
    border: 2px solid #181f2e;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.1s ease;
    font-family: 'Inter', sans-serif;
    box-sizing: border-box;
}
.lc-cta:hover { background: #181f2e; color: #fff; }
.lc-cta:active { transform: scale(0.98); }

.lc-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
    padding: 0 24px;
    transition: opacity 0.5s ease 0.55s;
}

.lc-dot {
    border: none;
    background: #ddd9d0;
    border-radius: 999px;
    width: 10px;
    height: 10px;
    padding: 0;
    cursor: pointer;
    transition: width 0.3s ease, background-color 0.3s ease;
    flex-shrink: 0;
}
.lc-dot.lc-dot-active { width: 24px; background: #162447; }
.lc-dot:not(.lc-dot-active):hover { background: #6b6b7b; }


@media (max-width: 768px) {
    .lc-header { padding-left: 24px; padding-right: 24px; }
    .lc-track { scroll-padding-left: 24px; }
    .lc-spacer-start { width: 24px; }
    .lc-slide { width: calc(100vw - 48px); }
}

/* ─── Agenda ─────────────────────────────────────────────────────────────────── */

.agenda-sub {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 2.5rem;
}

.agenda-list { display: flex; flex-direction: column; gap: 0.75rem }

.agenda-row {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1rem 1.25rem;
  background: var(--navy-mid);
  border: 1px solid rgba(201,168,76,0.08);
  border-left-width: 9px;
  transform: translateY(0);
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.agenda-row:hover { background: #1e2736; transform: translateX(3px); }

.agenda-row[data-type="keynote"]  { border-left-color: rgb(252 211 77); }
.agenda-row[data-type="presentations"]    { border-left-color: rgb(96 165 250); }
.agenda-row[data-type="break"]    { border-left-color: rgb(52 211 153); }

.agenda-time {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  color: var(--gold);
  opacity: 0.8;
  min-width: 48px;
  flex-shrink: 0;
  padding-top: 2px;
}
.agenda-label { color: var(--cream); font-size: 0.9rem; line-height: 1.5; margin-bottom: 5px }

.agenda-type {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
	padding: 3px 7px;
}

.agenda-type[data-type="keynote"] { color: rgb(252 211 77); background-color: rgb(252, 211, 77, 0.1); border-radius:5px }
.agenda-type[data-type="presentations"] { color: rgb(96 165 250); background-color: rgb(96, 165, 250, 0.1); border-radius:5px}
.agenda-type[data-type="break"] { color: rgb(52 211 153); background-color: rgb(52, 211, 153, 0.1); border-radius:5px}

/* ─── Venue ─────────────────────────────────────────────────────────────────── */

.dandi-hero-section {
        position: relative;
        width: 100%;
        height: 130vh; /* Takes up the full height of the screen */
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        font-family: inherit; /* Inherits your WordPress theme's font */
        color: #ffffff;
    }

@media only screen and (max-width: 600px) { 
	.dandi-hero-section {height: 100vh;}
	}

    .dandi-bg-image {
        position: absolute;
        top: 0; left: 0; right: 0; bottom: 0;
		background-image: url('https://brokersconnect.co.uk/wp-content/uploads/2026/09/Dandi_Interior.jpg');
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
        z-index: 1;
    }

@media only screen and (max-width: 600px) { 
	.dandi-bg-image {
		width: 100%;
		background-attachment: scroll;
    	height: 100vh;
    	object-position: center center;}
	}

    .dandi-overlay {
        position: absolute;
        top: 0; left: 0; right: 0; bottom: 0;
        background: rgba(0, 0, 0, 0.6);
        z-index: 2;
    }

    .dandi-content {
        position: relative;
        z-index: 3;
        text-align: center;
        max-width: 800px;
        padding: 0 30px;
    }

    .dandi-subheading {
        font-size: 1.1rem;
        letter-spacing: 3px;
        text-transform: uppercase;
        margin-bottom: 15px;
        color: #f1f1f1;
    }

    .dandi-heading {
        font-family: 'Inter', system-ui, sans-serif;
		font-size: clamp(6rem, 8vw, 7rem);
		line-height: 1.15;
		font-weight: 800;
		margin-bottom: 2rem;
		letter-spacing: -0.05em;
		
		background: linear-gradient(20deg, rgb(52 211 153),rgb(94 234 212), #ffffff);
  		-webkit-background-clip: text;
  		background-clip: text;
  		-webkit-text-fill-color: transparent;
  		color: transparent;
	
    }

    .dandi-paragraph {
		text-align:center;
		line-height: 1.6;
		margin-bottom: 2rem;
		font-weight:600;
		letter-spacing:-0.5px;
        color: #e0e0e0;
		width:80%;
		margin: 0 auto
    }

	.location-cta {

	  display: inline-flex;
	  align-items: center;
	  gap: 16px; /* Spacing between the hearts and text */
    
	margin-top:60px;
    padding: 12px 20px; /* Adjust padding as needed */
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    color: #181f2e;
    background: #ffffff;
    text-align: center;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
}

.location-cta::before {
  content: '';
  display: block;
  width: 40px;  /* Adjust width as needed */
  height: 40px; /* Adjust height as needed */
  
  /* Make sure the image scaling preserves the aspect ratio */
  background-image: url('https://brokersconnect.co.uk/wp-content/uploads/2026/09/Dandi-hearts.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
	
.location-cta:hover { background: rgb(94, 234, 212); color: #181f2e; transform: translateY(-8px); transition-delay: 0s;}
.location-cta:active { transform: scale(0.98); }


    /* Staggered delays so they appear one after another smoothly */
    .dandi-subheading { transition-delay: 0.1s; }
    .dandi-heading { transition-delay: 0.3s; }
    .dandi-paragraph { transition-delay: 0.5s; }
	.location-cta { transition-delay: 0.6s; }

    /* Mobile Responsive adjustments */
    @media (max-width: 768px) {
        .dandi-heading { font-size: 2.5rem; }
        .dandi-paragraph { font-size: 1rem; width:100%; }
    }

/* ─── Registration ───────────────────────────────────────────────────────────── */

.register-sub { color: var(--muted); line-height: 1.7; font-size: 0.9rem; margin-bottom: 2.5rem; }

/* ─── Footer ─────────────────────────────────────────────────────────────────── */

#site-footer {
  padding: 3rem 0;
  border-top: 1px solid rgba(201,168,76,0.12);
}
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 768px) {
  .footer-inner { flex-direction: row; justify-content: space-between; align-items: flex-start; }
}

.footer-logo {
	width:50px;
  max-width: 100%;
  height: auto;
  display: block;
}

/* Styling for the social icon container */
.footer-socials {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Base icon styles */
.footer-socials a {
  display: inline-flex;
  color: #ffffff; /* Default dark grey icon color */
  transition: color 0.3s ease, transform 0.3s ease;
}

/* Hover effects */
.footer-socials a:hover {
  transform: translateY(-3px); /* Subtle lift effect on hover */
}

/* Brand-specific hover colors */
.footer-socials a[aria-label="LinkedIn"]:hover {
  color: #0077b5; 
}

.footer-socials a[aria-label="Instagram"]:hover {
  color: #E1306C;
}

.footer-brand-name {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
}

.footer-brand-sub { color: var(--dim); font-size: 0.78rem; }
.footer-links { display: flex; flex-wrap: wrap; gap: 2rem; align-items: center; }
.footer-links a {
  color: var(--muted);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  transition: color 0.2s ease;
}
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(201,168,76,0.08);
}
.footer-copy { color: var(--muted); font-size: 0.72rem; }

/* ─── Keyframes & Reduced Motion ─────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
