﻿ :root { --primary: #6366f1; --primary-dark: #4f46e5; --secondary: #ec4899; --accent: #f59e0b; --bg-body: #f8fafc; --text-main: #1e293b; --text-muted: #64748b; --white: #ffffff; --nav-height: 80px; --radius-lg: 20px; --radius-md: 12px; } .text-highlight { color: #ec4899; font-weight: 700; } svg.lucide, i[data-lucide] svg { width: 24px; height: 24px; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; fill: none; display: inline-block; vertical-align: middle; } .icon-sm svg { width: 18px; height: 18px; } .icon-lg svg { width: 32px; height: 32px; } .icon-xl svg { width: 48px; height: 48px; } @-webkit-keyframes fadeUp { from { opacity: 0; -webkit-transform: translateY(30px); transform: translateY(30px); } to { opacity: 1; -webkit-transform: translateY(0); transform: translateY(0); } } @keyframes fadeUp { from { opacity: 0; -webkit-transform: translateY(30px); transform: translateY(30px); } to { opacity: 1; -webkit-transform: translateY(0); transform: translateY(0); } } @-webkit-keyframes scaleIn { from { opacity: 0; -webkit-transform: scale(0.95); transform: scale(0.95); } to { opacity: 1; -webkit-transform: scale(1); transform: scale(1); } } @keyframes scaleIn { from { opacity: 0; -webkit-transform: scale(0.95); transform: scale(0.95); } to { opacity: 1; -webkit-transform: scale(1); transform: scale(1); } } .animate-fade-up { opacity: 0; -webkit-animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards; animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards; } .animate-scale-in { opacity: 0; -webkit-animation: scaleIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards; animation: scaleIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards; } * { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: 'Inter', sans-serif; color: var(--text-main); background-color: var(--bg-body); line-height: 1.6; overflow-x: hidden; } h1, h2, h3 { font-family: 'Outfit', sans-serif; font-weight: 700; } a { text-decoration: none; color: inherit; transition: 0.3s ease; } .container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; } .btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.8rem 1.8rem; border-radius: 50px; font-weight: 600; font-size: 1rem; cursor: pointer; border: none; transition: transform 0.2s, box-shadow 0.2s; } .btn-primary { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: white; box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4); } .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(99, 102, 241, 0.5); } .btn-outline { background: transparent; border: 2px solid var(--primary); color: var(--primary); } .btn-outline:hover { background: var(--primary); color: white; } .btn-block { width: 100%; justify-content: center; } .navbar { height: var(--nav-height); position: fixed; width: 100%; top: 0; z-index: 1000; background: rgba(255, 255, 255, 0.9); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); border-bottom: 1px solid rgba(0, 0, 0, 0.05); } .nav-container { display: flex; justify-content: space-between; gap: 0; align-items: center; height: 100%; } .logo { display: flex; align-items: center; gap: 12px; text-decoration: none; } .logo-text { font-family: 'Outfit', sans-serif; font-size: 2.4rem; font-weight: 800; letter-spacing: -0.04em; background: linear-gradient(120deg, var(--text-main) 30%, var(--primary)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; line-height: 1.2; padding-bottom: 5px; } .logo-img { height: 60px; width: auto; } .nav-links { display: flex; gap: 2rem; align-items: center; list-style: none; } .nav-link { font-weight: 500; position: relative; transition: color 0.3s; } .nav-link:hover, .nav-link.active { color: var(--primary); } .nav-link.active::after { content: ''; position: absolute; bottom: -5px; left: 0; width: 100%; height: 2px; background: var(--primary); border-radius: 2px; } .nav-btn-highlight { background: var(--secondary); color: white; padding: 0.5rem 1.2rem; border-radius: 50px; font-weight: 600; box-shadow: 0 4px 10px rgba(236, 72, 153, 0.3); } .nav-btn-highlight:hover { background: #db2777; } .page-header { padding: 8rem 0 3rem; text-align: center; background: white; } .page-header h1 { font-size: 5rem; font-weight: 900; margin-bottom: 1rem; background: linear-gradient(to right, #f43f5e, #8b5cf6); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; line-height: 1.1; text-transform: uppercase; letter-spacing: -2px; } .hero { padding-top: calc(var(--nav-height) + 4rem); padding-bottom: 4rem; min-height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden; will-change: transform; } .hero-bg-shapes { position: absolute; inset: 0; z-index: -1; } .shape { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.4; -webkit-transform: translateZ(0); transform: translateZ(0); will-change: transform; } .shape-1 { width: 400px; height: 400px; background: var(--primary); top: -100px; right: -100px; } .shape-2 { width: 300px; height: 300px; background: var(--secondary); bottom: 0; left: -50px; } .hero-content { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; } .hero-text h1 { font-size: clamp(2.5rem, 5vw, 4rem); line-height: 1.1; margin-bottom: 1.5rem; } .highlight { color: var(--primary); background: -webkit-linear-gradient(45deg, var(--primary), var(--secondary)); background-clip: text; -webkit-background-clip: text; -webkit-text-fill-color: transparent; } .hero-sub { font-size: 1.2rem; color: var(--text-muted); margin-bottom: 2rem; max-width: 90%; } .image-wrapper { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1); transform: perspective(1000px) rotateY(-5deg); transition: transform 0.5s ease; } .image-wrapper:hover { transform: perspective(1000px) rotateY(0deg); } .hero-img { width: 100%; height: auto; display: block; } .floating-badge { position: absolute; background: white; padding: 0.8rem 1.2rem; border-radius: 50px; box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1); display: flex; align-items: center; gap: 8px; font-weight: 600; font-size: 0.9rem; animation: float 4s ease-in-out infinite; will-change: transform; } .badge-1 { top: 20px; left: -20px; color: var(--primary); } .badge-2 { bottom: 30px; right: -10px; color: var(--secondary); animation-delay: 2s; } .section-ribbon { position: absolute; top: 0; left: 0; width: 100%; height: 1px; z-index: 10; overflow: hidden; transition: height 0.6s cubic-bezier(0.34, 1.56, 0.64, 1); } .section-ribbon::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0; transition: opacity 0.4s ease; } .section-ribbon::after { content: ''; position: absolute; top: 50%; left: 0; width: 100%; height: 1px; transform: translateY(-50%); opacity: 0; filter: blur(2px); transition: all 0.4s ease; } .section-ribbon[data-color="blue"]::before { background: linear-gradient(90deg, transparent 0%, #6366f1 20%, #8b5cf6 50%, #6366f1 80%, transparent 100%); box-shadow: 0 0 15px #6366f1, 0 0 30px #6366f1, 0 0 45px rgba(99, 102, 241, 0.5); animation: laserScan 2.7s ease-in-out infinite; } .section-ribbon[data-color="blue"]::after { background: linear-gradient(90deg, transparent, #6366f1, transparent); box-shadow: 0 0 20px #6366f1, 0 0 35px rgba(99, 102, 241, 0.6); } .section-ribbon[data-color="pink"]::before { background: linear-gradient(90deg, transparent 0%, #ec4899 20%, #f472b6 50%, #ec4899 80%, transparent 100%); box-shadow: 0 0 15px #ec4899, 0 0 30px #ec4899, 0 0 45px rgba(236, 72, 153, 0.5); animation: laserScan 3.4s ease-in-out infinite; } .section-ribbon[data-color="pink"]::after { background: linear-gradient(90deg, transparent, #ec4899, transparent); box-shadow: 0 0 20px #ec4899, 0 0 35px rgba(236, 72, 153, 0.6); } .section-ribbon[data-color="orange"]::before { background: linear-gradient(90deg, transparent 0%, #f59e0b 20%, #fbbf24 50%, #f59e0b 80%, transparent 100%); box-shadow: 0 0 15px #f59e0b, 0 0 30px #f59e0b, 0 0 45px rgba(245, 158, 11, 0.5); animation: laserScan 2.2s ease-in-out infinite; } .section-ribbon[data-color="orange"]::after { background: linear-gradient(90deg, transparent, #f59e0b, transparent); box-shadow: 0 0 20px #f59e0b, 0 0 35px rgba(245, 158, 11, 0.6); } @keyframes laserScan { 0%, 100% { transform: translateX(-10%); } 50% { transform: translateX(10%); } } .section-ribbon.active::before { opacity: 1; } .section-ribbon.active::after { opacity: 0.6; height: 3px; filter: blur(4px); } .about-section .section-ribbon.active { height: 2px; } .courses-section .section-ribbon.active { height: 4px; } .register-section .section-ribbon.active { height: 6px; } .about-section, .courses-section, .register-section { position: relative; } .about-section { padding: 5rem 0; background: white; } .section-header { margin-bottom: 4rem; } .section-header h2 { font-size: 2.5rem; margin-bottom: 1rem; } .divider { width: 60px; height: 4px; background: var(--accent); margin: 0 auto 1rem; border-radius: 2px; } .philosophy-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; } .phil-card { padding: 2.5rem 2rem; background: #f8fafc; border-radius: var(--radius-lg); text-align: center; transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); border: 2px solid rgba(99, 102, 241, 0.2); box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05); position: relative; overflow: hidden; will-change: transform; } .phil-card:hover { transform: translateY(-10px) scale(1.02); box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); border-color: rgba(99, 102, 241, 0.3); } .phil-card h3 { text-align: center; margin-bottom: 1rem; } .phil-card p { text-align: center; } .phil-card:hover .icon-box { transform: scale(1.2) rotate(5deg); } .icon-box { width: 70px; height: 70px; margin: 0 auto 1.5rem; display: flex; align-items: center; justify-content: center; border-radius: 20px; color: white; font-size: 1.5rem; transition: transform 0.4s ease; animation: popIn 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) backwards; } .phil-card:nth-child(1) .icon-box { animation-delay: 0.2s; } .phil-card:nth-child(2) .icon-box { animation-delay: 0.4s; } .phil-card:nth-child(3) .icon-box { animation-delay: 0.6s; } @keyframes popIn { 0% { transform: scale(0); opacity: 0; } 100% { transform: scale(1); opacity: 1; } } .icon-blue { background: var(--primary); } .icon-pink { background: var(--secondary); } .icon-orange { background: var(--accent); } .card-blue { border-color: rgba(99, 102, 241, 0.3); box-shadow: 0 4px 6px -1px rgba(99, 102, 241, 0.1), 0 0 20px rgba(99, 102, 241, 0.15); } .card-blue:hover { border-color: rgba(99, 102, 241, 0.5); box-shadow: 0 20px 25px -5px rgba(99, 102, 241, 0.2), 0 10px 10px -5px rgba(99, 102, 241, 0.1), 0 0 40px rgba(99, 102, 241, 0.3); } .card-pink { border-color: rgba(236, 72, 153, 0.3); box-shadow: 0 4px 6px -1px rgba(236, 72, 153, 0.1), 0 0 20px rgba(236, 72, 153, 0.15); } .card-pink:hover { border-color: rgba(236, 72, 153, 0.5); box-shadow: 0 20px 25px -5px rgba(236, 72, 153, 0.2), 0 10px 10px -5px rgba(236, 72, 153, 0.1), 0 0 40px rgba(236, 72, 153, 0.3); } .card-orange { border-color: rgba(245, 158, 11, 0.3); box-shadow: 0 4px 6px -1px rgba(245, 158, 11, 0.1), 0 0 20px rgba(245, 158, 11, 0.15); } .card-orange:hover { border-color: rgba(245, 158, 11, 0.5); box-shadow: 0 20px 25px -5px rgba(245, 158, 11, 0.2), 0 10px 10px -5px rgba(245, 158, 11, 0.1), 0 0 40px rgba(245, 158, 11, 0.3); } @media (max-width: 768px) { .phil-card { transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); } .phil-card.scroll-highlight { transform: scale(1.05); z-index: 10; position: relative; } .phil-card.card-blue.scroll-highlight { box-shadow: 0 0 30px rgba(99, 102, 241, 0.6), 0 0 60px rgba(99, 102, 241, 0.4), 0 10px 40px rgba(99, 102, 241, 0.3), 0 4px 20px rgba(0, 0, 0, 0.1); border: 2px solid rgba(99, 102, 241, 0.5); } .phil-card.card-pink.scroll-highlight { box-shadow: 0 0 30px rgba(236, 72, 153, 0.6), 0 0 60px rgba(236, 72, 153, 0.4), 0 10px 40px rgba(236, 72, 153, 0.3), 0 4px 20px rgba(0, 0, 0, 0.1); border: 2px solid rgba(236, 72, 153, 0.5); } .phil-card.card-orange.scroll-highlight { box-shadow: 0 0 30px rgba(245, 158, 11, 0.6), 0 0 60px rgba(245, 158, 11, 0.4), 0 10px 40px rgba(245, 158, 11, 0.3), 0 4px 20px rgba(0, 0, 0, 0.1); border: 2px solid rgba(245, 158, 11, 0.5); } .phil-card.scroll-highlight .icon-box { transform: scale(1.1); box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15); } .philosophy-grid:has(.scroll-highlight) .phil-card:not(.scroll-highlight) { opacity: 0.6; transform: scale(0.95); } } @media (max-width: 768px) { .course-card { transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); } .course-card.scroll-highlight { transform: scale(1.05); z-index: 10; position: relative; } .courses-grid .course-card:nth-child(1).scroll-highlight { box-shadow: 0 0 30px rgba(99, 102, 241, 0.6), 0 0 60px rgba(99, 102, 241, 0.4), 0 10px 40px rgba(99, 102, 241, 0.3), 0 4px 20px rgba(0, 0, 0, 0.1); border: 2px solid rgba(99, 102, 241, 0.7); } .courses-grid .course-card:nth-child(2).scroll-highlight { box-shadow: 0 0 30px rgba(236, 72, 153, 0.6), 0 0 60px rgba(236, 72, 153, 0.4), 0 10px 40px rgba(236, 72, 153, 0.3), 0 4px 20px rgba(0, 0, 0, 0.1); border: 2px solid rgba(236, 72, 153, 0.7); } .courses-grid .course-card:nth-child(3).scroll-highlight { box-shadow: 0 0 30px rgba(245, 158, 11, 0.6), 0 0 60px rgba(245, 158, 11, 0.4), 0 10px 40px rgba(245, 158, 11, 0.3), 0 4px 20px rgba(0, 0, 0, 0.1); border: 2px solid rgba(245, 158, 11, 0.7); } .course-card.scroll-highlight .course-icon { transform: scale(1.1); box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15); } .courses-grid:has(.scroll-highlight) .course-card:not(.scroll-highlight) { opacity: 0.6; transform: scale(0.95); } } .courses-section { padding: 5rem 0; background: #f8fafc; } .courses-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; } .course-card { background: white; border-radius: var(--radius-lg); padding: 2.5rem; position: relative; border: 2px solid var(--primary); transition: all 0.3s; will-change: transform; } .course-card:hover { box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08); border-color: var(--primary); } .course-card.featured { transform: scale(1.05); } .course-badge { position: absolute; top: 20px; right: 20px; font-size: 0.8rem; font-weight: 600; background: #f1f5f9; padding: 4px 10px; border-radius: 4px; color: var(--text-muted); } .course-badge.popular { background: var(--primary); color: white; } .course-icon { width: 50px; height: 50px; background: #e0e7ff; color: var(--primary); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; } .course-features { list-style: none; margin: 1.5rem 0; } .course-features li { display: flex; gap: 10px; margin-bottom: 0.5rem; color: var(--text-muted); font-size: 0.95rem; } .course-features li i { color: var(--primary); width: 18px; } .register-section { padding: 6rem 0; background: linear-gradient(135deg, #1e293b, #0f172a); color: white; } .register-container { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; } .register-content p { color: #94a3b8; margin-bottom: 2rem; } .register-heading { font-size: 3.5rem; line-height: 1.1; margin-bottom: 1rem; color: white; font-weight: 800; } .register-subtext { font-size: 1.2rem; color: var(--text-muted); margin-bottom: 2rem; } .taster-incentive { font-size: 1.5rem; font-weight: 700; color: #db2777; background: linear-gradient(135deg, #fdf2f8 0%, #fce7f3 100%); padding: 1.2rem 2rem; border-radius: 50px; display: block; text-align: center; margin: 0 auto 2.5rem; max-width: fit-content; filter: drop-shadow(0 4px 15px rgba(219, 39, 119, 0.2)); animation: enchantedGlow 3s infinite ease-in-out; border: 2px solid #fbcfe8; transition: all 0.3s ease; white-space: nowrap; overflow: visible; } .taster-incentive:hover { transform: scale(1.05); filter: drop-shadow(0 8px 25px rgba(219, 39, 119, 0.35)); border-color: #f9a8d4; } @keyframes enchantedGlow { 0% { transform: scale(1); filter: drop-shadow(0 4px 15px rgba(219, 39, 119, 0.2)); } 50% { transform: scale(1.03); filter: drop-shadow(0 6px 20px rgba(219, 39, 119, 0.3)); } 100% { transform: scale(1); filter: drop-shadow(0 4px 15px rgba(219, 39, 119, 0.2)); } } .benefit-list { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; } .benefit-item { display: flex; align-items: center; gap: 10px; font-weight: 600; } .register-form { background: white; padding: 2.5rem; border-radius: var(--radius-lg); color: var(--text-main); } .form-group { margin-bottom: 1.2rem; } .form-group label { display: block; font-size: 0.9rem; font-weight: 600; margin-bottom: 0.5rem; } .form-group input, .form-group select { width: 100%; padding: 0.8rem; border: 1px solid #e2e8f0; border-radius: 8px; font-family: inherit; outline: none; transition: border-color 0.2s; } .form-group label .required { color: #ef4444; margin-left: 2px; } .form-group input.error, .form-group select.error { border-color: #ef4444; animation: shake 0.3s; } @keyframes shake { 0%, 100% { transform: translateX(0); } 25% { transform: translateX(-5px); } 75% { transform: translateX(5px); } } .form-group input:focus { border-color: var(--primary); } .form-message { margin-bottom: 1rem; padding: 0.8rem; border-radius: 8px; font-size: 0.9rem; display: none; } .form-message.error { display: block; background-color: #fee2e2; color: #991b1b; border: 1px solid #fecaca; } .form-message.success { display: block; background-color: #dcfce7; color: #166534; border: 1px solid #bbf7d0; } .footer { background: #f8fafc; padding-top: 4rem; border-top: 1px solid #e2e8f0; } .footer-content { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 4rem; padding-bottom: 3rem; } .footer-brand { display: flex; flex-direction: column; gap: 1rem; } .footer-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; margin-bottom: 0.5rem; } .footer-links h4 { margin-bottom: 1.5rem; color: var(--text-main); font-weight: 700; } .footer-links ul li { margin-bottom: 1rem; } .footer-links ul li a { color: var(--text-muted); transition: 0.2s; display: flex; align-items: center; } .footer-links ul li a:hover { color: var(--primary); transform: translateX(5px); } .footer-social { display: flex; gap: 1rem; margin-top: 1rem; } .footer-social a { width: 50px; height: 50px; border-radius: 50%; background: #f1f5f9; display: flex; align-items: center; justify-content: center; color: var(--text-main); transition: 0.3s; } .footer-social a svg { width: 28px; height: 28px; } .footer-social a:hover { background: var(--primary); color: white; } @keyframes spin-slow { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } } .python-icon { width: 48px; height: 48px; margin: 0 auto 1.5rem; display: block; fill: var(--primary); transition: all 0.4s ease; animation: spin-slow 12s linear infinite; } .course-card:hover .python-icon { fill: var(--accent); transform: scale(1.1) rotate(15deg); animation-duration: 3s; } @media (min-width: 768px) { .courses-grid:hover .course-card { filter: blur(3px); opacity: 0.6; transform: scale(0.98); transition: all 0.4s ease; } .courses-grid .course-card:hover { filter: blur(0px) !important; opacity: 1 !important; transform: scale(1.05) translateY(-10px) !important; box-shadow: 0 20px 60px rgba(168, 85, 247, 0.4), 0 0 0 3px rgba(168, 85, 247, 0.3); border-color: #a855f7; background: linear-gradient(135deg, #ffffff 0%, #faf5ff 100%); z-index: 10; position: relative; } .courses-grid .course-card:hover .course-icon { background: linear-gradient(135deg, #a855f7, #ec4899); color: white; transform: scale(1.1) rotate(5deg); } .courses-grid .course-card:hover .course-badge { background: #a855f7; color: white; } } @media (max-width: 767px) { .course-card { transition: all 0.4s ease; } .course-card.active-card { box-shadow: 0 15px 40px rgba(168, 85, 247, 0.3), 0 0 0 2px rgba(168, 85, 247, 0.2); border-color: #a855f7; background: linear-gradient(135deg, #ffffff 0%, #faf5ff 100%); transform: scale(1.02); } .course-card.active-card .course-icon { background: linear-gradient(135deg, #a855f7, #ec4899); color: white; } .course-card.active-card .course-badge { background: #a855f7; color: white; } .course-card:not(.active-card) { opacity: 0.7; } } .courses-grid .course-card:nth-child(1) { animation: fadeUp 0.6s ease-out 0.1s both; } .courses-grid .course-card:nth-child(2) { animation: fadeUp 0.6s ease-out 0.2s both; } .courses-grid .course-card:nth-child(3) { animation: fadeUp 0.6s ease-out 0.3s both; } .btn-primary:hover { background-color: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 10px 15px -3px rgba(99, 102, 241, 0.4); } .footer-bottom { text-align: center; padding: 1.5rem; border-top: 1px solid #f1f5f9; color: var(--text-muted); font-size: 0.9rem; } @keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } } @media (max-width: 479px) { .hero-text h1 { font-size: 1.75rem; line-height: 1.2; } .hero-sub { font-size: 0.9rem; line-height: 1.5; } .section-header h2 { font-size: 1.75rem; } .section-header h3 { font-size: 1rem; } .nav-links { display: none; } .mobile-toggle { display: block; cursor: pointer; z-index: 1001; } .navbar { padding: 0.75rem 0; } .logo-text { font-size: 2rem; } .logo-img { height: 48px; } .hero { padding: 5rem 0 3rem; } .hero-content { grid-template-columns: 1fr; gap: 2rem; text-align: center; } .hero-visual { order: -1; } .computer-container { max-width: 280px; } .screen { height: 200px; } .btn { padding: 0.875rem 1.5rem; font-size: 0.9rem; min-height: 48px; } .btn-lg { padding: 1rem 1.75rem; font-size: 1rem; } .courses-grid { grid-template-columns: 1fr; gap: 1.5rem; } .course-card { padding: 1.75rem; } .course-card.featured { transform: none; } .courses-grid:hover .course-card { transform: none; opacity: 1; filter: none; } .philosophy-grid { grid-template-columns: 1fr; gap: 1.5rem; } .phil-card { padding: 1.75rem; } .register-container { grid-template-columns: 1fr; gap: 2rem; text-align: center; } .register-heading { font-size: 1.5rem; } .benefit-list { grid-template-columns: 1fr; gap: 0.75rem; } .form-group input, .form-group select { padding: 1rem; font-size: 16px; min-height: 48px; } .btn-block { min-height: 52px; font-size: 1rem; } .footer-content { grid-template-columns: 1fr; gap: 2rem; text-align: center; } .footer-social { justify-content: center; } .pathway-info-grid { grid-template-columns: 1fr; gap: 1.5rem; } .pathway-final-year { grid-column: span 1; } .hero-bg-shapes { display: none; } .stand, .stand-base { display: none; } } @media (min-width: 480px) and (max-width: 767px) { .hero-text h1 { font-size: 2rem; line-height: 1.2; } .hero-sub { font-size: 0.95rem; } .section-header h2 { font-size: 2rem; } .nav-links { display: none; } .mobile-toggle { display: block; cursor: pointer; z-index: 1001; } .hero { padding: 6rem 0 4rem; } .hero-content { grid-template-columns: 1fr; gap: 2.5rem; text-align: center; } .computer-container { max-width: 350px; } .screen { height: 240px; } .courses-grid { grid-template-columns: 1fr; gap: 2rem; } .course-card.featured { transform: none; } .courses-grid:hover .course-card { transform: none; opacity: 1; filter: none; } .philosophy-grid { grid-template-columns: 1fr; gap: 2rem; } .register-container { grid-template-columns: 1fr; gap: 2.5rem; text-align: center; } .benefit-list { grid-template-columns: repeat(2, 1fr); } .form-group input, .form-group select { padding: 1rem; font-size: 16px; min-height: 48px; } .footer-content { grid-template-columns: 1fr; gap: 2.5rem; text-align: center; } .footer-social { justify-content: center; } .pathway-info-grid { grid-template-columns: 1fr; } .pathway-final-year { grid-column: span 1; } } @media (min-width: 768px) and (max-width: 1023px) { .story-section { grid-template-columns: 1fr !important; gap: 2rem; } .story-image { display: none; } .story-text p { font-size: 1rem !important; padding: 0 2rem; } .story-text { background: white; border-radius: 12px; padding: 2rem !important; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08); margin: 1rem auto; max-width: 700px; } .container { padding: 0 2rem; } .hero-text h1 { font-size: 2.5rem; } .section-header h2 { font-size: 2.25rem; } .nav-links { display: flex; } .mobile-toggle { display: none; } .hero-content { grid-template-columns: 1fr 1fr; gap: 3rem; } .computer-container { max-width: 400px; } .courses-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; } .course-card:nth-child(3) { grid-column: span 2; max-width: 500px; margin: 0 auto; } .philosophy-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; } .phil-card:nth-child(3) { grid-column: span 2; max-width: 500px; margin: 0 auto; } .register-container { grid-template-columns: 1fr 1fr; gap: 3rem; } .footer-content { grid-template-columns: 2fr 1fr 1fr; gap: 2rem; } .pathway-info-grid { grid-template-columns: 1fr 1fr; } .pathway-final-year { grid-column: span 2; } } @media (min-width: 1024px) and (max-width: 1279px) { .container { max-width: 960px; } .courses-grid { grid-template-columns: repeat(3, 1fr); } .philosophy-grid { grid-template-columns: repeat(3, 1fr); } } @media (max-width: 767px) { .container { padding: 0 1.25rem; } h1 { font-size: 2.25rem; text-align: center; } h2 { font-size: 1.75rem; text-align: center; } h3 { font-size: 1.25rem; text-align: center; } h4 { font-size: 1.1rem; } p { font-size: 1rem; line-height: 1.7; } .section-header { text-align: center; } .section-header h2, .section-header p { text-align: center; } .hero-content { text-align: center; } .hero-content h1, .hero-content p { text-align: center; } .hero-text { text-align: center; display: flex; flex-direction: column; align-items: center; } .hero-text h1, .hero-text .hero-sub, .hero-text p { text-align: center; } .hero-text .btn { margin-left: auto; margin-right: auto; } .hero { min-height: auto !important; padding-top: calc(var(--nav-height) + 3rem) !important; padding-bottom: 3rem !important; } .hero-visual { display: none !important; } .about-text, .about-text p { text-align: center; } .story-text, .story-text p { text-align: center; } .story-text { padding: 1.5rem !important; margin: 1rem 0.5rem; } .story-text p { font-size: 1rem !important; padding: 0 0.5rem; line-height: 1.6; } .story-text p:nth-child(2) { display: none !important; } .story-section { grid-template-columns: 1fr !important; gap: 0; padding: 2rem 0; } .story-image { display: none; } .course-card h3, .course-card p { text-align: center; } .course-card .course-icon { margin: 0 auto 1rem; } .course-features { display: none !important; } .course-card .btn { display: block; margin: 1.5rem auto 0; text-align: center; } .form-group input, .form-group select { text-align: center; } .form-group input::placeholder { text-align: center; } .form-group label { text-align: center; } .phil-card h3, .phil-card p { text-align: center; } .pathway-paragraph { text-align: center; font-size: 1rem; } .pathway-info-card h4, .pathway-info-card p { text-align: center; } .page-header { text-align: center; } .page-header h1, .page-header p { text-align: center; } .about-section, .courses-section, .register-section { padding: 3rem 0; } * { animation-duration: 0.3s !important; } .nav-btn-highlight { padding: 0.75rem 1.25rem; min-height: 44px; } .course-features { gap: 0.75rem; } .course-features li { font-size: 0.9rem; } .taster-incentive { font-size: 0.95rem; padding: 1rem 1.5rem; white-space: normal; max-width: 90%; } .benefit-item { font-size: 0.9rem; padding: 0.75rem; justify-content: center; text-align: center; } .footer { padding-top: 2rem; } .footer-brand { text-align: center; align-items: center; } .footer-logo { justify-content: center; } .footer-social { justify-content: center; } .footer-content>.footer-links:nth-child(2) { display: none !important; } .footer-links { text-align: center; } .footer-links h4 { margin-bottom: 1rem; } .footer-links ul { display: flex; flex-direction: column; align-items: center; list-style: none; padding: 0; } .footer-links ul li { margin-bottom: 0.75rem; } .footer-links ul li a { justify-content: center; } .monitor-puzzle { gap: 3px; } .puzzle-piece { cursor: pointer; -webkit-tap-highlight-color: transparent; } .zoom-feed:hover { filter: none; } .zoom-feed:hover img { transform: none; } .zoom-feed:hover .feed-content { transform: translateY(0); opacity: 1; } .zoom-monitor-wrapper, .puzzle-banner { display: none; } .story-image { display: none; } .story-section { grid-template-columns: 1fr !important; gap: 0; } .story-text { max-width: 100%; width: 100%; } .pathway-img-wrapper { cursor: pointer; position: relative; } .pathway-img-wrapper img { transition: transform 0.3s ease; } .pathway-img-wrapper:active img { transform: scale(1.05); } .course-info p { display: none; } .mobile-description-wrapper p { display: block !important; margin-bottom: 2rem; font-size: 1rem; line-height: 1.7; } .details-row-top { display: none !important; } .roadmap-full-width { margin-top: 1.5rem; padding-top: 1.5rem; } .roadmap-full-width img { cursor: pointer; } } .mobile-toggle { display: none !important; position: relative; width: 30px; height: 24px; cursor: pointer; z-index: 1001; color: #1e293b; } .mobile-toggle svg { stroke: currentColor; stroke-width: 2; width: 28px; height: 28px; } @media (max-width: 767px) { .mobile-toggle { display: block !important; } } @media (min-width: 768px) { .mobile-toggle { display: none !important; } .nav-links { display: flex; } } @media (hover: none) and (pointer: coarse) { .course-card:hover, .phil-card:hover, .btn:hover, .footer-links ul li a:hover { transform: none; } .btn { box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); } a, button, .puzzle-piece { min-height: 44px; min-width: 44px; } } .computer-container { position: relative; width: 100%; max-width: 500px; margin: 0 auto; perspective: 1000px; transform-style: preserve-3d; } .monitor { background: #e2e8f0; border-radius: 20px 20px 0 0; padding: 15px 15px 0 15px; box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15), inset 0 -10px 20px rgba(0, 0, 0, 0.05); position: relative; z-index: 2; transition: transform 0.3s ease; } .monitor:hover { transform: translateY(-5px); } .screen { background: #1e293b; border-radius: 10px 10px 0 0; width: 100%; height: 300px; position: relative; overflow: hidden; cursor: crosshair; } .monitor-chin { background: #e2e8f0; height: 40px; border-radius: 0 0 20px 20px; display: flex; justify-content: center; align-items: center; } .brand-logo { font-weight: 800; font-family: 'Outfit', sans-serif; color: #94a3b8; } .stand { width: 120px; height: 60px; background: #cbd5e1; margin: 0 auto; position: relative; z-index: 1; box-shadow: inset 0 10px 20px rgba(0, 0, 0, 0.1); } .stand-base { width: 200px; height: 20px; background: #cbd5e1; margin: 0 auto; border-radius: 10px; box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1); } .code-layer { position: absolute; inset: 0; padding: 20px; font-family: 'Consolas', 'Monaco', monospace; font-size: 14px; color: #e2e8f0; transition: opacity 0.3s ease; z-index: 20; background: #1e293b; display: flex; flex-direction: column; } .code-header-bar { display: flex; gap: 8px; margin-bottom: 20px; align-items: center; } .dot { width: 10px; height: 10px; border-radius: 50%; } .r { background: #ef4444; } .y { background: #f59e0b; } .g { background: #22c55e; } .filename { margin-left: auto; color: #64748b; font-size: 12px; } .code-content { flex: 1; } .c-kwd { color: #c084fc; } .c-def { color: #60a5fa; } .c-var { color: #f472b6; } .c-mtd { color: #34d399; } .comment { color: #64748b; display: block; margin-top: 10px; font-style: italic; } #gameCanvas { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 10; background: #0f172a; } .start-overlay { position: absolute; inset: 0; background: rgba(0, 0, 0, 0.5); color: white; display: flex; justify-content: center; align-items: center; font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 1.5rem; z-index: 30; opacity: 0; transition: opacity 0.3s; pointer-events: none; } .screen:hover .code-layer { opacity: 0; pointer-events: none; } .zoom-monitor-wrapper { width: 100%; max-width: 100%; margin: 0 auto; perspective: 1000px; background: #ffffff; padding: 15px; border-radius: 20px; box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); border: 4px solid #e2e8f0; } .monitor-frame { background: #1e293b; padding: 1rem; border-radius: 1rem; box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); background: linear-gradient(145deg, #1e293b, #0f172a); border: 1px solid #334155; position: relative; } .monitor-screen { background: #000; border-radius: 0.5rem; overflow: hidden; aspect-ratio: 16/10; display: block; background: #0f172a; position: relative; } .zoom-feed { position: relative; overflow: hidden; cursor: pointer; transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1); } .zoom-feed img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; filter: brightness(0.9); } .monitor-puzzle { width: 100%; aspect-ratio: 16/10; display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: repeat(3, 1fr); gap: 2px; background: #0f172a; position: relative; cursor: pointer; overflow: hidden; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); } .puzzle-piece { background-image: url('../assets/puzzle_image.jpg'); background-size: 300% 300%; background-repeat: no-repeat; transition: transform 0.2s, box-shadow 0.2s; border: 1px solid rgba(255, 255, 255, 0.1); } .puzzle-piece:hover { filter: brightness(1.2); z-index: 10; } .puzzle-piece.selected { box-shadow: 0 0 0 2px #fff, 0 0 10px rgba(255, 255, 255, 0.5); z-index: 20; transform: scale(1.05); } .monitor-puzzle.solved { display: block; } .monitor-puzzle.solved .puzzle-piece { display: none; } .solved-image { width: 100%; height: 100%; aspect-ratio: 16/10; object-fit: cover; animation: fadeIn 1s ease; display: block; } .puzzle-overlay { position: absolute; inset: 0; background: rgba(0, 0, 0, 0.6); display: flex; align-items: center; justify-content: center; flex-direction: column; color: white; opacity: 0; pointer-events: none; transition: opacity 0.5s; text-align: center; padding: 1rem; backdrop-filter: blur(2px); } .monitor-puzzle.solved .puzzle-overlay { opacity: 1; animation: fadeIn 0.5s 1s forwards; } .zoom-feed:hover { z-index: 10; filter: brightness(1.1); } .zoom-feed:hover img { transform: scale(1.15); } .feed-content { position: absolute; bottom: 0; left: 0; width: 100%; padding: 1.5rem; color: white; transform: translateY(20px); opacity: 0; transition: all 0.4s ease; z-index: 5; } .zoom-feed:hover .feed-content { transform: translateY(0); opacity: 1; } .monitor-stand { width: 120px; height: 60px; background: #334155; margin: 0 auto; clip-path: polygon(15% 0, 85% 0, 100% 100%, 0% 100%); } .monitor-base { width: 200px; height: 10px; background: #1e293b; margin: 0 auto; border-radius: 4px; } .pathway-section { padding: 6rem 0; position: relative; background: var(--bg-main); } .pathway-img-wrapper { max-width: 1000px; margin: 3rem auto 0; border: 1px solid var(--border-color); border-radius: var(--radius-lg); overflow: hidden; background: #000; box-shadow: var(--shadow-lg); } .pathway-img-wrapper img { display: block; width: 100%; transition: transform 0.5s ease; } .pathway-img-wrapper:hover img { transform: scale(1.02); } .pathway-text-content { margin-top: 4rem; max-width: 900px; margin-left: auto; margin-right: auto; } .pathway-paragraph { font-size: 1rem; color: var(--text-muted); margin-bottom: 1.5rem; line-height: 1.8; max-width: 900px; margin-left: auto; margin-right: auto; } .pathway-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; margin: 3rem 0; } .pathway-info-card { background: white; padding: 2.5rem; border-radius: var(--radius-md); box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05); border-left: 4px solid var(--primary); transition: transform 0.3s ease; } .pathway-info-card:hover { transform: translateY(-5px); } .pathway-info-card h4 { font-family: 'Outfit', sans-serif; font-size: 1.5rem; color: var(--text-main); margin-bottom: 1rem; } .pathway-info-card p { font-size: 1rem; color: var(--text-muted); line-height: 1.6; } .pathway-level-2 { border-left-color: var(--secondary); } .pathway-final-year { grid-column: span 2; border-left-color: var(--accent); } @media (max-width: 768px) { .pathway-info-grid { grid-template-columns: 1fr; } } .philosophy-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; margin-top: 3rem; } .phil-card { background: var(--bg-card); padding: 2.5rem; border-radius: var(--radius-lg); border: 1px solid var(--border-color); transition: var(--transition-base); text-align: left; } .phil-card:hover { border-color: var(--primary-light); transform: translateY(-5px); } .icon-box { width: 60px; height: 60px; border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; } .icon-box i { width: 28px; height: 28px; color: white; } .icon-blue { background: #3b82f6; } .icon-pink { background: #ec4899; } .icon-orange { background: #f97316; } @media (max-width: 900px) { .philosophy-grid { grid-template-columns: 1fr; } } .icon-box i, .icon-box svg, .phil-card i, .phil-card svg, .btn i, .btn svg { color: white !important; } .mobile-toggle i, .mobile-toggle svg { color: #1e293b !important; stroke: #1e293b !important; } .course-features li i, .course-features li svg { color: var(--primary); width: 18px; height: 18px; } .course-icon i, .course-icon svg { color: var(--primary); width: 32px; height: 32px; } .cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; background: #ffffff; color: var(--text-main); padding: 1.25rem 2rem; box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.1); border-top: 1px solid rgba(0, 0, 0, 0.08); z-index: 9999; opacity: 0; transform: translateY(100%); transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1); } .cookie-banner.show { opacity: 1; transform: translateY(0); } .cookie-banner.hiding { opacity: 0; transform: translateY(20px); } .cookie-content { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 2rem; } .cookie-text { display: flex; align-items: flex-start; gap: 1rem; flex: 1; min-width: 300px; } .cookie-image { width: 48px; height: 48px; flex-shrink: 0; object-fit: contain; animation: cookieBounce 2s ease-in-out infinite; } @keyframes cookieBounce { 0%, 100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-5px) rotate(5deg); } } .cookie-text p { margin: 0; font-size: 0.95rem; line-height: 1.6; color: var(--text-main); } .cookie-learn-more { color: var(--primary); text-decoration: underline; font-weight: 500; transition: color 0.2s ease; } .cookie-learn-more:hover { color: var(--primary-dark); } .cookie-learn-more:focus { outline: 2px solid var(--primary); outline-offset: 2px; border-radius: 2px; } .cookie-actions { display: flex; gap: 0.75rem; flex-shrink: 0; } .cookie-btn { padding: 0.75rem 1.8rem; border-radius: 50px; font-weight: 600; font-size: 0.95rem; cursor: pointer; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); border: none; white-space: nowrap; font-family: 'Inter', sans-serif; position: relative; overflow: hidden; will-change: transform; } .cookie-btn::before { content: ''; position: absolute; top: 50%; left: 50%; width: 0; height: 0; border-radius: 50%; background: rgba(255, 255, 255, 0.3); transform: translate(-50%, -50%); transition: width 0.6s, height 0.6s; } .cookie-btn:hover::before { width: 300px; height: 300px; } .btn-text { position: relative; z-index: 1; } .cookie-btn:focus { outline: 3px solid var(--primary); outline-offset: 2px; } .cookie-btn-primary { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: white; box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3); } .cookie-btn-primary:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 8px 25px rgba(99, 102, 241, 0.5); } .cookie-btn-primary:active { transform: translateY(0); } .cookie-btn-secondary { background: transparent; color: var(--text-main); border: 2px solid var(--text-muted); } .cookie-btn-secondary:hover { background: var(--bg-body); border-color: var(--text-main); transform: translateY(-2px) scale(1.03); box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); } .cookie-btn-secondary:active { background: #e2e8f0; } @media (max-width: 768px) { .cookie-banner { padding: 1rem 1.25rem; } .cookie-content { flex-direction: column; gap: 1rem; align-items: stretch; } .cookie-text { text-align: left; min-width: auto; gap: 0.75rem; } .cookie-image { width: 40px; height: 40px; } .cookie-text p { font-size: 0.875rem; line-height: 1.5; } .cookie-actions { width: 100%; gap: 0.75rem; } .cookie-btn { flex: 1; padding: 0.875rem 1.5rem; min-height: 44px; font-size: 0.9rem; } } @media (max-width: 375px) { .cookie-banner { padding: 0.875rem 1rem; } .cookie-text p { font-size: 0.8125rem; } .cookie-btn { padding: 0.75rem 1.25rem; font-size: 0.875rem; } } .taster-incentive { font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 1.5rem; margin-top: 1.5rem; margin-bottom: 1.5rem; color: #db2777; background: #fdf2f8; padding: 1rem 3rem; border-radius: 100px; border: 3px solid #fbcfe8; display: inline-flex; align-items: center; justify-content: center; gap: 12px; filter: drop-shadow(0 10px 25px rgba(236, 72, 153, 0.25)); animation: pulse 2s infinite; text-align: center; line-height: 1.2; } @keyframes pulse { 0% { filter: drop-shadow(0 0 0 rgba(236, 72, 153, 0.4)); transform: scale(1); } 50% { transform: scale(1.02); } 70% { filter: drop-shadow(0 0 15px rgba(236, 72, 153, 0)); transform: scale(1); } 100% { filter: drop-shadow(0 0 0 rgba(236, 72, 153, 0)); transform: scale(1); } } @media (max-width: 768px) { .taster-incentive { display: flex; flex-wrap: wrap; justify-content: center; font-size: 1.1rem; padding: 1rem 1.5rem; border-width: 2px; width: 90%; margin: 1rem auto; white-space: normal; line-height: 1.4; height: auto; gap: 0.5rem; } } .success-overlay { position: fixed; inset: 0; background: rgba(15, 23, 42, 0.8); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); display: flex; align-items: center; justify-content: center; z-index: 9998; opacity: 0; pointer-events: none; transition: opacity 0.4s ease; } .success-overlay.active { opacity: 1; pointer-events: auto; } .success-card { background: var(--white); padding: 3rem 2.5rem; border-radius: var(--radius-lg); box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); max-width: 500px; width: 90%; text-align: center; transform: translateY(20px) scale(0.95); transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); } .success-overlay.active .success-card { transform: translateY(0) scale(1); } .success-card .success-icon { width: 80px; height: 80px; background: linear-gradient(135deg, #10b981, #059669); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3); } .success-card .success-icon svg { width: 40px; height: 40px; } .success-card h2 { font-size: 1.8rem; margin-bottom: 1rem; color: var(--text-main); line-height: 1.2; } .success-card p { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 2rem; }
