The copper-portfolio project is a modern, professional, and fully responsive portfolio website designed for a video editor based in India. The primary goal of this project is to showcase video editing skills and attract potential clients through a visually engaging, cinematic, and tech-focused design. The website will feature smooth animations, hover effects, and a clean layout while redirecting users to Google Drive for video previews. This document outlines the system requirements for the project, ensuring clarity and alignment with the user's vision.
The copper-portfolio website will serve as a digital portfolio for showcasing video editing projects. It will include sections for a hero banner, portfolio work, services, testimonials, skills, and contact information. The portfolio section will display video projects as thumbnail cards, which, when clicked, redirect users to Google Drive links for video previews. The website will be optimized for performance, responsiveness, and user engagement, with a focus on smooth animations and cinematic aesthetics.
Key Features:
#03045E (Primary dark background)#CAF0F8 (Light background sections)#90E0EF (Soft contrast for text)#0077B6 (Secondary accent for buttons and highlights)#00B4D8 (Highlight color for subtle emphasis)The copper-portfolio homepage will feature a cinematic parallax scrolling effect. As users scroll, the background layers will move at different speeds, creating a sense of depth and immersion. The hero section will include a bold headline ("Crafting Cinematic Stories Through Editing") with a glowing text effect that subtly pulses, drawing attention. Call-to-action buttons will have a ripple animation when hovered over.
The portfolio section will use animated thumbnail cards that tilt slightly based on cursor position, with a soft glow effect. On hover, the card will display a brief description of the project, and clicking it will redirect to the corresponding Google Drive link.
The overall experience will feel dynamic and premium, leaving a lasting impression on visitors.
Below are the three requested files for the copper-portfolio project:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Copper Portfolio</title>
<link rel="stylesheet" href="index.css">
</head>
<body>
<header class="hero">
<h1>Crafting Cinematic Stories Through Editing</h1>
<p>Your vision, brought to life through expert video editing.</p>
<div class="cta-buttons">
<button>View Work</button>
<button>Contact</button>
</div>
</header>
<section class="portfolio">
<h2>Portfolio</h2>
<div class="portfolio-grid">
<!-- Example Card -->
<div class="portfolio-card">
<img src="thumbnail1.jpg" alt="Project Thumbnail">
<p>Project Title</p>
<a href="https://drive.google.com/your-link-here" target="_blank">View on Google Drive</a>
</div>
<!-- Add more cards as needed -->
</div>
</section>
<script src="index.js"></script>
</body>
</html>
body {
font-family: Arial, sans-serif;
background-color: #03045E;
color: #90E0EF;
margin: 0;
padding: 0;
}
.hero {
text-align: center;
padding: 50px;
background: linear-gradient(135deg, #03045E, #0077B6);
color: #CAF0F8;
}
.portfolio {
padding: 20px;
}
.portfolio-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 20px;
}
.portfolio-card {
background: #CAF0F8;
padding: 10px;
border-radius: 8px;
text-align: center;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.portfolio-card:hover {
transform: scale(1.05);
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
// Instructions for adding thumbnails and links:
// 1. Add a new <div> inside the .portfolio-grid section in index.html.
// 2. Use the following structure:
// <div class="portfolio-card">
// <img src="your-thumbnail.jpg" alt="Project Thumbnail">
// <p>Your Project Title</p>
// <a href="https://drive.google.com/your-link-here" target="_blank">View on Google Drive</a>
// </div>
No comments yet. Be the first!