/*
Theme Name: My Custom Theme
Theme URI:  https://example.com
Author:     Το όνομά σου
Description: Ένα custom WordPress theme από scratch.
Version:    1.0.0
License:    GNU General Public License v2
Text Domain: my-custom-theme
*/

/* Κανονικό CSS εδώ */
*, *::before, *::after { box-sizing: border-box; }
body { margin: 0; font-family: system-ui, sans-serif; line-height: 1.6; }

.primary-menu {
    ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    li {
        display: inline-block;
        margin-right: 1rem;
    }
}

