/*
Theme Name: MyCleanTheme
Theme URI: https://example.com/mycleantheme/
Author: Ο Δημιουργός
Author URI: https://example.com
Description: Ένα καθαρό και μοντέρνο starter theme.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mycleantheme
*/

/* --- ΒΑΣΙΚΟ RESET CSS --- */
*,
*::before,
*::after {
    box-sizing: border-box; /* Κάνει τον υπολογισμό των διαστάσεων πιο προβλέψιμο */
}

/* Αφαιρεί τα προεπιλεγμένα margins */
body, h1, h2, h3, h4, p, figure, blockquote, dl, dd {
    /* margin: 0; */
}

/* Αφαίρεση του style στις λίστες */
ul[role='list'], ol[role='list'] {
    list-style: none;
    padding: 0;
}

/* Ρυθμίζει το μέγεθος της γραμματοσειράς στο body για καλύτερη προσβασιμότητα */
body {
    min-height: 100vh;
    text-rendering: optimizeSpeed;
    line-height: 1.5;
}

/* Εύκολη διαχείριση εικόνων */
img, picture, video, canvas, svg {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Κληρονομεί τις γραμματοσειρές σε φόρμες και κουμπιά */
input, button, textarea, select {
    font: inherit;
}

/* Αφαιρεί animation/transition για χρήστες που το έχουν ζητήσει */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

@media screen and (min-width:768px) {
    body {margin: 0;}
}