/* 
Theme Name: Hello Elementor Child - Hall of Honor (Updated Font Sizes)
Template: hello-elementor
Description: Custom child theme for Hall of Honor
Author: Amit Nandi
Version: 1.2.0
*/

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,500&family=Outfit:wght@200;300;400;500;600;700;800&display=swap');

:root {
    --hoh-magenta: #000000;
    --hoh-magenta-light: #1a1a1a;
    --hoh-magenta-dark: #050505;
    --hoh-magenta-deeper: #000000;
    
    --hoh-gold: #FF6600;
    --hoh-gold-light: #FF8533;
    --hoh-gold-soft: #CC5200;
    
    --text-primary: #ffffff !important;
    --text-muted: #e0e0e0;
    --text-dim: #a3a3a3;
    
    --glass-bg: rgba(0, 0, 0, 0.6);
    --glass-bg-strong: rgba(0, 0, 0, 0.8);
    --glass-border: rgba(255, 102, 0, 0.25);
    --glass-border-soft: rgba(255, 255, 255, 0.1);
    --shadow-deep: 0 15px 40px rgba(0, 0, 0, 0.8);
    --shadow-gold: 0 0 40px rgba(255, 102, 0, 0.35);
    --shadow-magenta: 0 0 60px rgba(0, 0, 0, 0.8);
    
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --transition-slow: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
    --font-display: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    --font-body: 'Outfit', 'Helvetica Neue', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: #000000 !important;
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
    font-weight: 300;
    letter-spacing: 0.01em;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
        radial-gradient(ellipse at 15% 20%, rgba(255, 102, 0, 0.08) 0%, transparent 45%),
        radial-gradient(ellipse at 85% 75%, rgba(255, 102, 0, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 110%, rgba(255, 255, 255, 0.05) 0%, transparent 60%),
        linear-gradient(180deg, #000000 0%, #0a0a0a 50%, #000000 100%);
    z-index: -2;
    animation: nebula-drift 24s ease-in-out infinite alternate;
}

body::after {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.5 0'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.4'/></svg>");
    opacity: 0.18;
    pointer-events: none;
    z-index: 100;
    mix-blend-mode: overlay;
}

@keyframes nebula-drift {
    0%   { transform: scale(1) translate(0,0); }
    100% { transform: scale(1.08) translate(-2%, 1%); }
}

h1, h2, h3, h4, h5 {
    font-family: var(--font-display);
    font-weight: 500;
    letter-spacing: -0.01em;
    line-height: 1.05;
}

.eyebrow {
    font-family: var(--font-body);
    font-size: 0.85rem; /* Increased from 0.72rem */
    font-weight: 500;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: var(--hoh-gold);
    display: inline-flex;
    align-items: center;
    gap: 1rem;
}
.eyebrow::before, .eyebrow::after {
    content: '';
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--hoh-gold), transparent);
}

.orange-text {
    background: linear-gradient(135deg, #FF8533 0%, #FF6600 40%, #CC5200 70%, #FF6600 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gold-shimmer 6s ease-in-out infinite;
    /* Fixes descender clipping (like the letter 'g') */
    display: inline-block;
    padding-bottom: 0.15em;
    margin-bottom: -0.15em;
}

@keyframes gold-shimmer {
    0%, 100% { background-position: 0% 50%; }
    50%      { background-position: 100% 50%; }
}

/* NAVIGATION */
.hoh-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 50;
    padding: 1.4rem 4vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px) saturate(140%);
    -webkit-backdrop-filter: blur(20px) saturate(140%);
    border-bottom: 1px solid var(--glass-border-soft);
    transition: var(--transition);
}
.hoh-nav.scrolled { padding: 0.9rem 4vw; background: rgba(0, 0, 0, 0.85); }

.hoh-logo { display: flex; align-items: center; text-decoration: none; }
.hoh-logo img { height: 40px; width: auto; object-fit: contain; filter: drop-shadow(0 0 10px rgba(255, 102, 0, 0.3)); }

.hoh-nav-links { display: flex; gap: 2.5rem; list-style: none; margin: 0; padding: 0;}
.hoh-nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    position: relative;
    transition: var(--transition);
}
.hoh-nav-links a::after {
    content: '';
    position: absolute;
    bottom: -6px; left: 50%;
    width: 0; height: 1px;
    background: var(--hoh-gold);
    transition: var(--transition);
    transform: translateX(-50%);
    box-shadow: 0 0 8px var(--hoh-gold);
}
.hoh-nav-links a:hover { color: var(--hoh-gold); }
.hoh-nav-links a:hover::after { width: 100%; }

/* HERO SECTION */
.hoh-hero { min-height: 100vh; position: relative; display: grid; place-items: center; padding: 8rem 4vw 4rem; overflow: hidden; perspective: 1500px; }
.hero-particles { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.particle { position: absolute; width: 2px; height: 2px; background: var(--hoh-gold); border-radius: 50%; opacity: 0; box-shadow: 0 0 10px var(--hoh-gold), 0 0 20px var(--hoh-gold); animation: particle-float 8s linear infinite; }
@keyframes particle-float { 0% { opacity: 0; transform: translateY(100vh) scale(0); } 10% { opacity: 0.8; } 90% { opacity: 0.8; } 100% { opacity: 0; transform: translateY(-10vh) scale(1.5); } }
.hero-pillar { position: absolute; top: 12%; bottom: 5%; width: 1px; background: linear-gradient(180deg, transparent, var(--hoh-gold) 30%, var(--hoh-gold) 70%, transparent); opacity: 0.4; z-index: 1; }
.hero-pillar::before, .hero-pillar::after { content: ''; position: absolute; left: -4px; width: 9px; height: 9px; background: var(--hoh-gold); border-radius: 50%; box-shadow: 0 0 15px var(--hoh-gold); }
.hero-pillar::before { top: 30%; } .hero-pillar::after { top: 70%; }
.hero-pillar.left { left: 6vw; } .hero-pillar.right { right: 6vw; }
.hero-content { text-align: center; z-index: 3; max-width: 1100px; position: relative; }
.hero-eyebrow { margin-bottom: 2.5rem; opacity: 0; animation: fade-up 1s ease 0.3s forwards; }
.hero-title { font-size: clamp(3rem, 8vw, 7.5rem); font-weight: 400; letter-spacing: -0.02em; line-height: 0.95; margin-bottom: 1.5rem; }
.hero-title .line-1, .hero-title .line-2, .hero-title .line-3 { display: block; opacity: 0; transform: translateY(40px); animation: fade-up 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) forwards; }
.hero-title .line-1 { animation-delay: 0.5s; font-style: italic; font-weight: 300; color: var(--text-muted); font-size: 0.6em; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1rem; font-family: var(--font-body); font-weight: 200; }
.hero-title .line-2 { animation-delay: 0.8s; }
.hero-title .line-3 { animation-delay: 1.1s; font-style: italic; font-family: var(--font-display); font-weight: 400; }
@keyframes fade-up { to { opacity: 1; transform: translateY(0); } }
.hero-subtext { font-size: clamp(1.1rem, 1.6vw, 1.4rem); color: var(--text-muted); max-width: 680px; margin: 0 auto 3rem; font-weight: 300; letter-spacing: 0.02em; opacity: 0; animation: fade-up 1s ease 1.6s forwards; } /* Increased */
.hero-ctas { display: flex; gap: 1.2rem; justify-content: center; flex-wrap: wrap; opacity: 0; animation: fade-up 1s ease 1.9s forwards; }
.hero-ring-stage { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 560px; height: 560px; z-index: 2; transform-style: preserve-3d; pointer-events: none; opacity: 0.55; }
.hero-ring { position: absolute; inset: 0; border-radius: 50%; border: 1px solid rgba(255, 102, 0, 0.35); animation: ring-rotate 30s linear infinite; }
.hero-ring::before { content: ''; position: absolute; inset: 30px; border-radius: 50%; border: 1px dashed rgba(255, 102, 0, 0.2); }
.hero-ring-2 { position: absolute; inset: 60px; border-radius: 50%; border: 1px solid rgba(255, 255, 255, 0.2); animation: ring-rotate 40s linear infinite reverse; box-shadow: inset 0 0 80px rgba(255, 102, 0, 0.1), 0 0 80px rgba(255, 102, 0, 0.2); }
.hero-ring-2::before { content: ''; position: absolute; inset: 25px; border-radius: 50%; background: radial-gradient(circle at 30% 30%, rgba(255, 102, 0, 0.08), transparent 60%); }
@keyframes ring-rotate { to { transform: rotate(360deg); } }

/* CSS UPDATED for the Logo replace */
.hero-medallion { 
    position: absolute; 
    top: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%); 
    width: 180px; 
    height: 180px; 
    border-radius: 50%; 
    background: radial-gradient(circle at 35% 35%, #FF8533 0%, #FF6600 25%, #CC5200 60%, #662900 100%); 
    box-shadow: inset 0 0 30px rgba(0,0,0,0.5), inset 0 4px 0 rgba(255,255,255,0.3), 0 0 80px rgba(255, 102, 0, 0.4), 0 0 150px rgba(255, 102, 0, 0.2); 
    display: grid; 
    place-items: center; 
    /* color: var(--text-primary); removal as logo is img */
    /* font properties removal as logo is img */
    z-index: 4; 
    animation: medallion-pulse 4s ease-in-out infinite; 
    overflow: hidden; /* Ensure image stays within circle */
}
.hero-medallion::before { content: ''; position: absolute; inset: 8px; border-radius: 50%; border: 1px solid rgba(0,0,0,0.4); }
.hero-medallion::after { content: ''; position: absolute; inset: 14px; border-radius: 50%; border: 1px solid rgba(255, 255, 255, 0.2); }

/* Logo image style within medallion */
.hero-medallion img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* ensures logo is not distorted */
    position: relative; /* ensure it sits above pseudo layers */
    z-index: 1; /* ensure it is above background pseudo layers */
}

@keyframes medallion-pulse { 0%, 100% { box-shadow: inset 0 0 30px rgba(0,0,0,0.5), inset 0 4px 0 rgba(255,255,255,0.3), 0 0 80px rgba(255, 102, 0, 0.4), 0 0 150px rgba(255, 102, 0, 0.2); } 50% { box-shadow: inset 0 0 30px rgba(0,0,0,0.5), inset 0 4px 0 rgba(255,255,255,0.3), 0 0 120px rgba(255, 102, 0, 0.6), 0 0 200px rgba(255, 102, 0, 0.3); } }

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 1.1rem 2.3rem;
    font-family: var(--font-body);
    font-size: 0.9rem; /* Increased from 0.78rem */
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    border-radius: 2px;
}
.btn-primary {
    background: linear-gradient(135deg, var(--hoh-gold) 0%, var(--hoh-gold-soft) 100%);
    color: #000000;
    box-shadow: 0 8px 25px rgba(255, 102, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}
.btn-primary::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, var(--hoh-gold-light), var(--hoh-gold));
    opacity: 0;
    transition: var(--transition);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 102, 0, 0.5), 0 0 60px rgba(255, 102, 0, 0.3);
}
.btn-primary:hover::before { opacity: 1; }
.btn-primary span { position: relative; z-index: 1; }
.btn-ghost {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-primary);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}
.btn-ghost:hover {
    background: rgba(255, 102, 0, 0.1);
    border-color: var(--hoh-gold);
    color: var(--hoh-gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.15);
}
.btn-arrow {
    width: 18px; height: 1px;
    background: currentColor;
    position: relative;
    transition: var(--transition);
}
.btn-arrow::after {
    content: '';
    position: absolute;
    right: 0; top: 50%;
    width: 7px; height: 7px;
    border-top: 1px solid currentColor;
    border-right: 1px solid currentColor;
    transform: translateY(-50%) rotate(45deg);
}
.btn:hover .btn-arrow { width: 28px; }
/* Youtube */
.media-section {
    padding-top: 3rem;
    overflow: hidden;
    position: relative;
    padding-left: max(4vw, calc((100% - 1400px) / 2));
    padding-right: max(4vw, calc((100% - 1400px) / 2));
}

/* Updated grid for a single cinematic video */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
    gap: 2rem;
    max-width: 1300px;
    margin: 0 auto;
}

/* New class to constrain the single video width */
.video-grid.single-video {
    grid-template-columns: 1fr;
    max-width: 950px; 
}

.video-card {
    position: relative;
    background: var(--glass-bg-strong);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 4px;
    overflow: hidden;
    transition: var(--transition);
}
.video-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--hoh-gold), transparent);
    opacity: 0;
    transition: var(--transition);
    z-index: 5;
}
.video-card:hover {
    transform: translateY(-8px);
    border-color: var(--hoh-gold);
    box-shadow: 0 25px 50px rgba(0,0,0,0.5), 0 0 40px rgba(255, 102, 0, 0.15);
}
.video-card:hover::before { opacity: 1; }

.video-frame {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #000;
}
.video-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-meta {
    padding: 1.8rem 1.8rem 2rem;
    border-top: 1px solid var(--glass-border-soft);
}
.video-tag {
    font-size: 0.8rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--hoh-gold);
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.video-tag::before {
    content: '';
    width: 16px; height: 1px;
    background: var(--hoh-gold);
}
.video-meta h3 {
    font-family: var(--font-display);
    font-size: 1.85rem;
    font-weight: 500;
    color: #ffffff !important; 
    margin: 0 0 0.4rem;
    line-height: 1.2;
}
.video-meta h3 em {
    font-style: italic;
    color: var(--hoh-gold);
    font-weight: 400;
}
.video-meta p {
    color: var(--text-muted);
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.65;
    margin: 0 0 1rem;
}
.video-duration {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1rem;
    color: var(--text-dim);
}
.video-duration::before {
    content: '◆';
    font-size: 0.7rem;
    color: var(--hoh-gold);
}

@media (max-width: 968px) {
    .media-section { padding-top: 6rem; padding-bottom: 6rem; }
    .video-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .media-section { padding-left: 4vw; padding-right: 4vw; }
}

/* SECTION FOUNDATIONS (SHARED GLOBALLY ACROSS PAGE) */
.hoh-section { padding: 6rem 4vw; position: relative; }
.section-header { text-align: center; max-width: 750px; margin: 0 auto 5rem; }
.section-header .eyebrow { margin-bottom: 1.5rem; }
.section-title { font-size: clamp(2.4rem, 5vw, 4.2rem); font-weight: 400; margin-bottom: 1.2rem; }
.section-title em { font-style: italic; font-weight: 300; }
.section-subtitle { color: var(--text-muted); font-size: 1.15rem; max-width: 580px; margin: 0 auto; font-weight: 300; } /* Increased from 1.05rem */

/* ABOUT SECTION */
.about-section { background: var(--glass-bg-strong); border-top: 1px solid var(--glass-border-soft); border-bottom: 1px solid var(--glass-border-soft); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; max-width: 1300px; margin: 0 auto; align-items: center; }
.about-text p { margin-bottom: 1.5rem; color: var(--text-muted); font-size: 1.15rem; font-weight: 300; line-height: 1.7; } /* Increased from 1.05rem */
.about-image { position: relative; }
.about-image img { width: 100%; height: auto; border-radius: 4px; box-shadow: var(--shadow-gold), 0 20px 50px rgba(0,0,0,0.6); border: 1px solid var(--glass-border); transition: var(--transition); }
.about-image:hover img { transform: translateY(-5px); border-color: var(--hoh-gold); box-shadow: 0 0 60px rgba(255, 102, 0, 0.35), 0 30px 60px rgba(0,0,0,0.7); }

/* FEATURED INDUCTEES */
.inductees-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 2rem; max-width: 1400px; margin: 0 auto; }
.inductee-card { position: relative; border-radius: 4px; overflow: hidden; background: var(--glass-bg-strong); border: 1px solid var(--glass-border); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); transition: var(--transition); cursor: pointer; transform-style: preserve-3d; transform: perspective(1000px); }
.inductee-card-image { position: relative; aspect-ratio: 3/4; overflow: hidden; }
.inductee-card-image img { width: 100%; height: 100%; object-fit: cover; }
.inductee-card-image::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.95) 100%); z-index: 3; }
.inductee-rarity { position: absolute; top: 1.2rem; right: 1.2rem; z-index: 5; padding: 0.4rem 0.8rem; background: rgba(0, 0, 0, 0.7); backdrop-filter: blur(10px); border: 1px solid var(--hoh-gold); color: var(--hoh-gold); font-size: 0.75rem; letter-spacing: 0.25em; text-transform: uppercase; border-radius: 2px; } /* Increased */
.inductee-rarity.legendary { background: linear-gradient(135deg, rgba(255, 102, 0, 0.2), rgba(0, 0, 0, 0.4)); }
.inductee-card-body { position: relative; z-index: 5; padding: 1.6rem 1.6rem 1.8rem; border-top: 1px solid var(--glass-border); }
.inductee-category { font-size: 0.8rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--hoh-gold); margin-bottom: 0.5rem; display: flex; align-items: center; gap: 0.5rem; } /* Increased */
.inductee-category::before { content: ''; width: 16px; height: 1px; background: var(--hoh-gold); }
.inductee-name { font-family: var(--font-display); font-size: 1.85rem; font-weight: 500; margin-bottom: 0.3rem; line-height: 1.1; } /* Increased */
.inductee-meta { color: var(--text-dim); font-size: 0.95rem; margin-bottom: 1.2rem; font-style: italic; font-family: var(--font-display); } /* Increased */
.inductee-cta { color: var(--text-muted); font-size: 0.85rem; letter-spacing: 0.25em; text-transform: uppercase; text-decoration: none; display: inline-flex; align-items: center; gap: 0.6rem; transition: var(--transition); } /* Increased */
.inductee-cta:hover { color: var(--hoh-gold); }
.inductee-cta .btn-arrow { width: 16px; }
.inductee-cta:hover .btn-arrow { width: 24px; }
.inductee-card:hover { transform: perspective(1000px) translateY(-12px); border-color: var(--hoh-gold); box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 60px rgba(255, 102, 0, 0.15); }
.inductee-card.featured { grid-column: span 2; grid-row: span 1; }
.inductee-card.featured .inductee-card-image { aspect-ratio: 16/10; }
.inductee-card.featured .inductee-name { font-size: 2.6rem; } /* Increased */

/* VOTING SECTION */
.voting-section { background: radial-gradient(ellipse at 30% 50%, rgba(255, 102, 0, 0.1), transparent 60%), radial-gradient(ellipse at 80% 50%, rgba(255, 255, 255, 0.03), transparent 60%); }
.voting-container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.voting-info .eyebrow { margin-bottom: 1.5rem; }
.voting-info h2 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); font-weight: 400; margin-bottom: 1.5rem; line-height: 1.05; }
.voting-info p { color: var(--text-muted); margin-bottom: 1.2rem; font-weight: 300; font-size: 1.15rem; } /* Increased from 1rem */
.voting-panel { background: var(--glass-bg-strong); border: 1px solid var(--glass-border); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-radius: 4px; padding: 2.5rem; position: relative; box-shadow: var(--shadow-deep); }
.voting-panel::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--hoh-gold), transparent); }
.voting-panel-header { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 1.5rem; padding-bottom: 1.2rem; border-bottom: 1px solid var(--glass-border-soft); }
.voting-panel-header h4 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 500; } /* Increased */
.voting-panel-header span { font-size: 0.8rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--text-dim); } /* Increased */
.vote-row { display: grid; grid-template-columns: 32px 1fr auto; gap: 1rem; align-items: center; padding: 1rem 0; }
.vote-rank { font-family: var(--font-display); font-size: 1.5rem; font-style: italic; color: var(--hoh-gold); font-weight: 400; } /* Increased */
.vote-meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.4rem; }
.vote-name { font-family: var(--font-display); font-size: 1.2rem; font-weight: 500; } /* Increased from 1.05rem */
.vote-percent { font-size: 0.9rem; color: var(--hoh-gold); font-weight: 500; letter-spacing: 0.1em; } /* Increased from 0.75rem */
.vote-bar { height: 4px; background: rgba(255, 255, 255, 0.06); border-radius: 2px; overflow: hidden; position: relative; }
.vote-bar-fill { height: 100%; background: linear-gradient(90deg, #333333, var(--hoh-gold)); border-radius: 2px; position: relative; width: 0; transition: width 1.5s cubic-bezier(0.165, 0.84, 0.44, 1); box-shadow: 0 0 8px rgba(255, 102, 0, 0.5); }
.vote-bar-fill::after { content: ''; position: absolute; right: 0; top: 0; bottom: 0; width: 20px; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6)); }
.vote-action { width: 32px; height: 32px; border-radius: 50%; border: 1px solid var(--glass-border); background: transparent; color: var(--text-muted); cursor: pointer; display: grid; place-items: center; transition: var(--transition); font-size: 1.1rem; } /* Increased */
.vote-action:hover { border-color: var(--hoh-gold); color: var(--hoh-gold); background: rgba(255, 102, 0, 0.08); transform: scale(1.1); }

/* DIGITAL VAULT */
.vault-section { padding: 9rem 0; overflow: hidden; }
.vault-section .section-header { padding: 0 4vw; }
.vault-track-wrapper { overflow-x: auto; overflow-y: hidden; scrollbar-width: thin; scrollbar-color: var(--hoh-gold) transparent; padding: 2rem 4vw; cursor: grab; }
.vault-track-wrapper::-webkit-scrollbar { height: 4px; }
.vault-track-wrapper::-webkit-scrollbar-track { background: rgba(255,255,255,0.05); }
.vault-track-wrapper::-webkit-scrollbar-thumb { background: var(--hoh-gold); border-radius: 2px; }
.vault-track-wrapper:active { cursor: grabbing; }
.vault-track { display: flex; gap: 1.5rem; width: max-content; }
.vault-item { width: 320px; flex-shrink: 0; position: relative; background: var(--glass-bg-strong); border: 1px solid var(--glass-border-soft); border-radius: 4px; overflow: hidden; backdrop-filter: blur(12px); transition: var(--transition); transform-style: preserve-3d; }
.vault-item:hover { transform: translateY(-10px) scale(1.02); border-color: var(--hoh-gold); box-shadow: 0 30px 60px rgba(0,0,0,0.5), 0 0 50px rgba(255, 102, 0, 0.2); z-index: 5; }
.vault-item-visual { height: 320px; position: relative; overflow: hidden; display: grid; place-items: center; background: radial-gradient(circle at 50% 30%, rgba(255, 102, 0, 0.2), #000000); }
.vault-item-visual::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 30% 30%, rgba(255, 102, 0, 0.15), transparent 50%), radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.05), transparent 60%); transition: var(--transition); }
.vault-item:hover .vault-item-visual::before { transform: scale(1.2); }
.vault-item-info { padding: 1.5rem; border-top: 1px solid var(--glass-border-soft); }
.vault-item-tag { display: inline-block; padding: 0.3rem 0.6rem; background: rgba(255, 102, 0, 0.1); border: 1px solid rgba(255, 102, 0, 0.3); color: var(--hoh-gold); font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase; border-radius: 2px; margin-bottom: 0.8rem; } /* Increased */
.vault-item-tag.legendary { background: linear-gradient(90deg, rgba(255, 102, 0, 0.2), rgba(255, 255, 255, 0.05)); color: var(--hoh-gold-light); }
.vault-item-tag.rare { background: rgba(255, 255, 255, 0.05); border-color: rgba(255, 102, 0, 0.4); }
.vault-item-title { font-family: var(--font-display); font-size: 1.6rem; font-weight: 500; margin-bottom: 0.3rem; line-height: 1.15; } /* Increased from 1.4rem */
.vault-item-meta { display: flex; justify-content: space-between; color: var(--text-dim); font-size: 0.85rem; font-style: italic; font-family: var(--font-display); margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--glass-border-soft); } /* Increased */
.vault-item-meta .price { color: var(--hoh-gold); font-style: normal; font-family: var(--font-body); letter-spacing: 0.05em; }

/* EVENT / CEREMONY */
.event-section { padding: 0; min-height: 80vh; position: relative; display: grid; place-items: center; overflow: hidden; }
.event-bg { position: absolute; inset: 0; background: radial-gradient(ellipse at 70% 30%, rgba(255, 102, 0, 0.1), transparent 60%), radial-gradient(ellipse at 30% 70%, rgba(255, 255, 255, 0.05), transparent 60%), linear-gradient(135deg, #000000, #0a0a0a); z-index: 0; }
.event-bg::before { content: ''; position: absolute; inset: 0; background-image: repeating-linear-gradient(45deg, transparent 0, transparent 80px, rgba(255, 102, 0, 0.03) 80px, rgba(255, 102, 0, 0.03) 81px); }
.spotlight { position: absolute; top: -10%; width: 200px; height: 120%; background: linear-gradient(180deg, rgba(255, 102, 0, 0.15) 0%, transparent 70%); transform-origin: top center; filter: blur(20px); pointer-events: none; }
.spotlight.left { left: 15%; transform: rotate(-12deg); }
.spotlight.right { right: 15%; transform: rotate(12deg); }
.event-content { position: relative; z-index: 2; text-align: center; max-width: 850px; padding: 6rem 4vw; }
.event-date { display: inline-flex; align-items: center; gap: 1.5rem; margin-bottom: 2rem; font-family: var(--font-display); font-style: italic; font-size: 1.45rem; color: var(--hoh-gold); } /* Increased */
.event-date::before, .event-date::after { content: ''; width: 50px; height: 1px; background: var(--hoh-gold); }
.event-title { font-size: clamp(2.8rem, 6vw, 5rem); font-weight: 400; margin-bottom: 1.5rem; line-height: 1; }
.event-title em { font-style: italic; font-weight: 300; }
.event-details { display: flex; justify-content: center; gap: 3rem; margin: 2.5rem 0; flex-wrap: wrap; }
.event-detail { text-align: center; }
.event-detail .label { font-size: 0.85rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 0.4rem; } /* Increased from 0.7rem */
.event-detail .value { font-family: var(--font-display); font-size: 1.5rem; font-weight: 500; color: var(--text-primary); } /* Increased from 1.3rem */
.event-detail .value em { font-style: italic; color: var(--hoh-gold); }

/* SPONSORS SECTION UPDATED */
.sponsors-section { padding: 7rem 4vw 6rem; position: relative; }
.sponsors-section .section-header { text-align: center; max-width: 750px; margin: 0 auto; }
.sponsors-marquee-wrap { overflow: hidden; mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent); -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent); padding: 3rem 0; margin-top: 1rem; margin-bottom: -3rem; }
.sponsors-marquee { display: flex; gap: 3rem; width: max-content; animation: marquee 30s linear infinite; align-items: center; }
.sponsors-marquee:hover { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
.sponsor-logo-wrap { flex-shrink: 0; height: 120px; width: 220px; display: flex; align-items: center; justify-content: center; padding: 1.5rem; background: #ffffff; border: 4px solid transparent; border-radius: 6px; background-clip: padding-box, border-box; background-origin: padding-box, border-box; background-image: linear-gradient(#ffffff, #ffffff), linear-gradient(135deg, var(--hoh-gold) 0%, #333333 50%, var(--hoh-gold) 100%); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); box-shadow: inset 0 2px 8px rgba(0,0,0,0.08); transition: var(--transition); cursor: pointer; }
.sponsor-logo-wrap img { width: 100%; height: 100%; object-fit: contain; transition: var(--transition); }
.sponsor-logo-wrap:hover { border-color: transparent; background-image: linear-gradient(#ffffff, #ffffff), linear-gradient(135deg, var(--hoh-gold-light) 0%, var(--hoh-gold) 100%); transform: translateY(-10px) scale(1.02); box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(255, 102, 0, 0.35); }
.sponsor-logo-wrap:hover img { transform: scale(1.05); }

/* FOOTER */
.hoh-footer {
    padding: 5rem 4vw 2.5rem;
    border-top: 1px solid var(--glass-border-soft);
    background: linear-gradient(180deg, transparent, rgba(0,0,0,0.5));
    position: relative;
}
.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto 3rem;
}
.footer-brand h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 500;
}
.footer-brand p {
    color: var(--text-dim);
    font-size: 0.9rem;
    max-width: 320px;
    line-height: 1.7;
}
.footer-col h5 {
    font-family: var(--font-body);
    font-size: 0.72rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--hoh-gold);
    margin-bottom: 1.3rem;
    font-weight: 500;
}
.footer-col ul { list-style: none; margin:0; padding:0; }
.footer-col li { margin-bottom: 0.7rem; }
.footer-col a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
    font-weight: 300;
}
.footer-col a:hover { color: var(--hoh-gold); padding-left: 5px; }

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border-soft);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.footer-bottom p {
    color: var(--text-dim);
    font-size: 0.78rem;
    letter-spacing: 0.05em;
    margin: 0;
}
.social-links { display: flex; gap: 0.8rem; }
.social-link {
    width: 38px; height: 38px;
    border-radius: 50%;
    border: 1px solid var(--glass-border);
    color: var(--text-muted);
    display: grid;
    place-items: center;
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.85rem;
}
.social-link:hover {
    color: var(--hoh-magenta-deeper);
    background: var(--hoh-gold);
    border-color: var(--hoh-gold);
    box-shadow: 0 0 20px rgba(255, 102, 0, 0.5);
    transform: translateY(-3px);
}

/* SCROLL REVEAL (SHARED) */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 1s ease, transform 1s cubic-bezier(0.165, 0.84, 0.44, 1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* MOBILE RESPONSIVE (SHARED) */
@media (max-width: 991px) {
    .about-grid { display: flex; flex-direction: column; gap: 1.5rem; padding: 0 1.5rem; }
    .about-text { display: contents; }
    .about-text .eyebrow { order: 1; margin-bottom: 0 !important; text-align: center; }
    .about-image { order: 2; margin: 1rem 0; }
    .about-text .section-title { order: 3; text-align: center; }
    .about-text p { order: 4; font-size: 1.15rem; text-align: center; }
    .voting-container { grid-template-columns: 1fr; gap: 3rem; padding: 0 1.5rem; }
    .voting-info { text-align: center; }
    .voting-info div { display: flex; justify-content: center; }
    .voting-panel { padding: 1.5rem; }
    .voting-panel-header { flex-direction: column; align-items: flex-start; gap: 0.4rem; }
}

@media (max-width: 768px) {
    .inductees-grid { padding: 0 1.5rem; }
    .inductee-card.featured { grid-column: span 1; }
    .inductee-card.featured .inductee-card-image { aspect-ratio: 4/5; }
    .inductee-card.featured .inductee-name { font-size: 2rem; } /* Adjusted for mobile */
    .section-header { padding: 0 1.5rem; text-align: center; }
    .hero-pillar { display: none; }
    .hero-ring-stage { width: 380px; height: 380px;
        top: 43%;}
    .hoh-section { padding: 6rem 4vw; }
    .vault-section { padding: 4rem 0; }
    .vault-section .section-header { text-align: center; padding: 0 1.5rem; }
    .vault-track-wrapper { scroll-snap-type: x mandatory; padding: 1.5rem; -webkit-overflow-scrolling: touch; }
    .vault-item { width: 80vw; max-width: 280px; scroll-snap-align: center; }
    .vault-item-visual { height: 280px; }
}