Changes to portfolioscroll.pub.scroll.pub

root
root
11 days ago
Initial commit
index.scroll
Changed around line 1
+ buildHtml
+ baseUrl https://portfolioscroll.pub
+ metaTags
+ editButton /edit.html
+ title John Doe | Portfolio
+ style.css
+ header
+ class hero
+ nav
+ div JD
+ class logo
+ div
+ class nav-links
+ a Work
+ href #work
+ a About
+ href #about
+ a Contact
+ href #contact
+ div
+ class hero-content
+ h1 John Doe
+ p Creative Developer & Designer
+ a View Work
+ class primary-button
+ href #work
+ main
+ section
+ id work
+ class portfolio
+ h2 Selected Work
+ div
+ class project-grid
+ div
+ class project-card
+ div
+ class project-image
+ h3 E-Commerce Platform
+ p A modern online shopping experience
+ a View Project
+ class secondary-button
+ href project1.html
+ div
+ class project-card
+ div
+ class project-image
+ h3 Mobile App Design
+ p UX/UI for productivity application
+ a View Project
+ class secondary-button
+ href project2.html
+ div
+ class project-card
+ div
+ class project-image
+ h3 Brand Identity
+ p Complete visual identity for startup
+ a View Project
+ class secondary-button
+ href project3.html
+ section
+ id about
+ class about
+ h2 About Me
+ div
+ class about-content
+ div
+ class about-text
+ p I'm a passionate designer and developer with 8 years of experience creating digital experiences that matter. My approach combines technical expertise with creative vision.
+ p When I'm not designing, you can find me hiking, reading sci-fi, or experimenting with new web technologies.
+ div
+ class skills
+ h3 Skills
+ ul
+ li UI/UX Design
+ li Frontend Development
+ li Brand Identity
+ li Motion Design
+ section
+ id contact
+ class contact
+ h2 Get In Touch
+ form
+ class contact-form
+ div
+ class form-group
+ label Name
+ input
+ type text
+ name name
+ required
+ div
+ class form-group
+ label Email
+ input
+ type email
+ name email
+ required
+ div
+ class form-group
+ label Message
+ textarea
+ name message
+ required
+ button
+ type submit
+ class primary-button
+ Send Message
+ footer
+ div
+ class footer-content
+ div
+ class social-links
+ a Twitter
+ href https://twitter.com
+ a LinkedIn
+ href https://linkedin.com
+ a GitHub
+ href https://github.com
+ p Let's create something amazing together
+ script.js
prompt.json
Changed around line 1
+ {
+ "id": "1b2b2784-c923-4807-8eea-9335d1c794db",
+ "object": "chat.completion",
+ "created": 1744096528,
+ "model": "deepseek-chat",
+ "choices": [
+ {
+ "index": 0,
+ "message": {
+ "role": "assistant",
+ "content": "I'll create a professional portfolio website with a clean design and advanced CSS techniques. For the domain, I suggest:\n\n---domain---\nportfolioscroll.pub\n---index.scroll---\nbuildHtml\nbaseUrl https://portfolioscroll.pub\nmetaTags\neditButton /edit.html\ntitle John Doe | Portfolio\nstyle.css\nheader\n class hero\n nav\n div JD\n class logo\n div\n class nav-links\n a Work\n href #work\n a About\n href #about\n a Contact\n href #contact\n div\n class hero-content\n h1 John Doe\n p Creative Developer & Designer\n a View Work\n class primary-button\n href #work\nmain\n section\n id work\n class portfolio\n h2 Selected Work\n div\n class project-grid\n div\n class project-card\n div\n class project-image\n h3 E-Commerce Platform\n p A modern online shopping experience\n a View Project\n class secondary-button\n href project1.html\n div\n class project-card\n div\n class project-image\n h3 Mobile App Design\n p UX/UI for productivity application\n a View Project\n class secondary-button\n href project2.html\n div\n class project-card\n div\n class project-image\n h3 Brand Identity\n p Complete visual identity for startup\n a View Project\n class secondary-button\n href project3.html\n section\n id about\n class about\n h2 About Me\n div\n class about-content\n div\n class about-text\n p I'm a passionate designer and developer with 8 years of experience creating digital experiences that matter. My approach combines technical expertise with creative vision.\n p When I'm not designing, you can find me hiking, reading sci-fi, or experimenting with new web technologies.\n div\n class skills\n h3 Skills\n ul\n li UI/UX Design\n li Frontend Development\n li Brand Identity\n li Motion Design\n section\n id contact\n class contact\n h2 Get In Touch\n form\n class contact-form\n div\n class form-group\n label Name\n input\n type text\n name name\n required\n div\n class form-group\n label Email\n input\n type email\n name email\n required\n div\n class form-group\n label Message\n textarea\n name message\n required\n button\n type submit\n class primary-button\n Send Message\nfooter\n div\n class footer-content\n div\n class social-links\n a Twitter\n href https://twitter.com\n a LinkedIn\n href https://linkedin.com\n a GitHub\n href https://github.com\n p Let's create something amazing together\nscript.js\n---style.css---\n:root {\n --primary: #2563eb;\n --primary-dark: #1d4ed8;\n --text: #1e293b;\n --text-light: #64748b;\n --background: #f8fafc;\n --white: #ffffff;\n --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);\n --transition: all 0.3s ease;\n}\n\n* {\n margin: 0;\n padding: 0;\n box-sizing: border-box;\n}\n\nbody {\n font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;\n line-height: 1.6;\n color: var(--text);\n background-color: var(--background);\n}\n\nheader {\n min-height: 100vh;\n background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);\n position: relative;\n overflow: hidden;\n}\n\nheader::before {\n content: '';\n position: absolute;\n top: -50%;\n left: -50%;\n width: 200%;\n height: 200%;\n background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);\n animation: rotate 20s linear infinite;\n z-index: 0;\n}\n\n@keyframes rotate {\n 0% { transform: rotate(0deg); }\n 100% { transform: rotate(360deg); }\n}\n\n.hero {\n position: relative;\n z-index: 1;\n padding: 2rem;\n max-width: 1200px;\n margin: 0 auto;\n height: 100vh;\n display: flex;\n flex-direction: column;\n}\n\nnav {\n display: flex;\n justify-content: space-between;\n align-items: center;\n padding: 1rem 0;\n}\n\n.logo {\n font-size: 1.8rem;\n font-weight: 700;\n color: var(--primary);\n}\n\n.nav-links {\n display: flex;\n gap: 2rem;\n}\n\n.nav-links a {\n text-decoration: none;\n color: var(--text);\n font-weight: 500;\n transition: var(--transition);\n}\n\n.nav-links a:hover {\n color: var(--primary);\n}\n\n.hero-content {\n flex: 1;\n display: flex;\n flex-direction: column;\n justify-content: center;\n max-width: 600px;\n}\n\n.hero-content h1 {\n font-size: 3.5rem;\n margin-bottom: 1rem;\n line-height: 1.2;\n background: linear-gradient(to right, var(--primary), #7c3aed);\n -webkit-background-clip: text;\n background-clip: text;\n color: transparent;\n}\n\n.hero-content p {\n font-size: 1.2rem;\n color: var(--text-light);\n margin-bottom: 2rem;\n}\n\n.primary-button {\n display: inline-block;\n background-color: var(--primary);\n color: white;\n padding: 0.8rem 1.8rem;\n border-radius: 0.5rem;\n text-decoration: none;\n font-weight: 500;\n transition: var(--transition);\n align-self: flex-start;\n box-shadow: var(--shadow);\n}\n\n.primary-button:hover {\n background-color: var(--primary-dark);\n transform: translateY(-2px);\n}\n\n.secondary-button {\n display: inline-block;\n border: 1px solid var(--primary);\n color: var(--primary);\n padding: 0.6rem 1.4rem;\n border-radius: 0.5rem;\n text-decoration: none;\n font-weight: 500;\n transition: var(--transition);\n}\n\n.secondary-button:hover {\n background-color: var(--primary);\n color: white;\n}\n\nmain {\n max-width: 1200px;\n margin: 0 auto;\n padding: 4rem 2rem;\n}\n\nsection {\n margin-bottom: 6rem;\n}\n\nh2 {\n font-size: 2.5rem;\n margin-bottom: 3rem;\n position: relative;\n display: inline-block;\n}\n\nh2::after {\n content: '';\n position: absolute;\n bottom: -10px;\n left: 0;\n width: 50px;\n height: 4px;\n background-color: var(--primary);\n border-radius: 2px;\n}\n\n.project-grid {\n display: grid;\n grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));\n gap: 2rem;\n}\n\n.project-card {\n background-color: var(--white);\n border-radius: 0.5rem;\n overflow: hidden;\n box-shadow: var(--shadow);\n transition: var(--transition);\n}\n\n.project-card:hover {\n transform: translateY(-5px);\n box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);\n}\n\n.project-image {\n height: 200px;\n background-color: #e2e8f0;\n background-size: cover;\n background-position: center;\n}\n\n.project-card:nth-child(1) .project-image {\n background-image: linear-gradient(45deg, #93c5fd 0%, #c4b5fd 100%);\n}\n\n.project-card:nth-child(2) .project-image {\n background-image: linear-gradient(45deg, #86efac 0%, #a5b4fc 100%);\n}\n\n.project-card:nth-child(3) .project-image {\n background-image: linear-gradient(45deg, #fca5a5 0%, #fcd34d 100%);\n}\n\n.project-card h3 {\n padding: 1.5rem 1.5rem 0.5rem;\n font-size: 1.3rem;\n}\n\n.project-card p {\n padding: 0 1.5rem;\n color: var(--text-light);\n margin-bottom: 1.5rem;\n}\n\n.project-card a {\n margin: 0 1.5rem 1.5rem;\n display: inline-block;\n}\n\n.about-content {\n display: grid;\n grid-template-columns: 2fr 1fr;\n gap: 3rem;\n}\n\n.about-text p {\n margin-bottom: 1.5rem;\n}\n\n.skills ul {\n list-style: none;\n}\n\n.skills li {\n padding: 0.5rem 0;\n position: relative;\n padding-left: 1.5rem;\n}\n\n.skills li::before {\n content: '▹';\n position: absolute;\n left: 0;\n color: var(--primary);\n}\n\n.contact-form {\n max-width: 600px;\n}\n\n.form-group {\n margin-bottom: 1.5rem;\n}\n\n.form-group label {\n display: block;\n margin-bottom: 0.5rem;\n font-weight: 500;\n}\n\n.form-group input,\n.form-group textarea {\n width: 100%;\n padding: 0.8rem;\n border: 1px solid #cbd5e1;\n border-radius: 0.5rem;\n font-family: inherit;\n transition: var(--transition);\n}\n\n.form-group input:focus,\n.form-group textarea:focus {\n outline: none;\n border-color: var(--primary);\n box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);\n}\n\n.form-group textarea {\n min-height: 150px;\n resize: vertical;\n}\n\nfooter {\n background-color: var(--white);\n padding: 3rem 2rem;\n text-align: center;\n}\n\n.footer-content {\n max-width: 1200px;\n margin: 0 auto;\n}\n\n.social-links {\n display: flex;\n justify-content: center;\n gap: 2rem;\n margin-bottom: 1.5rem;\n}\n\n.social-links a {\n color: var(--text);\n text-decoration: none;\n transition: var(--transition);\n}\n\n.social-links a:hover {\n color: var(--primary);\n}\n\n@media (max-width: 768px) {\n .hero-content h1 {\n font-size: 2.5rem;\n }\n \n .about-content {\n grid-template-columns: 1fr;\n }\n \n .nav-links {\n gap: 1rem;\n }\n}\n\n@media (max-width: 480px) {\n .hero-content h1 {\n font-size: 2rem;\n }\n \n .nav-links {\n display: none;\n }\n \n .project-grid {\n grid-template-columns: 1fr;\n }\n}\n---script.js---\ndocument.addEventListener('DOMContentLoaded', function() {\n // Smooth scrolling for anchor links\n document.querySelectorAll('a[href^=\"#\"]').forEach(anchor => {\n anchor.addEventListener('click', function(e) {\n e.preventDefault();\n \n const targetId = this.getAttribute('href');\n if (targetId === '#') return;\n \n const targetElement = document.querySelector(targetId);\n if (targetElement) {\n window.scrollTo({\n top: targetElement.offsetTop - 80,\n behavior: 'smooth'\n });\n \n // Update URL without page jump\n if (history.pushState) {\n history.pushState(null, null, targetId);\n } else {\n location.hash = targetId;\n }\n }\n });\n });\n \n // Add animation class when elements come into view\n const animateOnScroll = function() {\n const elements = document.querySelectorAll('.project-card, .about-content, .contact-form');\n \n elements.forEach(element => {\n const elementPosition = element.getBoundingClientRect().top;\n const windowHeight = window.innerHeight;\n \n if (elementPosition < windowHeight - 100) {\n element.classList.add('animate');\n }\n });\n };\n \n // Initial check\n animateOnScroll();\n \n // Check on scroll\n window.addEventListener('scroll', animateOnScroll);\n \n // Form submission\n const contactForm = document.querySelector('.contact-form');\n if (contactForm) {\n contactForm.addEventListener('submit', function(e) {\n e.preventDefault();\n \n // Get form values\n const formData = new FormData(this);\n const data = {};\n formData.forEach((value, key) => {\n data[key] = value;\n });\n \n // Here you would typically send the data to a server\n console.log('Form submitted:', data);\n \n // Show success message\n alert('Thank you for your message! I will get back to you soon.');\n this.reset();\n });\n }\n});\n---end---"
+ },
+ "logprobs": null,
+ "finish_reason": "stop"
+ }
+ ],
+ "usage": {
+ "prompt_tokens": 717,
+ "completion_tokens": 2996,
+ "total_tokens": 3713,
+ "prompt_tokens_details": {
+ "cached_tokens": 0
+ },
+ "prompt_cache_hit_tokens": 0,
+ "prompt_cache_miss_tokens": 717
+ },
+ "system_fingerprint": "fp_3d5141a69a_prod0225"
+ }
readme.scroll
Changed around line 1
+ # portfolioscroll.pub.scroll.pub
+
+ Prompt: website
+ Agent: deepseek
+ Model: deepseek-chat
+
+ ## User prompt
+ portfolio
+
+ ## System prompt
+ You are an expert web developer. Create a website based on this request: "portfolio"
+
+ Requirements:
+ - Use only Scroll, CSS, and JavaScript (NO frameworks, NO external dependencies)
+ - Create clean, semantic HTML5
+ - Make it mobile-responsive
+ - Follow modern best practices and accessibility guidelines
+ - Keep it simple but professional
+ - Use only relative links and no external resources
+ - Do not put a copyright symbol or all rights reserved in the footer.
+ - Make it beautiful. Dazzling. Advanced used of CSS.
+
+ As a refresher, for doing the html body, Scroll is a whitespace based language that uses a single indented space to mark a line (aka particle) as a subparticle of a parent line.
+
+ For example:
+
+ header
+ class hero
+ nav
+ div Scroll
+ class logo
+ div
+ class nav-links
+ a Features
+ href #features
+ a Examples
+ href #examples
+ a Edit
+ href edit.html
+ a GitHub
+ class cta-button
+ href https://github.com/breck7/scroll
+ div
+ class hero-content
+ h1 Write Better with Scroll
+ p The extendible markup language that makes source beautiful and compiles to anything
+ a Get Started
+ class primary-button
+ href https://hub.scroll.pub/
+ main
+ section
+ id features
+ class features
+ h2 Why Scroll?
+ div
+ class feature-grid
+ div
+ class feature-card
+ div ⚡
+ class feature-icon
+ h3 Simple Syntax
+ p Like Markdown, but more powerful. No parentheses needed.
+ div
+ class feature-card
+ div 🧩
+ class feature-icon
+ h3 Extendible
+ p Build your own custom parsers.
+ div
+ class feature-card
+ div 🎨
+ class feature-icon
+ h3 Beautiful Output
+ p Create stunning documents with minimal effort.
+ div
+ class feature-card
+ div 🚀
+ class feature-icon
+ h3 Fast & Light
+ p Built on the efficient PPS Stack.
+ section
+ id examples
+ class code-demo
+ h2 See It In Action
+ div
+ class code-container
+ pre
+ class code-example
+ div
+ class code-output
+ footer
+ div
+ class footer-content
+ div
+ class footer-links
+ a Documentation
+ href https://scroll.pub/tutorial.html
+ a Community
+ href https://www.reddit.com/r/WorldWideScroll/
+ a Blog
+ href https://scroll.pub/blog
+ p Started by Breck Yunits. Evolved by a community.
+ https://twitter.com/breckyunits Breck Yunits
+ https://github.com/breck7/scroll/graphs/contributors community
+
+
+ First suggest a short, memorable domain name ending in scroll.pub that represents this website. Then provide the website files. Use this exact format:
+
+ ---domain---
+ (domainscroll.pub here)
+ ---index.scroll---
+ buildHtml
+ baseUrl https://(domainscroll.pub here)
+ metaTags
+ editButton /edit.html
+ title (Title here)
+ style.css
+
+ (body content here. no blank lines please.)
+
+ script.js
+ ---style.css---
+ (CSS content here)
+ ---script.js---
+ (JavaScript content here)
+ ---end---
script.js
Changed around line 1
+ document.addEventListener('DOMContentLoaded', function() {
+ // Smooth scrolling for anchor links
+ document.querySelectorAll('a[href^="#"]').forEach(anchor => {
+ anchor.addEventListener('click', function(e) {
+ e.preventDefault();
+
+ const targetId = this.getAttribute('href');
+ if (targetId === '#') return;
+
+ const targetElement = document.querySelector(targetId);
+ if (targetElement) {
+ window.scrollTo({
+ top: targetElement.offsetTop - 80,
+ behavior: 'smooth'
+ });
+
+ // Update URL without page jump
+ if (history.pushState) {
+ history.pushState(null, null, targetId);
+ } else {
+ location.hash = targetId;
+ }
+ }
+ });
+ });
+
+ // Add animation class when elements come into view
+ const animateOnScroll = function() {
+ const elements = document.querySelectorAll('.project-card, .about-content, .contact-form');
+
+ elements.forEach(element => {
+ const elementPosition = element.getBoundingClientRect().top;
+ const windowHeight = window.innerHeight;
+
+ if (elementPosition < windowHeight - 100) {
+ element.classList.add('animate');
+ }
+ });
+ };
+
+ // Initial check
+ animateOnScroll();
+
+ // Check on scroll
+ window.addEventListener('scroll', animateOnScroll);
+
+ // Form submission
+ const contactForm = document.querySelector('.contact-form');
+ if (contactForm) {
+ contactForm.addEventListener('submit', function(e) {
+ e.preventDefault();
+
+ // Get form values
+ const formData = new FormData(this);
+ const data = {};
+ formData.forEach((value, key) => {
+ data[key] = value;
+ });
+
+ // Here you would typically send the data to a server
+ console.log('Form submitted:', data);
+
+ // Show success message
+ alert('Thank you for your message! I will get back to you soon.');
+ this.reset();
+ });
+ }
+ });
style.css
Changed around line 1
+ :root {
+ --primary: #2563eb;
+ --primary-dark: #1d4ed8;
+ --text: #1e293b;
+ --text-light: #64748b;
+ --background: #f8fafc;
+ --white: #ffffff;
+ --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
+ --transition: all 0.3s ease;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
+ line-height: 1.6;
+ color: var(--text);
+ background-color: var(--background);
+ }
+
+ header {
+ min-height: 100vh;
+ background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
+ position: relative;
+ overflow: hidden;
+ }
+
+ header::before {
+ content: '';
+ position: absolute;
+ top: -50%;
+ left: -50%;
+ width: 200%;
+ height: 200%;
+ background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
+ animation: rotate 20s linear infinite;
+ z-index: 0;
+ }
+
+ @keyframes rotate {
+ 0% { transform: rotate(0deg); }
+ 100% { transform: rotate(360deg); }
+ }
+
+ .hero {
+ position: relative;
+ z-index: 1;
+ padding: 2rem;
+ max-width: 1200px;
+ margin: 0 auto;
+ height: 100vh;
+ display: flex;
+ flex-direction: column;
+ }
+
+ nav {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ padding: 1rem 0;
+ }
+
+ .logo {
+ font-size: 1.8rem;
+ font-weight: 700;
+ color: var(--primary);
+ }
+
+ .nav-links {
+ display: flex;
+ gap: 2rem;
+ }
+
+ .nav-links a {
+ text-decoration: none;
+ color: var(--text);
+ font-weight: 500;
+ transition: var(--transition);
+ }
+
+ .nav-links a:hover {
+ color: var(--primary);
+ }
+
+ .hero-content {
+ flex: 1;
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+ max-width: 600px;
+ }
+
+ .hero-content h1 {
+ font-size: 3.5rem;
+ margin-bottom: 1rem;
+ line-height: 1.2;
+ background: linear-gradient(to right, var(--primary), #7c3aed);
+ -webkit-background-clip: text;
+ background-clip: text;
+ color: transparent;
+ }
+
+ .hero-content p {
+ font-size: 1.2rem;
+ color: var(--text-light);
+ margin-bottom: 2rem;
+ }
+
+ .primary-button {
+ display: inline-block;
+ background-color: var(--primary);
+ color: white;
+ padding: 0.8rem 1.8rem;
+ border-radius: 0.5rem;
+ text-decoration: none;
+ font-weight: 500;
+ transition: var(--transition);
+ align-self: flex-start;
+ box-shadow: var(--shadow);
+ }
+
+ .primary-button:hover {
+ background-color: var(--primary-dark);
+ transform: translateY(-2px);
+ }
+
+ .secondary-button {
+ display: inline-block;
+ border: 1px solid var(--primary);
+ color: var(--primary);
+ padding: 0.6rem 1.4rem;
+ border-radius: 0.5rem;
+ text-decoration: none;
+ font-weight: 500;
+ transition: var(--transition);
+ }
+
+ .secondary-button:hover {
+ background-color: var(--primary);
+ color: white;
+ }
+
+ main {
+ max-width: 1200px;
+ margin: 0 auto;
+ padding: 4rem 2rem;
+ }
+
+ section {
+ margin-bottom: 6rem;
+ }
+
+ h2 {
+ font-size: 2.5rem;
+ margin-bottom: 3rem;
+ position: relative;
+ display: inline-block;
+ }
+
+ h2::after {
+ content: '';
+ position: absolute;
+ bottom: -10px;
+ left: 0;
+ width: 50px;
+ height: 4px;
+ background-color: var(--primary);
+ border-radius: 2px;
+ }
+
+ .project-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
+ gap: 2rem;
+ }
+
+ .project-card {
+ background-color: var(--white);
+ border-radius: 0.5rem;
+ overflow: hidden;
+ box-shadow: var(--shadow);
+ transition: var(--transition);
+ }
+
+ .project-card:hover {
+ transform: translateY(-5px);
+ box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
+ }
+
+ .project-image {
+ height: 200px;
+ background-color: #e2e8f0;
+ background-size: cover;
+ background-position: center;
+ }
+
+ .project-card:nth-child(1) .project-image {
+ background-image: linear-gradient(45deg, #93c5fd 0%, #c4b5fd 100%);
+ }
+
+ .project-card:nth-child(2) .project-image {
+ background-image: linear-gradient(45deg, #86efac 0%, #a5b4fc 100%);
+ }
+
+ .project-card:nth-child(3) .project-image {
+ background-image: linear-gradient(45deg, #fca5a5 0%, #fcd34d 100%);
+ }
+
+ .project-card h3 {
+ padding: 1.5rem 1.5rem 0.5rem;
+ font-size: 1.3rem;
+ }
+
+ .project-card p {
+ padding: 0 1.5rem;
+ color: var(--text-light);
+ margin-bottom: 1.5rem;
+ }
+
+ .project-card a {
+ margin: 0 1.5rem 1.5rem;
+ display: inline-block;
+ }
+
+ .about-content {
+ display: grid;
+ grid-template-columns: 2fr 1fr;
+ gap: 3rem;
+ }
+
+ .about-text p {
+ margin-bottom: 1.5rem;
+ }
+
+ .skills ul {
+ list-style: none;
+ }
+
+ .skills li {
+ padding: 0.5rem 0;
+ position: relative;
+ padding-left: 1.5rem;
+ }
+
+ .skills li::before {
+ content: '▹';
+ position: absolute;
+ left: 0;
+ color: var(--primary);
+ }
+
+ .contact-form {
+ max-width: 600px;
+ }
+
+ .form-group {
+ margin-bottom: 1.5rem;
+ }
+
+ .form-group label {
+ display: block;
+ margin-bottom: 0.5rem;
+ font-weight: 500;
+ }
+
+ .form-group input,
+ .form-group textarea {
+ width: 100%;
+ padding: 0.8rem;
+ border: 1px solid #cbd5e1;
+ border-radius: 0.5rem;
+ font-family: inherit;
+ transition: var(--transition);
+ }
+
+ .form-group input:focus,
+ .form-group textarea:focus {
+ outline: none;
+ border-color: var(--primary);
+ box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
+ }
+
+ .form-group textarea {
+ min-height: 150px;
+ resize: vertical;
+ }
+
+ footer {
+ background-color: var(--white);
+ padding: 3rem 2rem;
+ text-align: center;
+ }
+
+ .footer-content {
+ max-width: 1200px;
+ margin: 0 auto;
+ }
+
+ .social-links {
+ display: flex;
+ justify-content: center;
+ gap: 2rem;
+ margin-bottom: 1.5rem;
+ }
+
+ .social-links a {
+ color: var(--text);
+ text-decoration: none;
+ transition: var(--transition);
+ }
+
+ .social-links a:hover {
+ color: var(--primary);
+ }
+
+ @media (max-width: 768px) {
+ .hero-content h1 {
+ font-size: 2.5rem;
+ }
+
+ .about-content {
+ grid-template-columns: 1fr;
+ }
+
+ .nav-links {
+ gap: 1rem;
+ }
+ }
+
+ @media (max-width: 480px) {
+ .hero-content h1 {
+ font-size: 2rem;
+ }
+
+ .nav-links {
+ display: none;
+ }
+
+ .project-grid {
+ grid-template-columns: 1fr;
+ }
+ }