new design finished
This commit is contained in:
781
brutalist-01/index.html
Normal file
781
brutalist-01/index.html
Normal file
@@ -0,0 +1,781 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Ovidiu Ungureanu — Web Developer</title>
|
||||
<link rel="preconnect" href="https://api.fontshare.com">
|
||||
<link href="https://api.fontshare.com/v2/css?f[]=clash-grotesk@700,600,500,400&f[]=general-sans@700,600,500,400&display=swap" rel="stylesheet">
|
||||
<style>
|
||||
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
|
||||
|
||||
:root {
|
||||
--bg: #E3E2DE;
|
||||
--dark: #1B0E0D;
|
||||
--mid: #61220F;
|
||||
--accent: #C72A09;
|
||||
--neon: #31EF07;
|
||||
--border: #D9D9D9;
|
||||
--clash: 'Clash Grotesk', sans-serif;
|
||||
--general: 'General Sans', sans-serif;
|
||||
}
|
||||
|
||||
html { scroll-behavior: smooth; }
|
||||
|
||||
body {
|
||||
font-family: var(--general);
|
||||
background: var(--bg);
|
||||
color: var(--dark);
|
||||
overflow-x: hidden;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
}
|
||||
|
||||
a { color: inherit; text-decoration: none; }
|
||||
|
||||
::selection { background: var(--accent); color: var(--bg); }
|
||||
|
||||
/* ── NOISE ──────────────────────────────────────── */
|
||||
.noise {
|
||||
position: fixed;
|
||||
inset: 0;
|
||||
pointer-events: none;
|
||||
z-index: 50;
|
||||
mix-blend-mode: multiply;
|
||||
opacity: 0.08;
|
||||
}
|
||||
|
||||
/* ── NAV ────────────────────────────────────────── */
|
||||
.nav {
|
||||
position: fixed;
|
||||
top: 0; left: 0; right: 0;
|
||||
z-index: 40;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
padding: 1.5rem 2.5rem;
|
||||
mix-blend-mode: difference;
|
||||
color: var(--bg);
|
||||
transition: background 0.2s ease;
|
||||
}
|
||||
|
||||
.nav--scrolled {
|
||||
mix-blend-mode: normal;
|
||||
background: rgba(27,14,13,0.8);
|
||||
}
|
||||
|
||||
.nav-logo {
|
||||
font-family: var(--clash);
|
||||
font-weight: 700;
|
||||
font-size: 1.5rem;
|
||||
letter-spacing: -0.02em;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
.nav-links {
|
||||
display: flex;
|
||||
gap: 2.5rem;
|
||||
font-family: var(--general);
|
||||
font-size: 0.75rem;
|
||||
font-weight: 600;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.08em;
|
||||
}
|
||||
|
||||
.nav-link {
|
||||
position: relative;
|
||||
}
|
||||
.nav-link::after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
bottom: -3px; left: 0;
|
||||
width: 100%; height: 2px;
|
||||
background: var(--neon);
|
||||
transform: scaleX(0);
|
||||
transform-origin: right;
|
||||
transition: transform 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
|
||||
}
|
||||
.nav-link:hover::after {
|
||||
transform: scaleX(1);
|
||||
transform-origin: left;
|
||||
}
|
||||
|
||||
.nav-cta {
|
||||
font-family: var(--general);
|
||||
font-size: 0.75rem;
|
||||
font-weight: 700;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.08em;
|
||||
}
|
||||
|
||||
/* ── HERO ───────────────────────────────────────── */
|
||||
.hero {
|
||||
position: relative;
|
||||
height: 70vh;
|
||||
max-height: 650px;
|
||||
min-height: 520px;
|
||||
background-color: var(--dark);
|
||||
background-image: radial-gradient(circle, rgba(227,226,222,0.055) 1px, transparent 1px);
|
||||
background-size: 48px 48px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: flex-end;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.hero::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
inset: 0;
|
||||
background: radial-gradient(ellipse at 50% 100%, transparent 40%, rgba(27,14,13,0.55) 100%);
|
||||
pointer-events: none;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
.hero-content {
|
||||
position: relative;
|
||||
z-index: 2;
|
||||
padding: 0 2.5rem 3rem;
|
||||
}
|
||||
|
||||
.hero-divider {
|
||||
width: 100%;
|
||||
height: 1px;
|
||||
background: rgba(227,226,222,0.25);
|
||||
margin-bottom: 1.5rem;
|
||||
}
|
||||
|
||||
.hero-meta-row {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: flex-end;
|
||||
gap: 1rem;
|
||||
margin-bottom: 0.25rem;
|
||||
}
|
||||
|
||||
.hero-meta {
|
||||
font-family: var(--general);
|
||||
font-size: 0.7rem;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.15em;
|
||||
color: rgba(227,226,222,0.5);
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 0.2rem;
|
||||
}
|
||||
|
||||
.hero-cta-btn {
|
||||
display: inline-block;
|
||||
font-family: var(--clash);
|
||||
font-size: 0.85rem;
|
||||
font-weight: 700;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.06em;
|
||||
padding: 1rem 2rem;
|
||||
background: var(--accent);
|
||||
color: var(--bg);
|
||||
transition: background 0.2s, color 0.2s;
|
||||
}
|
||||
.hero-cta-btn:hover {
|
||||
background: var(--neon);
|
||||
color: var(--dark);
|
||||
}
|
||||
|
||||
.hero-headline {
|
||||
font-family: var(--clash);
|
||||
font-weight: 700;
|
||||
font-size: 13.5vw;
|
||||
line-height: 0.75;
|
||||
letter-spacing: -0.05em;
|
||||
text-transform: uppercase;
|
||||
margin-top: 2.25rem;
|
||||
padding: 0 1rem;
|
||||
}
|
||||
|
||||
.hero-headline .line1 {
|
||||
display: block;
|
||||
color: var(--accent);
|
||||
}
|
||||
.hero-headline .line2 {
|
||||
display: block;
|
||||
color: var(--bg);
|
||||
margin-left: 20vw;
|
||||
}
|
||||
|
||||
/* ── MANIFESTO / ABOUT ──────────────────────────── */
|
||||
.manifesto {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(12, 1fr);
|
||||
gap: 2rem;
|
||||
padding: 6rem 2.5rem;
|
||||
}
|
||||
|
||||
.manifesto-label-col {
|
||||
grid-column: span 4;
|
||||
border-top: 1px solid var(--dark);
|
||||
padding-top: 1rem;
|
||||
}
|
||||
|
||||
.section-label {
|
||||
font-family: monospace;
|
||||
font-size: 0.75rem;
|
||||
font-weight: 400;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.1em;
|
||||
color: var(--mid);
|
||||
}
|
||||
|
||||
.manifesto-text-col {
|
||||
grid-column: span 8;
|
||||
border-top: 1px solid var(--dark);
|
||||
padding-top: 1rem;
|
||||
}
|
||||
|
||||
.manifesto-text {
|
||||
font-family: var(--clash);
|
||||
font-size: clamp(1.75rem, 3.2vw, 3rem);
|
||||
font-weight: 500;
|
||||
line-height: 1.15;
|
||||
text-transform: uppercase;
|
||||
text-indent: 3rem;
|
||||
}
|
||||
|
||||
.manifesto-text .hl { color: var(--mid); }
|
||||
|
||||
/* ── CATEGORY DIVIDER ───────────────────────────── */
|
||||
.category-divider {
|
||||
width: 100%;
|
||||
border-top: 1px solid var(--border);
|
||||
border-bottom: 1px solid var(--border);
|
||||
padding: 0 2.5rem;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.category-divider h2 {
|
||||
font-family: var(--clash);
|
||||
font-size: 12vw;
|
||||
font-weight: 700;
|
||||
letter-spacing: -0.04em;
|
||||
line-height: 0.95;
|
||||
color: var(--mid);
|
||||
text-transform: uppercase;
|
||||
padding: 0.2rem 0;
|
||||
}
|
||||
|
||||
/* ── SERVICES ───────────────────────────────────── */
|
||||
.services {
|
||||
border-top: 1px solid rgba(27,14,13,0.15);
|
||||
padding: 0 2.5rem;
|
||||
}
|
||||
|
||||
.service-row {
|
||||
display: flex;
|
||||
align-items: flex-start;
|
||||
gap: 2rem;
|
||||
border-bottom: 1px solid rgba(27,14,13,0.15);
|
||||
padding: 2.5rem 0;
|
||||
margin: 0 -2.5rem;
|
||||
padding-left: 2.5rem;
|
||||
padding-right: 2.5rem;
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
cursor: default;
|
||||
transition: background 0.15s ease;
|
||||
}
|
||||
|
||||
/* .service-row:hover { background: var(--dark); } */
|
||||
|
||||
.service-num {
|
||||
font-family: var(--general);
|
||||
font-size: 0.9rem;
|
||||
font-weight: 700;
|
||||
color: var(--accent);
|
||||
padding-top: 0.8rem;
|
||||
flex-shrink: 0;
|
||||
width: 3.5rem;
|
||||
}
|
||||
/* .service-row:hover .service-num { color: var(--neon); } */
|
||||
|
||||
.service-body { flex: 1; min-width: 0; }
|
||||
|
||||
.service-title {
|
||||
font-family: var(--clash);
|
||||
font-size: clamp(1.75rem, 3.2vw, 3rem);
|
||||
font-weight: 500;
|
||||
line-height: 1.15;
|
||||
text-transform: uppercase;
|
||||
text-indent: 3rem;
|
||||
color: var(--dark);
|
||||
margin-bottom: 1.1rem;
|
||||
}
|
||||
/* .service-row:hover .service-title { color: var(--bg); } */
|
||||
|
||||
.service-row--alt .service-title > span {
|
||||
background-color: var(--accent);
|
||||
color: var(--bg);
|
||||
-webkit-box-decoration-break: clone;
|
||||
box-decoration-break: clone;
|
||||
padding: 0.04em 0.15em;
|
||||
display: inline;
|
||||
}
|
||||
|
||||
.service-tags {
|
||||
display: flex;
|
||||
gap: 0.5rem;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
.service-tag {
|
||||
font-family: var(--general);
|
||||
font-size: 0.65rem;
|
||||
font-weight: 600;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.07em;
|
||||
padding: 4px 12px;
|
||||
border: 1px solid rgba(27,14,13,0.25);
|
||||
border-radius: 100px;
|
||||
color: var(--mid);
|
||||
}
|
||||
/* .service-row:hover .service-tag {
|
||||
border-color: rgba(227,226,222,0.25);
|
||||
color: rgba(227,226,222,0.5);
|
||||
} */
|
||||
|
||||
.service-badge {
|
||||
position: absolute;
|
||||
top: 2.25rem;
|
||||
right: 2.5rem;
|
||||
background: var(--neon);
|
||||
color: var(--dark);
|
||||
font-family: var(--general);
|
||||
font-size: 0.65rem;
|
||||
font-weight: 700;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.06em;
|
||||
padding: 6px 12px;
|
||||
opacity: 0;
|
||||
}
|
||||
/* .service-row:hover .service-badge { opacity: 1; } */
|
||||
|
||||
/* ── CONTACT ────────────────────────────────────── */
|
||||
.contact-section {
|
||||
background: var(--dark);
|
||||
padding: 7rem 2.5rem 6rem;
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.contact-section::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
inset: 0;
|
||||
background-image: radial-gradient(circle, rgba(227,226,222,0.04) 1px, transparent 1px);
|
||||
background-size: 48px 48px;
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
.contact-inner { position: relative; z-index: 1; }
|
||||
|
||||
.contact-section .section-label {
|
||||
color: rgba(227,226,222,0.35);
|
||||
display: block;
|
||||
margin-bottom: 3rem;
|
||||
}
|
||||
|
||||
.contact-headline {
|
||||
font-family: var(--clash);
|
||||
font-size: clamp(3rem, 6vw, 6rem);
|
||||
font-weight: 700;
|
||||
text-transform: uppercase;
|
||||
color: var(--bg);
|
||||
line-height: 0.88;
|
||||
letter-spacing: -0.04em;
|
||||
margin-bottom: 3rem;
|
||||
}
|
||||
.contact-headline .accent { color: var(--accent); }
|
||||
|
||||
.contact-email {
|
||||
display: block;
|
||||
font-family: var(--clash);
|
||||
font-size: clamp(1.5rem, 3.5vw, 3.75rem);
|
||||
font-weight: 700;
|
||||
color: var(--bg);
|
||||
letter-spacing: -0.02em;
|
||||
margin-bottom: 3rem;
|
||||
width: fit-content;
|
||||
position: relative;
|
||||
}
|
||||
.contact-email::after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
bottom: -4px; left: 0;
|
||||
width: 100%; height: 2px;
|
||||
background: var(--neon);
|
||||
transform: scaleX(0);
|
||||
transform-origin: right;
|
||||
transition: transform 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
|
||||
}
|
||||
.contact-email:hover::after {
|
||||
transform: scaleX(1);
|
||||
transform-origin: left;
|
||||
}
|
||||
|
||||
.contact-meta {
|
||||
font-family: var(--general);
|
||||
font-size: 0.75rem;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.12em;
|
||||
color: rgba(227,226,222,0.35);
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 1.25rem;
|
||||
}
|
||||
.contact-meta .dot { opacity: 0.4; }
|
||||
|
||||
/* ── FOOTER ─────────────────────────────────────── */
|
||||
.footer {
|
||||
background: var(--bg);
|
||||
border-top: 1px solid var(--dark);
|
||||
padding: 4.5rem 2.5rem 0;
|
||||
}
|
||||
|
||||
.footer-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(4, 1fr);
|
||||
gap: 3rem;
|
||||
margin-bottom: 4.5rem;
|
||||
}
|
||||
|
||||
.footer-heading {
|
||||
font-family: var(--clash);
|
||||
font-size: 1.1rem;
|
||||
font-weight: 700;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: -0.01em;
|
||||
margin-bottom: 1.25rem;
|
||||
}
|
||||
|
||||
.footer-links {
|
||||
list-style: none;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 0.65rem;
|
||||
}
|
||||
.footer-links a {
|
||||
font-family: var(--general);
|
||||
font-size: 0.875rem;
|
||||
color: var(--mid);
|
||||
transition: color 0.15s;
|
||||
}
|
||||
.footer-links a:hover { color: var(--accent); }
|
||||
|
||||
.footer-address {
|
||||
font-family: var(--general);
|
||||
font-size: 0.875rem;
|
||||
color: var(--mid);
|
||||
line-height: 1.8;
|
||||
font-style: normal;
|
||||
}
|
||||
.footer-address a { font-weight: 700; }
|
||||
.footer-address a:hover { color: var(--accent); }
|
||||
|
||||
.footer-cta {
|
||||
background: var(--dark);
|
||||
padding: 1.5rem;
|
||||
}
|
||||
.footer-cta label {
|
||||
display: block;
|
||||
font-family: var(--general);
|
||||
font-size: 0.65rem;
|
||||
font-weight: 700;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.15em;
|
||||
color: var(--bg);
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
.footer-input-row {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
border-bottom: 1px solid rgba(227,226,222,0.4);
|
||||
gap: 0.5rem;
|
||||
}
|
||||
.footer-input-row input {
|
||||
background: transparent;
|
||||
border: none;
|
||||
outline: none;
|
||||
font-family: var(--general);
|
||||
font-size: 0.8rem;
|
||||
color: var(--bg);
|
||||
text-transform: uppercase;
|
||||
width: 100%;
|
||||
padding: 0.5rem 0;
|
||||
}
|
||||
.footer-input-row input::placeholder { color: rgba(227,226,222,0.25); }
|
||||
.footer-input-row button {
|
||||
background: none;
|
||||
border: none;
|
||||
cursor: pointer;
|
||||
font-family: var(--general);
|
||||
font-size: 0.75rem;
|
||||
font-weight: 700;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.06em;
|
||||
color: var(--neon);
|
||||
padding: 0.5rem 0;
|
||||
white-space: nowrap;
|
||||
transition: color 0.15s;
|
||||
}
|
||||
.footer-input-row button:hover { color: var(--bg); }
|
||||
|
||||
.footer-bottom {
|
||||
border-top: 1px solid var(--border);
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: flex-end;
|
||||
padding-top: 1.5rem;
|
||||
}
|
||||
|
||||
.footer-ghost {
|
||||
font-family: var(--clash);
|
||||
font-size: 8vw;
|
||||
font-weight: 700;
|
||||
text-transform: uppercase;
|
||||
color: var(--border);
|
||||
line-height: 1;
|
||||
letter-spacing: -0.04em;
|
||||
user-select: none;
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
.footer-legal {
|
||||
font-family: var(--general);
|
||||
font-size: 0.7rem;
|
||||
color: var(--mid);
|
||||
padding-bottom: 0.3rem;
|
||||
}
|
||||
|
||||
/* ── RESPONSIVE ─────────────────────────────────── */
|
||||
@media (max-width: 960px) {
|
||||
.manifesto { grid-template-columns: 1fr; gap: 1rem; }
|
||||
.manifesto-label-col,
|
||||
.manifesto-text-col { grid-column: span 1; }
|
||||
.footer-grid { grid-template-columns: repeat(2, 1fr); }
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
.nav { padding: 1.25rem 1.5rem; }
|
||||
.nav-links { display: none; }
|
||||
|
||||
.hero {
|
||||
height: auto;
|
||||
min-height: 0;
|
||||
padding-top: 5rem;
|
||||
}
|
||||
.hero-content { padding: 0 1.5rem 2.5rem; }
|
||||
.hero-meta-row {
|
||||
flex-direction: column;
|
||||
align-items: flex-start;
|
||||
gap: 1rem;
|
||||
margin-bottom: 1.5rem;
|
||||
}
|
||||
.hero-headline { font-size: 12vw; }
|
||||
.hero-headline .line2 { margin-left: 5vw; }
|
||||
|
||||
.manifesto { padding: 4rem 1.5rem; }
|
||||
.manifesto-text { font-size: 1.75rem; text-indent: 1.5rem; }
|
||||
|
||||
.category-divider { padding: 0 1.5rem; }
|
||||
|
||||
.services { padding: 0 1.5rem; }
|
||||
.service-row { margin: 0 -1.5rem; padding: 2rem 1.5rem; }
|
||||
.service-badge { right: 1.5rem; }
|
||||
.service-title { font-size: clamp(1.5rem, 5vw, 2.5rem); text-indent: 1.5rem; }
|
||||
|
||||
.contact-section { padding: 4rem 1.5rem; }
|
||||
|
||||
.footer { padding: 3rem 1.5rem 0; }
|
||||
.footer-grid { grid-template-columns: 1fr; gap: 2rem; }
|
||||
.footer-ghost { font-size: 16vw; }
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<!-- Noise Texture Overlay -->
|
||||
<div class="noise" aria-hidden="true">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%">
|
||||
<filter id="n">
|
||||
<feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="3" stitchTiles="stitch"/>
|
||||
</filter>
|
||||
<rect width="100%" height="100%" filter="url(#n)"/>
|
||||
</svg>
|
||||
</div>
|
||||
|
||||
<!-- Navigation -->
|
||||
<nav class="nav">
|
||||
<a href="#" class="nav-logo">U. ovidiu</a>
|
||||
<div class="nav-links">
|
||||
<a href="#about" class="nav-link">About</a>
|
||||
<a href="#services" class="nav-link">Services</a>
|
||||
<a href="portfolio.html" class="nav-link">Work</a>
|
||||
<a href="#contact" class="nav-link">Contact</a>
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
<!-- Hero -->
|
||||
<header class="hero">
|
||||
<div class="hero-content">
|
||||
<div class="hero-divider"></div>
|
||||
<div class="hero-meta-row">
|
||||
<div class="hero-meta">
|
||||
<span>Web Developer — Peterborough, UK</span>
|
||||
<span>I build web applications that work.</span>
|
||||
<span>Available for freelance</span>
|
||||
</div>
|
||||
<a href="#contact" class="hero-cta-btn">Let's Talk →</a>
|
||||
</div>
|
||||
<h1 class="hero-headline">
|
||||
<span class="line1">CleanCode</span>
|
||||
<span class="line2">Studio</span>
|
||||
</h1>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
<main>
|
||||
|
||||
<!-- About / Manifesto -->
|
||||
<section class="manifesto" id="about">
|
||||
<div class="manifesto-label-col">
|
||||
<span class="section-label">001 — About</span>
|
||||
</div>
|
||||
<div class="manifesto-text-col">
|
||||
<p class="manifesto-text">
|
||||
|
||||
I build websites and online tools for small businesses
|
||||
<span class="hl">— booking systems, customer dashboards</span>.
|
||||
|
||||
<br/>Fast, affordable, and built to last.
|
||||
Built for businesses that need something real.
|
||||
|
||||
</p>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- Services Category Divider -->
|
||||
<div class="category-divider">
|
||||
<h2>Services</h2>
|
||||
</div>
|
||||
|
||||
<!-- Services List -->
|
||||
<section class="services" id="services">
|
||||
|
||||
<div class="service-row">
|
||||
<span class="service-num">(01)</span>
|
||||
<div class="service-body">
|
||||
<h3 class="service-title">Website Design<br>& Development</h3>
|
||||
<div class="service-tags">
|
||||
<span class="service-tag">Design</span>
|
||||
<span class="service-tag">Development</span>
|
||||
<span class="service-tag">Responsive</span>
|
||||
</div>
|
||||
</div>
|
||||
<span class="service-badge">Enquire →</span>
|
||||
</div>
|
||||
|
||||
<div class="service-row service-row--alt">
|
||||
<span class="service-num">(02)</span>
|
||||
<div class="service-body">
|
||||
<h3 class="service-title"><span>Custom Tools<br>& Systems</span></h3>
|
||||
<div class="service-tags">
|
||||
<span class="service-tag">PHP</span>
|
||||
<span class="service-tag">MySQL</span>
|
||||
<span class="service-tag">Custom Builds</span>
|
||||
</div>
|
||||
</div>
|
||||
<span class="service-badge">Enquire →</span>
|
||||
</div>
|
||||
|
||||
<div class="service-row">
|
||||
<span class="service-num">(03)</span>
|
||||
<div class="service-body">
|
||||
<h3 class="service-title">Booking &<br>Scheduling</h3>
|
||||
<div class="service-tags">
|
||||
<span class="service-tag">Bookings</span>
|
||||
<span class="service-tag">Automation</span>
|
||||
<span class="service-tag">Small Business</span>
|
||||
</div>
|
||||
</div>
|
||||
<span class="service-badge">Enquire →</span>
|
||||
</div>
|
||||
|
||||
<div class="service-row service-row--alt">
|
||||
<span class="service-num">(04)</span>
|
||||
<div class="service-body">
|
||||
<h3 class="service-title"><span>Ongoing Support<br>& Updates</span></h3>
|
||||
<div class="service-tags">
|
||||
<span class="service-tag">Maintenance</span>
|
||||
<span class="service-tag">Performance</span>
|
||||
<span class="service-tag">Support</span>
|
||||
</div>
|
||||
</div>
|
||||
<span class="service-badge">Enquire →</span>
|
||||
</div>
|
||||
|
||||
</section>
|
||||
|
||||
<!-- Contact -->
|
||||
<section class="contact-section" id="contact">
|
||||
<div class="contact-inner">
|
||||
<span class="section-label">004 — Contact</span>
|
||||
<h2 class="contact-headline">
|
||||
Got a project<br>
|
||||
<span class="accent">in mind?</span>
|
||||
</h2>
|
||||
<a href="mailto:hello@uovidiu.com" class="contact-email">hello@uovidiu.com</a>
|
||||
<div class="contact-meta">
|
||||
<span>Peterborough, UK</span>
|
||||
<span class="dot">·</span>
|
||||
<span>Available for freelance</span>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
</main>
|
||||
|
||||
<!-- Footer -->
|
||||
<footer class="footer">
|
||||
<div class="footer-grid">
|
||||
|
||||
<div>
|
||||
<h4 class="footer-heading">Studio</h4>
|
||||
<address class="footer-address">
|
||||
Peterborough, UK<br>
|
||||
<a href="mailto:hello@uovidiu.com">hello@uovidiu.com</a>
|
||||
</address>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<h4 class="footer-heading">Navigate</h4>
|
||||
<ul class="footer-links">
|
||||
<li><a href="#about">About</a></li>
|
||||
<li><a href="#services">Services</a></li>
|
||||
<li><a href="/portfolio">Portfolio</a></li>
|
||||
<li><a href="#contact">Contact</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="footer-bottom">
|
||||
<span class="footer-ghost">U. ovidiu</span>
|
||||
<span class="footer-legal">© 2026 Ovidiu Ungureanu</span>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
<script>
|
||||
const nav = document.querySelector('.nav');
|
||||
window.addEventListener('scroll', () => {
|
||||
nav.classList.toggle('nav--scrolled', window.scrollY > 50);
|
||||
}, { passive: true });
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user