Kezdőlap

/* — Változók és Alapbeállítások — */
:root {
–primary-color: #2e7d32; /* Sötétzöld a természetességért */
–secondary-color: #d32f2f; /* Piros, mint a magyar motívumok */
–bg-color: #fcfcfc;
–text-color: #333333;
}

* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: ‘Segoe UI’, Tahoma, Geneva, Verdana, sans-serif;
}

body {
background-color: var(–bg-color);
color: var(–text-color);
line-height: 1.6;
}

.container {
width: 80%;
margin: auto;
overflow: hidden;
padding: 20px 0;
}

/* — Fejléc és Navigáció — */
header {
background: #fff;
border-bottom: 2px solid var(–primary-color);
}

header .container {
display: flex;
justify-content: space-between;
align-items: center;
}

header h1 {
color: var(–primary-color);
}

header nav ul {
list-style: none;
display: flex;
}

header nav ul li {
margin-left: 20px;
}

header nav ul li a {
text-decoration: none;
color: var(–text-color);
font-weight: bold;
}

header nav ul li a:hover {
color: var(–secondary-color);
}

/* — Hero Szekció — */
.hero {
background-color: #e8f5e9; /* Világoszöld háttér ideiglenesen kép helyett */
text-align: center;
padding: 100px 20px;
border-bottom: 5px solid var(–secondary-color);
}

.hero h2 {
font-size: 3em;
margin-bottom: 20px;
color: var(–primary-color);
}

.hero p {
font-size: 1.2em;
margin-bottom: 30px;
}

.btn {
display: inline-block;
background: var(–secondary-color);
color: #fff;
padding: 10px 20px;
text-decoration: none;
border-radius: 5px;
font-size: 1.1em;
}

.btn:hover {
background: #b71c1c;
}

/* — Termékkategóriák (Grid) — */
.section-title {
text-align: center;
margin-top: 40px;
font-size: 2em;
}

.section-subtitle {
text-align: center;
margin-bottom: 40px;
color: #666;
}

.product-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 20px;
margin-bottom: 40px;
}

.card {
background: #fff;
padding: 20px;
border: 1px solid #ddd;
border-radius: 8px;
text-decoration: none;
color: var(–text-color);
text-align: center;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
transform: translateY(-5px);
box-shadow: 0 5px 15px rgba(0,0,0,0.1);
border-color: var(–primary-color);
}

.card h3 {
color: var(–primary-color);
margin-bottom: 10px;
}

/* — Kapcsolat & Lábléc — */
.contact-section {
background: #fff;
text-align: center;
padding: 50px 0;
border-top: 1px solid #eee;
}

footer {
background: #333;
color: #fff;
text-align: center;
padding: 20px 0;
}