/* ===== HAMBURGER MENU ===== */ .hamburger { display: none; flex-direction: column; justify-content: space-around; width: 30px; height: 30px; background: transparent; border: none; cursor: pointer; padding: 0; z-index: 1001; margin-left: auto; } .hamburger-line { width: 100%; height: 3px; background: linear-gradient(135deg, #3b82f6, #8b5cf6); border-radius: 2px; transition: all 0.3s ease; transform-origin: center; } .hamburger.active .hamburger-line:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); } .hamburger.active .hamburger-line:nth-child(2) { opacity: 0; transform: scaleX(0); } .hamburger.active .hamburger-line:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); } .nav-mobile { position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background: rgba(10, 10, 10, 0.98); backdrop-filter: blur(20px); display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 2rem; z-index: 1000; opacity: 0; visibility: hidden; transition: all 0.3s ease; transform: translateY(-100%); } .nav-mobile.active { opacity: 1; visibility: visible; transform: translateY(0); } .nav-link-mobile { color: #e5e7eb; text-decoration: none; font-size: 1.5rem; font-weight: 600; padding: 1rem 2rem; border-radius: 12px; text-align: center; min-width: 200px; border: 2px solid transparent; position: relative; overflow: hidden; } .nav-link-mobile::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(135deg, #3b82f6, #8b5cf6); transition: all 0.3s ease; z-index: -1; } .nav-link-mobile:hover::before, .nav-link-mobile.active::before { left: 0; } .nav-link-mobile:hover, .nav-link-mobile.active { color: white; border-color: #3b82f6; transform: translateY(-3px); } .nav-mobile .nav-link-mobile { animation: slideInFromRight 0.5s ease forwards; opacity: 0; transform: translateX(50px); } .nav-mobile.active .nav-link-mobile:nth-child(1) { animation-delay: 0.1s; } .nav-mobile.active .nav-link-mobile:nth-child(2) { animation-delay: 0.2s; } .nav-mobile.active .nav-link-mobile:nth-child(3) { animation-delay: 0.3s; } .nav-mobile.active .nav-link-mobile:nth-child(4) { animation-delay: 0.4s; } @keyframes slideInFromRight { to { opacity: 1; transform: translateX(0); } } @media (max-width: 768px) { .hamburger { display: flex; } .nav-desktop { display: none; } .logo-text { font-size: 1rem; } } /* ===== BACK TO TOOLS ===== */ .back-to-tools { display: inline-flex; align-items: center; gap: 8px; margin: 6rem 0 0 2rem; color: #3b82f6; text-decoration: none; font-weight: 500; padding: 0.6rem 1.2rem; border-radius: 40px; background: rgba(59, 130, 246, 0.1); border: 1px solid rgba(59, 130, 246, 0.3); transition: all 0.3s ease; width: fit-content; } @media (max-width: 768px) { .back-to-tools { margin: 5rem 0 0 1rem; font-size: 0.9rem; } } /* ===== TOOL HERO ===== */ .tool-hero { background: linear-gradient(135deg, #0a0a0a 0%, #111827 100%); padding: 6rem 0 2rem; text-align: center; } .tool-hero h1 { font-size: clamp(1.8rem, 5vw, 2.5rem); font-weight: 800; background: linear-gradient(135deg, #ffffff, #3b82f6); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 0.5rem; } .tool-hero p { color: #9ca3af; max-width: 600px; margin: 0 auto; } /* ===== MAIN TOOL CONTAINER ===== */ .tool-container { max-width: 1400px; margin: 2rem auto; padding: 0 2rem; display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; } @media (max-width: 900px) { .tool-container { grid-template-columns: 1fr; padding: 0 1rem; } } /* Form Section */ .form-section { background: rgba(17, 24, 39, 0.6); backdrop-filter: blur(10px); border: 1px solid rgba(59, 130, 246, 0.2); border-radius: 24px; padding: 2rem; max-height: 80vh; overflow-y: auto; } .form-section::-webkit-scrollbar { width: 6px; } .form-section::-webkit-scrollbar-track { background: rgba(59, 130, 246, 0.1); border-radius: 10px; } .form-section::-webkit-scrollbar-thumb { background: #3b82f6; border-radius: 10px; } .form-section h2, .form-section h3 { color: #3b82f6; margin: 1.5rem 0 1rem; border-bottom: 2px solid rgba(59, 130, 246, 0.3); padding-bottom: 0.5rem; display: inline-block; } .form-section h2 { margin-top: 0; font-size: 1.5rem; } .form-group { margin-bottom: 1rem; } label { display: block; margin-bottom: 0.5rem; color: #e5e7eb; font-weight: 500; } input, textarea, select { width: 100%; padding: 0.8rem 1rem; background: rgba(31, 41, 55, 0.8); border: 2px solid rgba(59, 130, 246, 0.2); border-radius: 12px; color: #ffffff; font-size: 1rem; transition: all 0.3s ease; } input:focus, textarea:focus, select:focus { outline: none; border-color: #3b82f6; box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2); } textarea { resize: vertical; min-height: 80px; } /* Image Upload */ .photo-upload { text-align: center; margin-bottom: 1.5rem; } .photo-preview { width: 120px; height: 120px; border-radius: 50%; object-fit: cover; border: 3px solid #3b82f6; background: rgba(31, 41, 55, 0.8); margin-bottom: 0.5rem; } .photo-btn { background: rgba(59, 130, 246, 0.2); padding: 0.4rem 1rem; font-size: 0.8rem; } /* Add/Remove Buttons */ .add-btn { background: rgba(34, 197, 94, 0.2); border: 1px solid #22c55e; padding: 0.4rem 1rem; font-size: 0.8rem; margin-top: 0.5rem; } .remove-item { background: #ef4444; color: white; border: none; padding: 0.2rem 0.6rem; border-radius: 20px; font-size: 0.7rem; cursor: pointer; margin-left: 0.5rem; } .experience-item, .education-item, .project-item { background: rgba(31, 41, 55, 0.4); padding: 0.8rem; border-radius: 12px; margin-bottom: 1rem; position: relative; } /* Preview Section */ #preview { background: white; color: #1f2937; border-radius: 24px; padding: 2rem; box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3); max-height: 80vh; overflow-y: auto; } #preview h1 { font-size: 1.8rem; color: #1f2937; margin-bottom: 0.25rem; } #preview h2 { font-size: 1.2rem; color: #3b82f6; border-bottom: 2px solid #3b82f6; padding-bottom: 0.3rem; margin: 1rem 0 0.5rem; } .preview-header { display: flex; gap: 1.5rem; align-items: center; margin-bottom: 1.5rem; flex-wrap: wrap; } .preview-photo { width: 100px; height: 100px; border-radius: 50%; object-fit: cover; border: 3px solid #3b82f6; } .preview-contact { color: #6b7280; font-size: 0.9rem; margin-top: 0.5rem; } #preview ul { list-style: none; padding-left: 0; } #preview li { margin-bottom: 0.3rem; padding-left: 1.2rem; position: relative; } #preview li::before { content: "•"; color: #3b82f6; font-weight: bold; position: absolute; left: 0; } #preview .job-title, #preview .edu-title { font-weight: 600; } #preview .job-date, #preview .edu-date { color: #6b7280; font-size: 0.85rem; } /* Export Section */ .export-section { grid-column: 1 / -1; text-align: center; padding: 2rem; background: rgba(17, 24, 39, 0.6); backdrop-filter: blur(10px); border-radius: 24px; border: 1px solid rgba(59, 130, 246, 0.2); } .uses-info { margin-bottom: 1rem; color: #9ca3af; } .export-btn { background: linear-gradient(135deg, #22c55e, #16a34a); color: white; border: none; padding: 1rem 2rem; border-radius: 40px; font-size: 1rem; font-weight: 600; cursor: pointer; transition: all 0.3s; display: inline-flex; align-items: center; gap: 8px; } .export-btn:hover { transform: translateY(-3px); box-shadow: 0 10px 25px rgba(34, 197, 94, 0.3); } /* Cookie Banner */ #cookie-banner { position: fixed; bottom: 20px; left: 20px; right: 20px; background: rgba(17, 24, 39, 0.95); backdrop-filter: blur(10px); border: 1px solid rgba(59, 130, 246, 0.3); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; padding: 0.8rem 1.5rem; border-radius: 60px; z-index: 1100; max-width: 500px; margin: 0 auto; } #cookie-accept { background: linear-gradient(135deg, #3b82f6, #8b5cf6); border: none; padding: 0.4rem 1.2rem; border-radius: 40px; font-weight: 600; cursor: pointer; color: white; } .notification { position: fixed; bottom: 80px; right: 20px; background: #22c55e; color: white; padding: 0.8rem 1.5rem; border-radius: 40px; z-index: 1100; animation: slideIn 0.3s ease; } @keyframes slideIn { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } } .footer { background: linear-gradient(180deg, #0a0a0a 0%, #000000 100%); border-top: 1px solid rgba(59, 130, 246, 0.2); padding: 3rem 0 1.5rem; margin-top: 3rem; } .footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-bottom: 2rem; } .footer-section h3 { color: white; margin-bottom: 1rem; } .footer-links { list-style: none; } .footer-links li { margin-bottom: 0.5rem; } .footer-links a { color: #9ca3af; text-decoration: none; font-size: 0.85rem; } .footer-links a:hover { color: #3b82f6; } .footer-social { display: flex; gap: 1rem; margin-top: 1rem; } .footer-social .social-link { background: rgba(59, 130, 246, 0.1); color: #3b82f6; width: 36px; height: 36px; border-radius: 8px; display: flex; align-items: center; justify-content: center; text-decoration: none; } .footer-bottom { text-align: center; padding-top: 1.5rem; border-top: 1px solid rgba(59, 130, 246, 0.1); color: #6b7280; font-size: 0.8rem; }
Fill your details, upload photo, see live preview, and export as PDF. Perfect for South African job seekers.
Resets daily at midnight
💡 Tip: Mobile users - PDF will download properly! All your data is preserved.