/* 
  MERGED CSS FILE
  Base: style.css
  Extra overrides: styles.css
*/

/* Reset & base styles */ * { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; background-color: #f7f5f0; color: #333; line-height: 1.6; padding-top: 70px; width: 100%; overflow-x: hidden; } /* Fixed topbar header */ .topbar { display: flex; justify-content: space-between; align-items: center; padding: 1rem 2rem; background-color: #2d3d29; position: fixed; top: 0; width: 100%; height: 70px; z-index: 1000; box-shadow: 0 2px 5px rgba(0,0,0,0.2); } .logo-container { display: flex; align-items: center; } .logo-img { height: 70px; margin-right: 0.6rem; } .logo { font-size: 1.1rem; font-weight: bold; color: #fff; } /* Navigation */ nav ul { list-style: none; display: flex; margin: 0; padding: 0; } nav li { margin-left: 2rem; } nav a { color: #fff; text-decoration: none; font-weight: 500; font-size: 1rem; transition: color 0.3s; } nav a:hover { color: #c7e2b0; } /* Hero section */ .hero{ background: url('olive-character.png') no-repeat center center/cover; min-height: 46vh; width: 100%; display: flex; justify-content: center; align-items: center; position: relative; color: #fff; text-align: center; font-family: 'Dancing Script', cursive; font-size: 3em; /* Προσαρμόζει το μέγεθος της γραμματοσειράς για να φαίνεται καλύτερα */ text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Προσθέτει σκιά για καλύτερη αναγνωσιμότητα */ } .overlay { background-color: rgba(0, 0, 0, 0.4); padding: 2rem; border-radius: 12px; } .about { text-align: center; padding: 4rem 2rem; max-width: 800px; margin: 0 auto; font-family: 'Playfair Display', serif; color: #2d3d29; } .about h3 { font-size: 2.2rem; margin-bottom: 1rem; font-family: 'Great Vibes', cursive; color: #4CAF50; } .about p { font-size: 1.2rem; line-height: 1.8; } /* Shop button */ .shop-btn { background-color: #2d3d29; color: #fff; padding: 0.8rem 1.6rem; text-decoration: none; font-weight: bold; border-radius: 6px; margin-top: 1rem; display: inline-block; } .map-responsive { width: 100%; max-width: 500px; height: auto; margin: 2rem auto; border-radius: 10px; overflow: hidden; } .map-responsive iframe { width: 100%; height: 300px; border: 0; display: block; } /* Main content */ main { width: 100%; max-width: 1200px; margin: 2rem auto; background-color: #ffffff; padding: 30px; border-radius: 12px; box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); } h1 { font-size: 3rem; margin-bottom: 10px; color: #C19292; } h2 { font-size: 1.6rem; color: #444; margin-top: 30px; margin-bottom: 10px; } p { margin-bottom: 15px; font-size: 1rem; } em { color: #777; } /* Images */ figure { margin: 20px 0; text-align: center; } figure img { width: 100%; max-width: 600px; height: auto; border-radius: 8px; } figcaption { font-size: 0.9rem; color: #666; margin-top: 8px; } /* Product grid */ .products { width: 100%; padding: 4rem 2rem; text-align: center; } .product-grid { display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap; } .product { background: #fff; border-radius: 8px; box-shadow: 0 2px 8px rgba(0,0,0,0.1); padding: 1rem; width: 280px; } .product img { width: 100%; border-radius: 8px; } .product a { display: inline-block; margin-top: 0.5rem; text-decoration: none; color: #2d3d29; font-weight: bold; } .price { font-size: 1.4rem; color: #4CAF50; font-weight: bold; margin-bottom: 1.2rem; } .add-to-cart { padding: 10px 20px; background-color: #4CAF50; color: white; font-size: 1rem; border: none; border-radius: 6px; cursor: pointer; transition: background-color 0.2s ease; } .add-to-cart:hover { background-color: #388E3C; } /* Footer */ footer { background-color: #2d3d29; color: white; text-align: center; padding: 2rem; font-size: 0.9rem; } /* Bottom bar for mobile */ .bottombar { position: fixed; bottom: 0; width: 100%; height: 60px; background-color: #2d3d29; display: flex; justify-content: space-evenly; align-items: center; z-index: 999; border-top: 2px solid #444; box-shadow: 0 -2px 5px rgba(0,0,0,0.2); } .bottombar a { color: #fff; text-decoration: none; font-size: 0.9rem; font-weight: 500; display: flex; flex-direction: column; align-items: center; transition: color 0.3s; } .bottombar a:hover { color: #c7e2b0; } /* Responsive rules */ @media (min-width: 769px) { .bottombar { display: none; } } @media (max-width: 480px) { nav ul { overflow-x: auto; white-space: nowrap; } nav li { flex: none; } }

/* ===== Extra / Overrides from styles.css ===== */
body {
  background-color: lightblue;
}
h1 {
  color: navy;
}
p {
  margin-left: 20px;
}/* CSS Document */


