<!-- CONTACT SECTION / PAPER CARD WITH INFO --> <section id="contact" class="contact-paper"> <h2 class="section-title">Get in touch</h2> <p style="margin: 1rem 0 0.8rem 0; color: #5b4a33;">Have a project in mind? Send a letter (or an email) — we reply within 24h.</p> <div class="contact-details"> <div class="contact-item"><i class="fas fa-envelope"></i> hello@paperportfolio.wp</div> <div class="contact-item"><i class="fas fa-phone-alt"></i> +1 (800) 789-PAPER</div> <div class="contact-item"><i class="fab fa-instagram"></i> @paper_portfolio</div> <div class="contact-item"><i class="fab fa-github"></i> paper-theme</div> </div> <!-- simple contact form mock (paper style) --> <div style="margin-top: 2rem; background: #fffbf0; padding: 1.2rem; border-radius: 28px; border: 1px solid #eee1ca;"> <form action="#" method="post" style="display: flex; flex-wrap: wrap; gap: 1rem;"> <input type="text" placeholder="Your name" style="flex: 1; min-width: 160px; background: #fffef7; border: 1px solid #e5d6b8; padding: 0.8rem 1rem; border-radius: 60px; font-family: inherit;"> <input type="email" placeholder="Email address" style="flex: 1; min-width: 200px; background: #fffef7; border: 1px solid #e5d6b8; padding: 0.8rem 1rem; border-radius: 60px; font-family: inherit;"> <button type="submit" class="wp-btn" style="background:#e9ddc7; border: none; cursor: pointer;"><i class="fas fa-paper-plane"></i> Send message</button> </form> <p style="font-size: 0.7rem; margin-top: 0.8rem; color:#aa9a7a;"><i class="fas fa-lock"></i> Your info stays between these paper fibers.</p> </div> </section>

.wp-btn:hover { background: #f4ecdb; border-color: #c6a86b; color: #3e2a16; }

footer { margin-top: 3rem; text-align: center; padding: 1.5rem 0.5rem; font-size: 0.8rem; color: #7b6b50; border-top: 1px solid #e2d2b5; }

.wp-nav a:hover { border-bottom-color: #c6a15b; color: #2f2419; }

h1 { font-size: 3.2rem; font-weight: 600; background: linear-gradient(135deg, #3a2c1f, #6b4e2e); background-clip: text; -webkit-background-clip: text; color: transparent; margin-bottom: 0.5rem; }

.wp-btn { display: inline-flex; align-items: center; gap: 8px; background: transparent; border: 1px solid #ddcea8; padding: 0.5rem 1.2rem; border-radius: 40px; font-size: 0.85rem; font-weight: 500; color: #6b4e2e; text-decoration: none; transition: all 0.2s; }

/* typography paper style */ h1, h2, h3 { font-family: 'Playfair Display', serif; font-weight: 500; letter-spacing: -0.01em; }

<!-- ABOUT SECTION (paper-themed) --> <section id="about" class="about-paper"> <h2 class="section-title">About this theme</h2> <div style="display: flex; flex-wrap: wrap; gap: 2rem; margin-top: 1rem;"> <div style="flex: 2; min-width: 200px;"> <p style="margin-bottom: 1rem; font-size: 1rem;">Inspired by the tactility of handmade paper, <strong>Paper Portfolio</strong> is a WordPress theme concept that blends editorial elegance with portfolio functionality. Every element — from the grain overlay to the rounded paper cards — evokes the warmth of a physical sketchbook.</p> <p style="margin-bottom: 1rem;">Perfect for artists, designers, writers, and creative studios who want their online presence to feel authentic, calm, and deeply human. Fully responsive, block-editor ready, and crafted with <i class="fas fa-heart" style="color:#c69c6d;"></i> for the WordPress ecosystem.</p> <div style="display: flex; gap: 12px; margin-top: 1.5rem;"> <span class="wp-btn" style="background:#efe2cd;"><i class="fab fa-wordpress"></i> Download theme</span> <span class="wp-btn"><i class="fas fa-file-alt"></i> Documentation</span> </div> </div> <div style="flex: 1; background: #f3ead9; border-radius: 24px; padding: 1.2rem; text-align: center; border: 1px solid #e7dcc4;"> <i class="fas fa-paper-plane" style="font-size: 2rem; color: #b48b48;"></i> <p style="font-size: 0.8rem; margin-top: 8px;">“Paper has more patience than people.” <br>— Anne Frank</p> </div> </div> </section>

/* paper fold effect on images */ .card-media::after { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 30%; background: linear-gradient(to top, rgba(0,0,0,0.03), transparent); pointer-events: none; }

.site-tagline { font-size: 1.1rem; color: #7a684c; border-left: 3px solid #d6bc8a; padding-left: 1rem; margin-top: 0.5rem; font-weight: 400; }

.project-card { background: #fffbf2; border-radius: 28px; overflow: hidden; transition: transform 0.25s ease, box-shadow 0.3s; box-shadow: 0 6px 14px rgba(0, 0, 0, 0.05), 0 0 0 1px #f3e9d8; }

<!-- optional micro-interaction: console info to mimic wordpress theme enqueue --> <script> // small script to simulate WordPress theme live preview / dynamic year (function() { // dynamic copyright year (optional) const footerYear = document.querySelector('footer p:first-child'); if(footerYear) { const currentYear = new Date().getFullYear(); footerYear.innerHTML = `<i class="far fa-copyright"></i> ${currentYear} Paper Portfolio — A WordPress Theme Concept. Crafted with <i class="fas fa-feather-alt"></i> and vintage vibes.`; }

/* responsive touches */ @media (max-width: 680px) { body { padding: 1rem; } h1 { font-size: 2.2rem; } .paper-header { padding: 1.5rem; } .portfolio-grid { gap: 1.2rem; } }

.project-title { font-size: 1.6rem; font-weight: 600; margin-bottom: 0.5rem; font-family: 'Playfair Display', serif; }