:root { --accent: #e2003d; }
[data-theme="light"] { --bg: #f9f9f9; --bg-alt: #fff; --bg-dark: #0a0a0a; --text: #111; --text-dim: #555; --border: #e5e5e5; --bg-glass: rgba(249,249,249,0.8); --border-glass: rgba(0,0,0,0.1); --shadow: rgba(0,0,0,0.2); --btn-shadow: rgba(226,0,61,0.3); --btn-shadow-hover: rgba(226,0,61,0.4); }
[data-theme="dark"] { --bg: #0a0a0a; --bg-alt: #111; --bg-dark: #000; --text: #fff; --text-dim: #a0a0a0; --border: #222; --bg-glass: rgba(10,10,10,0.8); --border-glass: rgba(255,255,255,0.1); --shadow: rgba(0,0,0,0.2); --btn-shadow: rgba(226,0,61,0.3); --btn-shadow-hover: rgba(226,0,61,0.4); }

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Comfortaa'; font-size: 16px; line-height: 1.7; color: var(--text); background: var(--bg); }
h1, h2, h3, h4, h5, h6 { font-family: 'Aldrich'; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

#fireworks { position: absolute; top: 0; left: 0; width: 100%; pointer-events: none; z-index: 5; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.accent-line { height: 2px; background: var(--accent); position: fixed; top: 0; left: 0; right: 0; z-index: 1001; }

.header { position: fixed; top: 2px; left: 0; right: 0; z-index: 1000; background: var(--bg); border-bottom: none; box-shadow: none; transition: background 0.3s, box-shadow 0.3s; }
.header.scrolled { background: var(--bg-glass); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); box-shadow: 0 2px 20px var(--shadow); }
.header-inner { max-width: 1200px; margin: 0 auto; padding: 14px 40px; display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; }
.logo-img { height: 32px; width: auto; }
.nav { display: flex; gap: 32px; align-items: center; }
.nav a { font-size: 0.9rem; color: var(--text); position: relative; transition: color 0.2s; }
.nav a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--accent); transition: width 0.3s; }
.nav a:hover { color: var(--accent); }
.nav a:hover::after { width: 100%; }

.theme-toggle { background: none; border: none; cursor: pointer; padding: 8px; color: var(--text-dim); display: flex; }
[data-theme="dark"] .icon-sun { display: block; }
[data-theme="dark"] .icon-moon { display: none; }
[data-theme="light"] .icon-sun { display: none; }
[data-theme="light"] .icon-moon { display: block; }

.mobile-menu-btn { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 5px; }
.mobile-menu-btn span { display: block; width: 24px; height: 2px; background: var(--text); }
.theme-toggle-mobile { display: none; }

.hero { position: relative; height: 90vh; min-height: 500px; display: flex; align-items: center; justify-content: center; background: url('assets/images/hero-bg.jpg') center/cover var(--bg); }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.5)); }
.hero-content { position: relative; z-index: 1; text-align: center; color: #fff; width: 100%; height: 100%; display: flex; flex-direction: column; justify-content: center; align-items: center; }
.hero-title { font-family: 'Caveat'; font-size: clamp(3rem, 10vw, 6rem); font-weight: 400; }
.hero-logo { max-width: 400px; width: 80%; height: auto; margin: 0 auto; }
.hero-tagline { font-family: 'Caveat'; font-size: clamp(1.2rem, 3vw, 1.8rem); opacity: 0.9; position: absolute; bottom: 80px; left: 0; right: 0; }

.scroll-indicator { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); }
.scroll-mouse { width: 24px; height: 40px; border: 2px solid rgba(255,255,255,0.7); border-radius: 12px; position: relative; }
.scroll-wheel { width: 4px; height: 8px; background: rgba(255,255,255,0.7); border-radius: 2px; position: absolute; top: 8px; left: 50%; transform: translateX(-50%); animation: scrollWheel 2s linear infinite; }
@keyframes scrollWheel { 0% { opacity: 1; top: 8px; } 100% { opacity: 0; top: 20px; } }

.about { padding: 150px 0; background: var(--bg-alt); }
.about-grid { display: grid; grid-template-columns: 300px 1fr; gap: 60px; align-items: start; }
.profile-photo { width: 300px; height: 300px; border-radius: 50%; object-fit: cover; box-shadow: 0 4px 20px var(--shadow); }
.about-content { padding-top: 20px; }
.section-title { font-size: clamp(1.8rem, 4vw, 2.5rem); font-weight: 700; color: var(--accent); margin-bottom: 24px; }
.about-content p { color: var(--text); margin-bottom: 20px; line-height: 1.8; }

.btn { display: inline-block; background: var(--accent); color: #fff; padding: 16px 32px; font-weight: 600; border-radius: 4px; margin-top: 16px; position: relative; overflow: hidden; box-shadow: 0 4px 15px var(--btn-shadow); transition: background 0.2s, box-shadow 0.2s; }
.btn::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 3px; background: #fff; transition: width 0.3s; }
.btn:hover { background: #c70035; box-shadow: 0 6px 20px var(--btn-shadow-hover); }
.btn:hover::after { width: 100%; }

.geexer-section { display: block; padding: 80px 0; background: var(--bg); cursor: pointer; }
.geexer-content { text-align: center; }
.geexer-logo { max-width: 700px; margin: 0 auto 40px; }
.geexer-logo-light { display: none; }
.geexer-logo-dark { display: none; }
[data-theme="light"] .geexer-logo-light { display: block; }
[data-theme="dark"] .geexer-logo-dark { display: block; }
.hero-logo-light { display: none; }
.hero-logo-dark { display: none; }
[data-theme="light"] .hero-logo-light { display: block; }
[data-theme="dark"] .hero-logo-dark { display: block; }
.geexer-tagline { font-family: 'Aldrich'; font-size: 2rem; color: var(--text); }

.social-section { padding: 60px 0; background: var(--bg-alt); }
.social-title { font-size: 2rem; font-weight: 400; color: var(--text); margin-bottom: 20px; }
.social-links { display: flex; gap: 24px; }
.social-link { display: flex; align-items: center; justify-content: center; width: 48px; height: 48px; color: var(--text); position: relative; transition: color 0.2s; }
.social-link::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--accent); transition: width 0.3s; }
.social-link:hover { color: var(--accent); }
.social-link:hover::after { width: 100%; }

.footer { background: var(--bg); }
.footer-main { padding: 60px 0; }
.footer-title { font-size: 2rem; font-weight: 400; color: var(--text); margin-bottom: 20px; }
.footer-info p { font-size: 0.9rem; color: var(--text); line-height: 1.8; }
.footer-info a { text-decoration: underline; }
.footer-bottom { background: var(--accent); padding: 16px 0; text-align: center; }
.copyright { font-family: 'Aldrich'; font-size: 10pt; color: #fff; }
.copyright a { color: #fff; }

@media (max-width: 900px) {
    .about-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .about-image { display: flex; justify-content: center; }
    .profile-photo { width: 250px; height: 250px; }
    .about-content { padding-top: 0; }
}

/* Mobile menu */
.nav-mobile { display: none; }

@media (max-width: 768px) {
    .container { padding: 0 24px; }
    .header-inner { padding: 16px 24px; max-width: 100%; }
    .header.menu-open { background: var(--bg-glass); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); box-shadow: 0 4px 20px var(--shadow); }
    .nav-desktop { display: none; }
    .theme-toggle-mobile { display: flex; position: absolute; left: 50%; transform: translateX(-50%); }
    .nav-mobile { display: block; max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
    .nav-mobile.active { max-height: 200px; }
    .nav-mobile a { display: block; padding: 16px 24px; font-size: 1rem; color: var(--text); }
    .mobile-menu-btn { display: flex; position: relative; z-index: 10; }
    .mobile-menu-btn span { transition: transform 0.3s ease, opacity 0.3s ease; }
    .mobile-menu-btn.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
    .mobile-menu-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
    .about, .geexer-section { padding: 60px 0; }
    .geexer-logo { max-width: 300px; }
    .footer-content { flex-direction: column; gap: 20px; text-align: center; }

    /* Disable all hover effects on mobile */
    .nav a:hover { color: var(--text); }
    .nav a:hover::after { width: 0; }
    .btn:hover { background: var(--accent); box-shadow: 0 4px 15px var(--btn-shadow); }
    .btn:hover::after { width: 0; }
    .social-link:hover { color: var(--text); }
    .social-link:hover::after { width: 0; }
    .geexer-section:hover { opacity: 1; }
}
