Kick Off Meeting 2026 Ray White Lebak Bulus * { margin: 0; padding: 0; box-sizing: border-box; } :root { --primary: #4A4A4A; --primary-light: #FFFEF5; --accent: #FFEB00; --accent-dark: #FFD700; --accent-light: #FFFEF5; --gray-50: #f9fafb; --gray-100: #f3f4f6; --gray-200: #e5e7eb; --gray-600: #4b5563; --gray-700: #374151; --gray-900: #111827; --white: #ffffff; --dark-bg: #0f172a; --dark-card: #1e293b; --dark-text: #f0f9ff; } html { scroll-behavior: smooth; } body { font-family: \'Inter\', sans-serif; color: var(--primary); background-color: var(--white); line-height: 1.6; } h1, h2, h3, h4, h5, h6 { font-family: \'Playfair Display\', serif; font-weight: 700; } h1 { font-size: clamp(2rem, 5vw, 3.5rem); } h2 { font-size: clamp(1.875rem, 4vw, 2.25rem); } h3 { font-size: clamp(1.5rem, 3vw, 1.875rem); } /* Navigation */ nav { position: sticky; top: 0; z-index: 40; background: linear-gradient(135deg, var(--white) 0%, var(--accent-light) 100%); box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); border-bottom: 2px solid var(--accent); } .nav-container { max-width: 1280px; margin: 0 auto; padding: 0 1rem; display: flex; align-items: center; justify-content: space-between; height: 4rem; } .nav-logo { display: flex; align-items: center; gap: 0.5rem; font-weight: 700; color: var(--primary); } .nav-logo-icon { display: none; } .nav-menu { display: flex; gap: 2rem; align-items: center; } .nav-email { display: inline-flex; align-items: center; gap: 0.5rem; background-color: var(--accent); color: var(--primary); padding: 0.5rem 1rem; border-radius: 0.5rem; text-decoration: none; font-weight: 600; font-size: 0.875rem; transition: all 0.3s ease; border: none; cursor: pointer; } .nav-email:hover { background-color: var(--accent-dark); color: var(--white); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(255, 235, 0, 0.3); } .nav-email span { display: none; } @media (min-width: 640px) { .nav-email span { display: inline; } } /* Hero Carousel */ .hero { position: relative; height: 24rem; overflow: hidden; background: linear-gradient(135deg, var(--accent-light) 0%, var(--white) 100%); } @media (min-width: 768px) { .hero { height: 31.25rem; } } .hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1s ease; } .hero-slide.active { opacity: 1; } .hero-slide img { width: 100%; height: 100%; object-fit: cover; } .hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(74, 74, 74, 0.5) 0%, rgba(255, 235, 0, 0.3) 100%); } .hero-content { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; color: var(--white); } .hero-content h1 { margin-bottom: 1rem; text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3); } .hero-content p { font-size: 1.25rem; color: #f3f4f6; text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3); } /* Carousel Controls */ .carousel-btn { position: absolute; top: 50%; transform: translateY(-50%); z-index: 10; background-color: var(--accent); color: var(--primary); border: none; padding: 0.5rem; border-radius: 9999px; cursor: pointer; transition: all 0.3s ease; display: flex; align-items: center; justify-content: center; width: 2.5rem; height: 2.5rem; font-weight: 700; } .carousel-btn:hover { background-color: var(--accent-dark); transform: translateY(-50%) scale(1.1); box-shadow: 0 4px 12px rgba(255, 235, 0, 0.4); } .carousel-btn.prev { left: 1rem; } .carousel-btn.next { right: 1rem; } /* Slide Indicators */ .carousel-indicators { position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%); z-index: 10; display: flex; gap: 0.5rem; flex-wrap: wrap; justify-content: center; } .indicator { height: 0.5rem; border-radius: 9999px; background-color: rgba(255, 255, 255, 0.5); border: none; cursor: pointer; transition: all 0.3s ease; } .indicator.active { background-color: var(--accent); width: 2rem; } .indicator:not(.active) { width: 0.5rem; } .indicator:hover:not(.active) { background-color: rgba(255, 255, 255, 0.7); } /* Article Header */ .article-header { background: linear-gradient(to bottom, var(--accent-light), var(--white)); padding: 3rem 1rem; border-bottom: 3px solid var(--accent); } .article-header-content { max-width: 56rem; margin: 0 auto; } .article-badge { display: inline-block; background-color: var(--accent); color: var(--primary); padding: 0.25rem 0.75rem; border-radius: 9999px; font-size: 0.875rem; font-weight: 700; margin-bottom: 1.5rem; } .article-header h1 { margin-bottom: 1rem; line-height: 1.2; color: var(--primary); } .article-description { font-size: 1.125rem; color: var(--gray-600); margin-bottom: 1.5rem; } .article-meta { display: flex; align-items: center; gap: 1rem; font-size: 0.875rem; color: #9ca3af; } /* Table of Contents */ .toc-section { background: linear-gradient(135deg, var(--accent-light) 0%, var(--white) 100%); border-top: 2px solid var(--accent); border-bottom: 2px solid var(--accent); padding: 2rem 1rem; } .toc-content { max-width: 56rem; margin: 0 auto; } .toc-content h2 { font-size: 1.125rem; margin-bottom: 1rem; color: var(--primary); } .toc-grid { display: grid; grid-template-columns: 1fr; gap: 0.75rem; } @media (min-width: 768px) { .toc-grid { grid-template-columns: repeat(2, 1fr); } } .toc-link { color: var(--primary); text-decoration: none; font-size: 0.875rem; display: flex; align-items: center; gap: 0.5rem; transition: all 0.3s ease; font-weight: 500; padding: 0.5rem; border-radius: 0.375rem; } .toc-link:hover { background-color: var(--accent); color: var(--primary); padding-left: 1rem; } .toc-bullet { color: var(--accent); font-weight: 700; } /* Main Content */ .main-content { padding: 4rem 1rem; background-color: var(--white); } .content-container { max-width: 56rem; margin: 0 auto; } .content-section { margin-bottom: 4rem; scroll-margin-top: 5rem; } .content-section h2 { margin-bottom: 1.5rem; color: var(--primary); border-bottom: 3px solid var(--accent); padding-bottom: 0.75rem; } .content-section p { color: var(--gray-700); margin-bottom: 1.5rem; line-height: 1.8; } .quote-box { background: linear-gradient(135deg, var(--accent-light) 0%, rgba(255, 193, 7, 0.05) 100%); border-left: 4px solid var(--accent); padding: 1.5rem; border-radius: 0.5rem; margin: 1.5rem 0; } .quote-box p { color: var(--gray-900); font-weight: 500; margin: 0; } /* Speaker Cards */ .speakers-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin: 1.5rem 0; } @media (min-width: 768px) { .speakers-grid { grid-template-columns: repeat(3, 1fr); } } .speaker-card { background: linear-gradient(135deg, var(--accent-light) 0%, var(--white) 100%); padding: 1.5rem; border-radius: 0.5rem; border: 2px solid var(--accent); transition: all 0.3s ease; text-align: center; } .speaker-card:hover { box-shadow: 0 10px 25px rgba(255, 193, 7, 0.2); transform: translateY(-5px); } .speaker-photo { width: 100%; height: 12rem; background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%); border-radius: 0.5rem; margin-bottom: 1rem; object-fit: cover; display: block; } .speaker-avatar { width: 3rem; height: 3rem; background: linear-gradient(135deg, #1e40af, var(--accent)); border-radius: 0.5rem; margin: 0 auto 1rem; } .speaker-name { font-weight: 700; color: var(--primary); margin-bottom: 0.25rem; } .speaker-role { font-size: 0.875rem; color: var(--accent-dark); font-weight: 600; margin-bottom: 0.5rem; } .speaker-company { font-size: 0.875rem; color: var(--gray-600); } /* Values Grid */ .values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin: 1.5rem 0; } @media (min-width: 768px) { .values-grid { grid-template-columns: repeat(4, 1fr); } } .value-card { background: linear-gradient(135deg, var(--accent-light) 0%, rgba(255, 193, 7, 0.05) 100%); padding: 1rem; border-radius: 0.5rem; text-align: center; border: 2px solid var(--accent); } .value-card p { font-weight: 700; color: var(--primary); margin: 0; } /* CTA Section */ .cta-section { background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%); border-radius: 0.5rem; padding: 2rem 3rem; color: var(--white); margin: 2rem 0; } .cta-section h2 { color: var(--white); margin-bottom: 1rem; border-bottom: 3px solid rgba(255, 255, 255, 0.3); } .cta-section p { color: rgba(255, 255, 255, 0.95); font-size: 1.125rem; margin-bottom: 2rem; } .cta-buttons { display: flex; flex-direction: column; gap: 1rem; } @media (min-width: 640px) { .cta-buttons { flex-direction: row; } } .btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.75rem 1.5rem; border-radius: 0.5rem; font-weight: 700; text-decoration: none; border: none; cursor: pointer; transition: all 0.3s ease; font-size: 0.875rem; } .btn-primary { background-color: var(--white); color: var(--primary); } .btn-primary:hover { background-color: var(--accent-light); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); } .btn-secondary { border: 2px solid var(--white); color: var(--white); background-color: transparent; } .btn-secondary:hover { background-color: rgba(255, 255, 255, 0.1); transform: translateY(-2px); } /* Contact Section */ .contact-section { background: linear-gradient(135deg, var(--accent-light) 0%, var(--white) 100%); padding: 4rem 1rem; border-top: 3px solid var(--accent); } .contact-container { max-width: 56rem; margin: 0 auto; } .contact-container h2 { text-align: center; margin-bottom: 2rem; color: var(--primary); } .contact-card { background: linear-gradient(135deg, var(--white) 0%, var(--accent-light) 100%); padding: 2rem; border-radius: 0.5rem; border: 2px solid var(--accent); text-align: center; } .contact-card h3 { font-size: 1rem; margin-bottom: 1rem; color: var(--primary); } .contact-card p { color: var(--gray-600); margin-bottom: 1rem; font-size: 0.875rem; line-height: 1.6; } .contact-link { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--white); background-color: var(--accent); text-decoration: none; font-weight: 700; font-size: 0.875rem; padding: 0.75rem 1.5rem; border-radius: 0.5rem; transition: all 0.3s ease; } .contact-link:hover { background-color: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(255, 235, 0, 0.3); } /* Footer */ footer { background: linear-gradient(135deg, var(--primary) 0%, rgba(26, 58, 82, 0.9) 100%); color: #d1d5db; padding: 3rem 1rem; border-top: 3px solid var(--accent); } .footer-container { max-width: 80rem; margin: 0 auto; } .footer-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; margin-bottom: 2rem; } @media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } } .footer-column h4 { color: var(--white); font-weight: 700; margin-bottom: 1rem; font-family: \'Inter\', sans-serif; } .footer-column ul { list-style: none; } .footer-column ul li { margin-bottom: 0.5rem; font-size: 0.875rem; } .footer-column a { color: #d1d5db; text-decoration: none; transition: color 0.3s ease; } .footer-column a:hover { color: var(--accent); } .footer-logo { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1rem; } .footer-logo-icon { width: 2rem; height: 2rem; background: linear-gradient(135deg, #1e40af, var(--accent)); border-radius: 0.375rem; } .footer-logo span { color: var(--white); font-weight: 700; } .footer-address { background-color: rgba(255, 193, 7, 0.1); border-left: 3px solid var(--accent); padding: 1.5rem; border-radius: 0.375rem; margin-top: 2rem; } .footer-address h4 { margin-bottom: 0.75rem; } .footer-address p { font-size: 0.875rem; line-height: 1.6; color: #e5e7eb; } .footer-divider { border-top: 1px solid #374151; padding-top: 2rem; text-align: center; font-size: 0.875rem; } /* SVG Icons */ svg { width: 1.25rem; height: 1.25rem; fill: currentColor; } /* Responsive */ @media (max-width: 640px) { .nav-container { padding: 0 1rem; } } T Ray White Lebak Bulus Email