/* footer */ footer background: #07090e; padding: 48px 0 24px; border-top: 1px solid #1e293b; margin-top: 40px; .footer-grid display: flex; flex-wrap: wrap; justify-content: space-between; gap: 32px; margin-bottom: 40px; .footer-col h4 font-size: 1.2rem; margin-bottom: 16px; color: #cbd5e1; .footer-col p, .footer-col a color: #94a3b8; text-decoration: none; display: block; margin-bottom: 8px; .social-icons i font-size: 24px; margin-right: 16px; transition: 0.2s; color: #94a3b8; .social-icons i:hover color: #a5b4fc; .copyright text-align: center; padding-top: 24px; border-top: 1px solid #1e293b; font-size: 0.85rem; color: #5b6e8c;
// small console message for template usage console.log('Aethelgard Guild Template — ready to customize! Replace members, links, and content.'); </script> </body> </html>
/* recruitment */ .recruit-box background: linear-gradient(145deg, #0f172a, #0a0f1a); border-radius: 40px; padding: 48px 32px; text-align: center; border: 1px solid #334155; .recruit-box h3 font-size: 2rem; margin-bottom: 16px; .recruit-tags display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin: 28px 0; .tag background: #1e293b; padding: 8px 18px; border-radius: 40px; font-size: 0.9rem; font-weight: 500; .btn-secondary background: transparent; border: 2px solid #818cf8; padding: 12px 32px; border-radius: 40px; font-weight: bold; color: white; cursor: pointer; transition: 0.2s; .btn-secondary:hover background: #818cf8; color: #0a0c10; guild website template free
/* about / lore card */ .about-grid display: flex; gap: 40px; flex-wrap: wrap; background: #11161f; border-radius: 32px; padding: 40px; border: 1px solid #1e293b; .about-text flex: 2; .about-text h3 font-size: 1.8rem; margin-bottom: 16px; .about-text p margin-bottom: 20px; color: #cbd5e6; .about-stats flex: 1; background: #0f131a; border-radius: 24px; padding: 24px; display: flex; flex-direction: column; gap: 24px; .stat-item text-align: center; .stat-number font-size: 2.5rem; font-weight: 800; color: #a5b4fc;
/* header / navbar */ .navbar position: sticky; top: 0; background: rgba(10, 12, 16, 0.92); backdrop-filter: blur(12px); z-index: 100; border-bottom: 1px solid rgba(79, 70, 229, 0.3); padding: 16px 0; .nav-container display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; .logo display: flex; align-items: center; gap: 12px; .logo-icon font-size: 32px; color: #818cf8; .logo h1 font-size: 1.8rem; font-weight: 800; letter-spacing: -0.5px; background: linear-gradient(135deg, #c7d2fe, #a5b4fc); background-clip: text; -webkit-background-clip: text; color: transparent; .nav-links display: flex; gap: 28px; list-style: none; .nav-links a text-decoration: none; color: #e2e8f0; font-weight: 500; transition: 0.2s; font-size: 1rem; .nav-links a:hover, .nav-links a.active color: #a5b4fc; border-bottom: 2px solid #4f46e5; padding-bottom: 4px; .btn-outline-light border: 1px solid #4f46e5; background: transparent; padding: 8px 20px; border-radius: 40px; color: #e2e8f0; font-weight: 600; cursor: pointer; transition: 0.2s; .btn-outline-light:hover background: #4f46e5; color: white; box-shadow: 0 4px 14px rgba(79, 70, 229, 0.4); /* footer */ footer background: #07090e; padding: 48px
<!-- Roster / Members --> <section id="roster"> <div class="container"> <div class="section-title">🏅 Vanguard Council</div> <div class="section-sub">Meet the champions leading the charge</div> <div class="members-grid" id="membersContainer"> <!-- dynamic but also static default with JS? we fill both --> </div> </div> </section>
/* hero section */ .hero padding: 80px 0 100px; background: radial-gradient(circle at 10% 30%, rgba(79,70,229,0.15), transparent 70%); .hero-grid display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 40px; .hero-content flex: 1; .hero-badge background: rgba(79,70,229,0.2); display: inline-block; padding: 6px 16px; border-radius: 40px; font-size: 0.85rem; font-weight: 600; color: #a5b4fc; margin-bottom: 20px; border: 1px solid rgba(79,70,229,0.5); .hero-content h2 font-size: 3.4rem; font-weight: 800; line-height: 1.2; margin-bottom: 20px; .hero-highlight color: #818cf8; border-bottom: 3px solid #4f46e5; display: inline-block; .hero-content p font-size: 1.2rem; color: #cbd5e1; max-width: 550px; margin-bottom: 32px; .hero-buttons display: flex; gap: 16px; flex-wrap: wrap; .btn-primary background: #4f46e5; padding: 12px 28px; border-radius: 40px; font-weight: 700; border: none; color: white; cursor: pointer; transition: 0.2s; font-size: 1rem; .btn-primary:hover background: #6366f1; transform: translateY(-2px); box-shadow: 0 10px 20px -5px #4f46e5; .hero-image flex: 1; text-align: center; .hero-image i font-size: 220px; color: #2d2f48; filter: drop-shadow(0 0 12px #4f46e5); opacity: 0.8; /* footer */ footer background: #07090e
// general UI alerts / demo interactions (free template, but gives functional feedback) const applyBtn = document.getElementById('applyNowBtn'); const recruitApplyBtn = document.getElementById('recruitApplyBtn'); const discordNavBtn = document.getElementById('discordBtn');