<!DOCTYPE html>
<html lang="tr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>El Yapımı Ahşap Mobilyalar</title>
<style>
/* Genel Reset ve Temel Stiller */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
line-height: 1.6;
color: #333;
background-color: #fdfdfd; /* Hafif kirli beyaz */
}
.container {
width: 90%;
max-width: 1200px;
margin: 0 auto;
padding: 20px 0;
}
h1, h2, h3, h4 {
font-weight: 600;
margin-bottom: 15px;
color: #2c3e50;
}
p {
margin-bottom: 10px;
color: #555;
}
a {
text-decoration: none;
color: #8c6b4f; /* Ahşap tonu */
transition: color 0.3s ease;
}
a:hover {
color: #5a422d;
}
img {
max-width: 100%;
height: auto;
display: block;
}
/* Header */
.site-header {
background-color: #ffffff;
padding: 15px 0;
border-bottom: 1px solid #eaeaea;
position: sticky;
top: 0;
z-index: 1000;
box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
.site-header .container {
display: flex;
justify-content: space-between;
align-items: center;
}
.logo-container {
background-color: #ffffff;
padding: 5px;
display: inline-block;
}
.logo {
max-height: 50px;
}
.main-nav ul {
list-style: none;
display: flex;
}
.main-nav ul li {
margin-left: 30px;
}
.main-nav ul li a {
font-size: 16px;
font-weight: 500;
color: #333;
padding-bottom: 5px;
border-bottom: 2px solid transparent;
transition: color 0.3s ease, border-bottom-color 0.3s ease;
}
.main-nav ul li a:hover,
.main-nav ul li a.active {
color: #8c6b4f;
border-bottom: 2px solid #8c6b4f;
}
.menu-toggle {
display: none;
font-size: 24px;
background: none;
border: none;
color: #333;
cursor: pointer;
}
/* Hero Section */
.hero {
background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('https://images.unsplash.com/photo-1555041469-a586c61ea9bc?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxzZWFyY2h8Mnx8ZnVybml0dXJlfGVufDB8fDB8fHww&auto=format&fit=crop&w=1200&q=80') no-repeat center center/cover;
color: #fff;
padding: 120px 0;
text-align: center;
}
.hero h1 {
font-size: 3.2em;
margin-bottom: 20px;
color: #fff;
font-weight: 700;
text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
}
.hero p {
font-size: 1.25em;
margin-bottom: 30px;
color: #f0f0f0;
max-width: 700px;
margin-left: auto;
margin-right: auto;
}
.btn {
display: inline-block;
background-color: #8c6b4f;
color: #fff !important; /* Önemli: Footer linkleriyle çakışmaması için */
padding: 14px 30px;
border-radius: 5px;
font-size: 1.05em;
font-weight: 500;
transition: background-color 0.3s ease, transform 0.3s ease;
border: none;
text-transform: uppercase;
letter-spacing: 0.5px;
}
.btn:hover {
background-color: #5a422d;
transform: translateY(-3px);
box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}
/* Ürünler Bölümü */
.products-section {
padding: 70px 0;
background-color: #fff;
}
.products-section h2 {
text-align: center;
font-size: 2.8em;
margin-bottom: 50px;
}
.product-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 35px;
}
.product-card {
background-color: #ffffff;
border: 1px solid #e0e0e0;
border-radius: 8px;
overflow: hidden;
box-shadow: 0 4px 10px rgba(0,0,0,0.05);
transition: transform 0.3s ease, box-shadow 0.3s ease;
display: flex;
flex-direction: column;
}
.product-card:hover {
transform: translateY(-8px);
box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.product-card img {
width: 100%;
height: 260px;
object-fit: cover;
}
.product-info {
padding: 25px;
flex-grow: 1;
display: flex;
flex-direction: column;
justify-content: space-between;
}
.product-info h3 {
font-size: 1.5em;
margin-bottom: 10px;
}
.product-info p {
font-size: 0.95em;
margin-bottom: 15px;
flex-grow: 1;
}
.product-price {
font-size: 1.3em;
font-weight: bold;
color: #8c6b4f;
margin-bottom: 20px;
}
/* Neden Biz Bölümü */
.why-choose-us-section {
padding: 60px 0;
background-color: #f4f0eb;
}
.why-choose-us-section h2 {
text-align: center;
font-size: 2.5em;
margin-bottom: 40px;
}
.features-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 30px;
text-align: center;
}
.feature-item {
padding: 20px;
}
.feature-item svg { /* SVG ikonlar için yer tutucu */
width: 50px;
height: 50px;
margin-bottom: 15px;
fill: #8c6b4f;
}
.feature-item h3 {
font-size: 1.3em;
margin-bottom: 10px;
}
/* Hakkımızda (Bizim Sanatımız) Bölümü */
.about-section {
padding: 70px 0;
background-color: #ffffff;
}
.about-section .container {
display: flex;
flex-wrap: wrap;
align-items: center;
gap: 50px;
}
.about-content, .about-image {
flex: 1;
min-width: 300px;
}
.about-section h2 {
font-size: 2.5em;
margin-bottom: 20px;
}
.about-section p {
font-size: 1.05em;
margin-bottom: 15px;
}
.about-image img {
border-radius: 8px;
box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}
/* Müşteri Yorumları Bölümü */
.testimonials-section {
padding: 60px 0;
background-color: #f9f9f9;
}
.testimonials-section h2 {
text-align: center;
font-size: 2.5em;
margin-bottom: 40px;
}
.testimonial-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
}
.testimonial-card {
background-color: #fff;
padding: 25px;
border-radius: 8px;
box-shadow: 0 5px 15px rgba(0,0,0,0.07);
border-left: 5px solid #8c6b4f;
}
.testimonial-card p.quote {
font-style: italic;
margin-bottom: 15px;
color: #555;
}
.testimonial-card p.author {
font-weight: bold;
text-align: right;
color: #333;
}
/* İletişim Bölümü */
.contact-section {
padding: 70px 0;
background-color: #eef1f3; /* Daha yumuşak bir arka plan */
}
.contact-section h2 {
text-align: center;
font-size: 2.8em;
margin-bottom: 20px;
}
.contact-section .subtitle {
text-align: center;
font-size: 1.1em;
color: #555;
margin-bottom: 40px;
max-width: 600px;
margin-left: auto;
margin-right: auto;
}
.contact-form-container {
max-width: 700px;
margin: 0 auto;
background-color: #ffffff;
padding: 40px;
border-radius: 8px;
box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}
.form-group {
margin-bottom: 20px;
}
.form-group label {
display: block;
margin-bottom: 8px;
font-weight: 500;
color: #444;
}
.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
width: 100%;
padding: 12px 15px;
border: 1px solid #ccc;
border-radius: 5px;
font-size: 1em;
transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group textarea:focus {
border-color: #8c6b4f;
box-shadow: 0 0 0 2px rgba(140, 107, 79, 0.2);
outline: none;
}
.form-group textarea {
min-height: 120px;
resize: vertical;
}
.contact-form-container .btn {
display: block;
width: auto;
margin: 20px auto 0 auto;
padding: 14px 35px;
}
/* Footer */
.site-footer {
background-color: #2c3e50;
color: #bdc3c7; /* Daha açık gri */
padding: 50px 0 30px 0;
margin-top: 40px;
}
.footer-content {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 30px;
margin-bottom: 30px;
text-align: left;
}
.footer-section h4 {
color: #ecf0f1;
margin-bottom: 15px;
font-size: 1.2em;
}
.footer-section p, .footer-section ul li {
margin-bottom: 8px;
font-size: 0.95em;
}
.footer-section ul {
list-style: none;
}
.footer-section ul li a {
color: #bdc3c7;
transition: color 0.3s ease, padding-left 0.3s ease;
}
.footer-section ul li a:hover {
color: #ffffff;
padding-left: 5px;
}
.footer-section .contact-info p i { /* İkonlar için yer tutucu */
margin-right: 8px;
color: #8c6b4f;
}
.footer-bottom {
text-align: center;
padding-top: 20px;
border-top: 1px solid #3e5062;
font-size: 0.9em;
color: #95a5a6;
}
/* Responsive Tasarım */
@media (max-width: 992px) {
.product-grid {
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
}
@media (max-width: 768px) {
.site-header .container {
flex-direction: column;
}
.logo-container {
margin-bottom: 15px;
}
.main-nav {
width: 100%;
display: none;
}
.main-nav.active {
display: block;
}
.main-nav ul {
flex-direction: column;
text-align: center;
width: 100%;
}
.main-nav ul li {
margin: 12px 0;
}
.menu-toggle {
display: block;
position: absolute;
top: 25px;
right: 25px;
}
.hero h1 {
font-size: 2.5em;
}
.hero p {
font-size: 1.1em;
}
.products-section h2, .about-section h2, .testimonials-section h2, .contact-section h2, .why-choose-us-section h2 {
font-size: 2.2em;
}
.product-grid, .features-grid, .testimonial-grid {
grid-template-columns: 1fr;
}
.about-section .container {
flex-direction: column;
}
.footer-content {
text-align: center;
}
.footer-section {
margin-bottom: 20px;
}
}
@media (max-width: 480px) {
.hero h1 {
font-size: 2em;
}
.btn {
padding: 12px 25px;
font-size: 0.95em;
}
.products-section h2, .about-section h2, .testimonials-section h2, .contact-section h2, .why-choose-us-section h2 {
font-size: 1.9em;
}
.product-info h3 {
font-size: 1.3em;
}
.contact-form-container {
padding: 25px;
}
}
</style>
</head>
<body>
<header class="site-header">
<div class="container">
<div class="logo-container">
<a href="#">
<img src="https://bwoodworks.com.au/cdn/shop/files/bwwg-logo-rgb-hires-black_280x@2x.png" alt="El Yapımı Ahşap Mobilyalar Logo" class="logo">
</a>
</div>
<button class="menu-toggle" aria-label="Menüyü Aç/Kapat" aria-expanded="false">☰</button>
<nav class="main-nav">
<ul>
<li><a href="#" class="active">Ana Sayfa</a></li>
<li><a href="#urunler">Ürünler</a></li>
<li><a href="#hakkimizda">Hakkımızda</a></li>
<li><a href="#yorumlar">Müşteri Yorumları</a></li>
<li><a href="#iletisim">İletişim</a></li>
</ul>
</nav>
</div>
</header>
<section class="hero">
<div class="container">
<h1>Sanat ve Doğallığın Buluştuğu Mobilyalar</h1>
<p>Her biri özenle, ustalıkla ve sevgiyle üretilmiş el yapımı ahşap mobilyalarla yaşam alanlarınıza değer katın.</p>
<a href="#urunler" class="btn">Koleksiyonu Keşfet</a>
</div>
</section>
<section class="why-choose-us-section">
<div class="container">
<h2>Neden Bizi Tercih Etmelisiniz?</h2>
<div class="features-grid">
<div class="feature-item">
<svg viewBox="0 0 24 24"><path d="M20.71,7.04C21.1,6.65 21.1,6 20.71,5.63L18.37,3.29C18,2.9 17.35,2.9 16.96,3.29L15.13,5.12L18.88,8.87M3,17.25V21H6.75L17.81,9.94L14.06,6.19L3,17.25Z" /></svg>
<h3>El İşçiliği Ustalığı</h3>
<p>Her detayda özen ve ustalıkla üretilmiş, eşsiz mobilyalar.</p>
</div>
<div class="feature-item">
<svg viewBox="0 0 24 24"><path d="M12,17.27L18.18,21L16.54,13.97L22,9.24L14.81,8.62L12,2L9.19,8.62L2,9.24L7.45,13.97L5.82,21L12,17.27Z" /></svg>
<h3>Kaliteli Malzemeler</h3>
<p>Sadece en iyi ve sürdürülebilir kaynaklardan elde edilen ahşaplar kullanılır.</p>
</div>
<div class="feature-item">
<svg viewBox="0 0 24 24"><path d="M19,3H5A2,2 0 0,0 3,5V19A2,2 0 0,0 5,21H19A2,2 0 0,0 21,19V5A2,2 0 0,0 19,3M19,5V12H16.75L17.95,9.6C17.2,8.5 16.08,7.83 14.82,7.83C13,7.83 11.5,9.04 11.07,10.59H19V5M5,5H10.07C10.5,6.55 12,7.75 13.75,7.75C14.33,7.75 14.89,7.63 15.39,7.41L13.19,12H5V5M5,19V13H9.25L8.05,15.4C8.8,16.5 9.92,17.17 11.18,17.17C13,17.17 14.5,15.96 14.93,14.41H5V19Z" /></svg>
<h3>Özel Tasarım İmkanı</h3>
<p>Hayalinizdeki mobilyayı sizin için özel olarak tasarlayıp üretiyoruz.</p>
</div>
</div>
</div>
</section>
<section id="urunler" class="products-section">
<div class="container">
<h2>Özel Tasarımlarımız</h2>
<div class="product-grid">
<div class="product-card">
<img src="https://images.unsplash.com/photo-1505691938895-1758d7feb511?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxzZWFyY2h8NHx8d29vZCUyMGZ1cm5pdHVyZXxlbnwwfHwwfHx8MA&auto=format&fit=crop&w=500&q=60" alt="Ahşap Sandalye">
<div class="product-info">
<h3>Rustik Meşe Sandalye</h3>
<p>Doğal meşe ağacından el yapımı, konforlu ve şık tasarım.</p>
<p class="product-price">1.250 TL</p>
<a href="#" class="btn">Detayları Gör</a>
</div>
</div>
<div class="product-card">
<img src="https://images.unsplash.com/photo-1604079628040-94301bb21b91?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxzZWFyY2h8MTF8fHdhbG51dCUyMGRpbmluZyUyMHRhYmxlfGVufDB8fDB8fHww&auto=format&fit=crop&w=500&q=60" alt="Ceviz Yemek Masası Güncel">
<div class="product-info">
<h3>Ceviz Yemek Masası</h3>
<p>Geniş aileler için ideal, masif cevizden üretilmiş dayanıklı masa.</p>
<p class="product-price">4.800 TL</p>
<a href="#" class="btn">Detayları Gör</a>
</div>
</div>
<div class="product-card">
<img src="https://images.unsplash.com/photo-1618220179428-22790b461013?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxzZWFyY2h8MTJ8fHdvb2QlMjBmdXJuaXR1cmV8ZW58MHx8MHx8fDA&auto=format&fit=crop&w=500&q=60" alt="Ahşap Kitaplık">
<div class="product-info">
<h3>Modern Çam Kitaplık</h3>
<p>Minimalist tasarımıyla evinize modern bir dokunuş katacak kitaplık.</p>
<p class="product-price">2.100 TL</p>
<a href="#" class="btn">Detayları Gör</a>
</div>
</div>
<div class="product-card">
<img src="https://images.unsplash.com/photo-1540932239986-30128078f3c5?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxzZWFyY2h8MTV8fHdvb2QlMjBmdXJuaXR1cmV8ZW58MHx8MHx8fDA&auto=format&fit=crop&w=500&q=60" alt="Ahşap Komodin">
<div class="product-info">
<h3>Vintage Tarz Komodin</h3>
<p>El oyması detaylarıyla yatak odanıza nostaljik bir hava katın.</p>
<p class="product-price">1.750 TL</p>
<a href="#" class="btn">Detayları Gör</a>
</div>
</div>
<div class="product-card">
<img src="https://images.unsplash.com/photo-1544093120-52793369d09b?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxzZWFyY2h8Nnx8d29vZGVuJTIwY29mZmVlJTIwdGFibGV8ZW58MHx8MHx8fDA%3D&auto=format&fit=crop&w=500&q=60" alt="Ahşap Kahve Sehpası">
<div class="product-info">
<h3>Ahşap Kahve Sehpası</h3>
<p>Oturma odanız için şık ve kullanışlı, masif ahşap orta sehpa.</p>
<p class="product-price">1.900 TL</p>
<a href="#" class="btn">Detayları Gör</a>
</div>
</div>
<div class="product-card">
<img src="https://images.unsplash.com/photo-1594851140213-76e25659c061?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxzZWFyY2h8M3x8d29vZGVuJTIwc2hlbGZ8ZW58MHx8MHx8fDA%3D&auto=format&fit=crop&w=500&q=60" alt="Masif Ahşap Raf Ünitesi">
<div class="product-info">
<h3>Masif Ahşap Raf Ünitesi</h3>
<p>Kitaplarınız ve dekoratif objeleriniz için doğal ve sağlam raf sistemi.</p>
<p class="product-price">2.650 TL</p>
<a href="#" class="btn">Detayları Gör</a>
</div>
</div>
</div>
</div>
</section>
<section id="hakkimizda" class="about-section">
<div class="container">
<div class="about-content">
<h2>Bizim Sanatımız, Sizin Yaşamınız</h2>
<p>Yılların deneyimi ve ahşaba olan tutkumuzla, her biri bir sanat eseri niteliğinde mobilyalar üretiyoruz. Kullandığımız her ahşap parçasını özenle seçiyor, geleneksel yöntemleri modern tasarımlarla birleştiriyoruz.</p>
<p>Amacımız sadece mobilya üretmek değil, aynı zamanda yaşam alanlarınıza sıcaklık, karakter ve kalıcı bir değer katmaktır. Sürdürülebilir kaynaklardan elde edilen malzemelerle doğaya saygılı üretim yapıyoruz.</p>
<a href="#" class="btn">Hikayemizi Okuyun</a>
</div>
<div class="about-image">
<img src="https://images.unsplash.com/photo-1600121848594-d8644e57abab?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxzZWFyY2h8Nnx8Y2FycGVudGVyfGVufDB8fDB8fHww&auto=format&fit=crop&w=800&q=80" alt="El yapımı mobilya ustası">
</div>
</div>
</section>
<section id="yorumlar" class="testimonials-section">
<div class="container">
<h2>Müşterilerimiz Ne Diyor?</h2>
<div class="testimonial-grid">
<div class="testimonial-card">
<p class="quote">"Aldığım yemek masası tam hayal ettiğim gibiydi. Kalitesi ve işçiliği harika. Teşekkürler!"</p>
<p class="author">- Ayşe K.</p>
</div>
<div class="testimonial-card">
<p class="quote">"Özel tasarım kitaplığım için çok yardımcı oldular. Sonuçtan çok memnunum, herkese tavsiye ederim."</p>
<p class="author">- Mehmet T.</p>
</div>
<div class="testimonial-card">
<p class="quote">"Hem şık hem de çok sağlam mobilyalar. Evime bambaşka bir hava kattı."</p>
<p class="author">- Zeynep S.</p>
</div>
</div>
</div>
</section>
<section id="iletisim" class="contact-section">
<div class="container">
<h2>Bize Ulaşın</h2>
<p class="subtitle">Özel siparişleriniz, sorularınız veya iş birliği talepleriniz için aşağıdaki formu doldurarak bizimle iletişime geçebilirsiniz.</p>
<div class="contact-form-container">
<form action="#" method="POST"> <div class="form-group">
<label for="name">Adınız Soyadınız:</label>
<input type="text" id="name" name="name" required>
</div>
<div class="form-group">
<label for="email">E-posta Adresiniz:</label>
<input type="email" id="email" name="email" required>
</div>
<div class="form-group">
<label for="subject">Konu:</label>
<input type="text" id="subject" name="subject">
</div>
<div class="form-group">
<label for="message">Mesajınız:</label>
<textarea id="message" name="message" rows="5" required></textarea>
</div>
<button type="submit" class="btn">Mesajı Gönder</button>
</form>
</div>
</div>
</section>
<footer class="site-footer">
<div class="container">
<div class="footer-content">
<div class="footer-section about-brief">
<h4>El Yapımı Ahşap</h4>
<p>Doğadan ilham alarak, her biri özenle tasarlanmış ve ustalıkla üretilmiş el yapımı ahşap mobilyalarla yaşam alanlarınıza değer katıyoruz.</p>
</div>
<div class="footer-section links">
<h4>Hızlı Erişim</h4>
<ul>
<li><a href="#">Ana Sayfa</a></li>
<li><a href="#urunler">Ürünlerimiz</a></li>
<li><a href="#hakkimizda">Hakkımızda</a></li>
<li><a href="#yorumlar">Müşteri Yorumları</a></li>
<li><a href="#iletisim">İletişim</a></li>
<li><a href="#">S.S.S.</a></li>
</ul>
</div>
<div class="footer-section contact-info-footer">
<h4>İletişim Bilgileri</h4>
<p><i class="icon-mail"></i>Email: bilgi@elyapimiahsap.com</p>
<p><i class="icon-phone"></i>Telefon: +90 555 123 45 67</p>
<p><i class="icon-location"></i>Adres: Ahşap Sanatkarları Sok. No:12, İstanbul</p>
</div>
</div>
<div class="footer-bottom">
© <span id="currentYear"></span> El Yapımı Ahşap Mobilyalar. Tüm Hakları Saklıdır.
</div>
</div>
</footer>
<script>
// Mobil Menü Toggle
const menuToggle = document.querySelector('.menu-toggle');
const mainNav = document.querySelector('.main-nav');
menuToggle.addEventListener('click', () => {
const isExpanded = menuToggle.getAttribute('aria-expanded') === 'true' || false;
menuToggle.setAttribute('aria-expanded', !isExpanded);
mainNav.classList.toggle('active');
});
// Aktif Menü Öğesini Ayarlama ve Mobil Menüyü Kapatma
const navLinks = document.querySelectorAll('.main-nav ul li a');
navLinks.forEach(link => {
link.addEventListener('click', function() {
navLinks.forEach(nav => nav.classList.remove('active'));
this.classList.add('active');
if (mainNav.classList.contains('active')) {
mainNav.classList.remove('active');
menuToggle.setAttribute('aria-expanded', 'false');
}
});
});
document.getElementById('currentYear').textContent = new Date().getFullYear();
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
const href = this.getAttribute('href');
if (href === '#') {
e.preventDefault();
window.scrollTo({ top: 0, behavior: 'smooth' });
return;
}
const targetElement = document.querySelector(href);
if (targetElement) {
e.preventDefault();
// Header yüksekliğini hesaba katmak için (eğer sticky ise)
const headerOffset = document.querySelector('.site-header') ? document.querySelector('.site-header').offsetHeight : 0;
const elementPosition = targetElement.getBoundingClientRect().top + window.pageYOffset;
const offsetPosition = elementPosition - headerOffset - 15; // 15px ek boşluk
window.scrollTo({
top: offsetPosition,
behavior: 'smooth'
});
}
});
});
</script>
</body>
</html>