<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Irish Web Design | Beautiful Websites from the Heart of Ireland</title>
<meta name="description" content="Premium web design & development studio based in Ireland. Clean, fast, and uniquely Irish websites."/>
<!-- Google Fonts - Playfair Display (elegant) + Inter (clean) -->
<link href="https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Inter:wght@300;400;600&display=swap" rel="stylesheet">
<style>
:root {
--dark-green: #1e3329;
--forest-green: #2d4a3d;
--mid-green: #4a7c59;
--light-green: #8bb99f;
--cream: #f8f5e9;
--soft-yellow: #e8e4c9;
--golden: #d4c9a8;
}
* { margin:0; padding:0; box-sizing:border-box; }
body {
font-family: 'Inter', sans-serif;
background: var(--cream);
color: var(--dark-green);
line-height: 1.7;
}
header {
background: var(--dark-green);
color: var(--cream);
padding: 1.5rem 5%;
position: fixed;
width: 100%;
top: 0;
z-index: 1000;
box-shadow: 0 0 4px 15px rgba(0,0,0,0.1);
}
nav {
max-width: 1400px;
margin: 0 auto;
display: flex;
justify-content: space-between;
align-items: center;
}
.logo {
font-family: 'Playfair Display', serif;
font-size: 2rem;
font-weight: 700;
color: var(--cream);
text-decoration: none;
display: flex;
align-items: center;
gap: 10px;
}
.logo svg {
width: 40px;
height: 40px;
fill: var(--cream);
}
nav ul {
display: flex;
list-style: none;
gap: 2.5rem;
}
nav a {
color: var(--cream);
text-decoration: none;
font-weight: 500;
transition: color .3s;
}
nav a:hover { color: var(--light-green); }
.hero {
height: 100vh;
min-height: 700px;
background: linear-gradient(rgba(30,51,41,0.65), rgba(30,51,41,0.75)),
url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1600&auto=format&fit=crop') center/cover no-repeat;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
color: var(--cream);
}
.hero-content {
max-width: 900px;
padding: 2rem;
}
.hero h1 {
font-family: 'Playfair Display', serif;
font-size: 4.5rem;
margin-bottom: 1rem;
line-height: 1.2;
}
.hero p {
font-size: 1.4rem;
margin-bottom: 2.5rem;
opacity: 0.95;
}
.btn {
display: inline-block;
background: var(--light-green);
color: var(--dark-green);
padding: 1rem 2.5rem;
border-radius: 50px;
text-decoration: none;
font-weight: 600;
font-size: 1.1rem;
transition: all .3s;
}
.btn:hover {
background: var(--cream);
transform: translateY(-3px);
box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}
section {
padding: 100px 5%;
max-width: 1400px;
margin: 0 auto;
}
h2 {
font-family: 'Playfair Display', serif;
font-size: 3rem;
text-align: center;
margin-bottom: 3rem;
color: var(--forest-green);
}
.services-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 3rem;
}
.service-card {
background: white;
padding: 2.5rem;
border-radius: 12px;
box-shadow: 0 10px 30px rgba(0,0,0,0.08);
text-align: center;
transition: transform .3s;
}
.service-card:hover {
transform: translateY(-10px);
}
.service-card h3 {
font-family: 'Playfair Display', serif;
font-size: 1.8rem;
margin: 1.5rem 0 1rem;
color: var(--mid-green);
}
footer {
background: var(--dark-green);
color: var(--cream);
text-align: center;
padding: 3rem 5%;
font-size: 0.95rem;
}
@media (max-width: 768px) {
.hero h1 { font-size: 3.2rem; }
nav ul { gap: 1.5rem; }
nav a { font-size: 0.95rem; }
}
</style>
</head>
<body>
<header>
<nav>
<a href="#" class="logo">
<svg viewBox="0 0 24 24"><path d="M12 2 L2 9.5 L12 17 L22 9.5 Z"/></svg>
Irish Web Design
</a>
<ul>
<li><a href="#services">Services</a></li>
<li><a href="#about">About</a></li>
<li><a href="#portfolio">Portfolio</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</header>
<section class="hero">
<div class="hero-content">
<h1>Beautiful Websites<br>Rooted in Ireland</h1>
<p>Crafting clean, fast, and authentic digital experiences for Irish businesses and beyond.</p>
<a href="#contact" class="btn">Start Your Project</a>
</div>
</section>
<section id="services">
<h2>Our Services</h2>
<div class="services-grid">
<div class="service-card">
<h3>Web Design</h3>
<p>Unique, responsive designs that reflect your brand and captivate your audience.</p>
</div>
<div class="service-card">
<h3>Web Development</h3>
<p>Fast, secure, modern code – built with the latest technologies.</p>
</div>
<div class="service-card">
<h3>E-commerce</h3>
<p>Professional branding, logo design, and Irish-inspired visual identity.</p>
</div>
</div>
</section>
<footer>
<p>© 2025 Irish Web Design. Handcrafted with ☘️ in Ireland.</p>
</footer>
</body>
</html>