:root {
    --primary-color: #8D6E63;
    --secondary-color: #D7CCC8;
    --accent-color: #5D4037;
    --text-color: #3E2723;
    --bg-color: #FAF8F5;
    --highlight-bg: #EFEBE9;
    --font-heading: 'Lora', serif;
    --font-body: 'Open Sans', sans-serif;
    --spacing-section: 4rem;
    --shadow-card: 0 4px 12px rgba(0,0,0,0.08);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body { 
    font-family: var(--font-body); 
    color: var(--text-color); 
    background-color: var(--bg-color); 
    line-height: 1.8; 
    overflow-x: hidden; 
}

h1, h2, h3 { 
    font-family: var(--font-heading); 
    color: var(--accent-color); 
    margin-bottom: 1rem; 
    font-weight: 600; 
}

h2 { 
    font-size: 2.2rem; 
    position: relative; 
    display: inline-block; 
}

h2::after { 
    content: ''; 
    display: block; 
    width: 60%; 
    height: 3px; 
    background-color: var(--primary-color); 
    margin: 0.5rem auto 0; 
    border-radius: 2px; 
}

.section-title, .section-subtitle { display: block; text-align: center; width: 100%; }
.section-title { margin-bottom: 0.5rem; }
.section-subtitle { margin-bottom: 2rem; }

.highlight-bg h2::after { background-color: var(--secondary-color); }

p { margin-bottom: 1.2rem; font-size: 1.1rem; }
a { text-decoration: none; color: inherit; transition: color 0.3s ease; }
img { max-width: 100%; height: auto; display: block; border-radius: 8px; }

/* Navbar & Logo */
.navbar { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding: 1rem 5%; 
    background-color: rgba(255, 255, 255, 0.95); 
    position: fixed; 
    width: 100%; 
    top: 0; 
    z-index: 1000; 
    box-shadow: 0 2px 10px rgba(0,0,0,0.05); 
}

.logo { 
    display: flex; 
    align-items: center; 
    gap: 10px; 
    font-family: var(--font-heading); 
    font-size: 1.5rem; 
    font-weight: 700; 
    color: var(--accent-color); 
}

.nav-logo { height: 40px; width: auto; }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a { font-weight: 600; font-size: 1rem; text-transform: uppercase; letter-spacing: 1px; }

/* Hero Section */
.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('images/hero.png');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
}

@media (min-width: 1024px) {
    .hero-section { background-attachment: fixed; }
}

.hero-content {
    max-width: 850px;
    padding: 2rem;
    background: rgba(45, 30, 25, 0.6); 
    border-radius: 4px;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-content h1 {
    color: #FFF;
    font-size: clamp(1.6rem, 5vw, 2.8rem);
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-content p {
    color: #FFF;
    font-size: 1.1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

/* Layout & Grid */
.section-container { padding: var(--spacing-section) 5%; }
.alternate-bg { background-color: var(--highlight-bg); }
.content-wrapper { display: flex; align-items: center; gap: 4rem; max-width: 1200px; margin: 0 auto; }
.reverse-layout { flex-direction: row-reverse; }
.text-block, .image-block { flex: 1; }

.products-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 2rem; 
    margin: 3rem auto 0; 
    max-width: 1200px; 
}

.product-card { 
    background: #FFF; 
    border-radius: 12px; 
    overflow: hidden; 
    box-shadow: var(--shadow-card); 
    text-align: center; 
    padding-bottom: 2rem; 
}

.product-card img { width: 100%; height: 250px; object-fit: cover; border-radius: 0; }
.product-card h3 { margin: 1.5rem 0; color: var(--primary-color); }
.product-card ul { list-style: none; padding: 0 1rem; }
.product-card ul li { padding: 0.3rem 0; font-size: 1rem; color: #666; border-bottom: 1px dashed #eee; }

.section-note { margin-top: 3rem; font-style: italic; color: #777; text-align: center; display: block; }
.highlight-bg { background-color: var(--primary-color); color: white; text-align: center; }

/* --- FOOTER STYLING (ΒΕΛΤΙΩΜΕΝΟ) --- */
footer { 
    background-color: #2D2420; 
    color: #F5F5F5; /* Ανοιχτό κρεμ για καθαρό κείμενο */
    text-align: center; 
    padding: 4rem 5% 1rem; 
}

footer h2, footer h3 { 
    color: #E0C097; /* Ζεστό μπεζ για τους τίτλους */
    margin-bottom: 1.5rem;
}

.contact-details { 
    display: flex; 
    justify-content: center; 
    gap: 3rem; 
    margin: 2rem 0; 
}

/* Social Media Hover Effect */
.social-links a {
    transition: transform 0.3s ease, opacity 0.3s ease;
    display: inline-block;
}

.social-links a:hover {
    transform: scale(1.1);
    opacity: 0.8;
}

.footer-note {
    font-style: italic;
    color: #D7CCC8;
    margin-top: 20px;
    display: block;
}

.copyright {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(215, 204, 200, 0.1);
    font-size: 0.9rem;
    color: #A1887F;
}

/* Animations */
.fade-in, .fade-in-left, .fade-in-right, .fade-in-up { opacity: 0; transition: all 1s ease-out; }
.fade-in.visible, .fade-in-left.visible, .fade-in-right.visible, .fade-in-up.visible { opacity: 1; transform: translate(0); }
.fade-in-left { transform: translateX(-50px); }
.fade-in-right { transform: translateX(50px); }
.fade-in-up { transform: translateY(50px); }

@media (max-width: 768px) {
    .nav-links { display: none; }
    .content-wrapper, .reverse-layout { flex-direction: column; gap: 2rem; }
    .contact-details { flex-direction: column; gap: 1.5rem; }
}