
@import url('https://fonts.googleapis.com/css2?family=Alegreya:wght@400;500;600;700;800;900&display=swap');
@-webkit-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@-moz-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }



html{
	
}


*{
	-webkit-font-smoothing: antialiased;
    font-synthesis: none;
    text-rendering: optimizeLegibility;
}

::selection {
    background-color: #f3be22;
}





body{
	font-family: "Alegreya", serif !important;
	
	font-weight: 400;
	font-style: normal;
	font-size:100%;
	background-color:#ffffff;
	
	opacity:0;  /* make things invisible upon start */
	-webkit-animation:fadeIn ease-in 1;  /* call our keyframe named fadeIn, use animattion ease-in and repeat it only 1 time */
	-moz-animation:fadeIn ease-in 1;
	animation:fadeIn ease-in 1;
 
	-webkit-animation-fill-mode:forwards;  /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
	-moz-animation-fill-mode:forwards;
	animation-fill-mode:forwards;
 
	-webkit-animation-duration:0.5s;
	-moz-animation-duration:0.5s;
	animation-duration:0.5s;
    
    -webkit-animation-delay: 0.5s;
    -moz-animation-delay: 0.5s;
    animation-delay: 0.5s; 	
}


/* --- 1. GLOBAL RESET (Καθαρίζει τα πάντα) --- */
a {
    text-decoration: none; /* Σβήνει υπογραμμίσεις παντού */
    color: inherit;        /* Παίρνει το χρώμα του κειμένου (όχι μπλε) */
    transition: all 0.3s ease;
}

/* Εξασφαλίζει ότι τα κινητά δεν θα βάλουν δικά τους χρώματα */
a:visited, a:active, a:focus, a:hover {
    color: inherit;
    text-decoration: none;
}

h1{
	color:rgba(0, 0, 0);
	margin-bottom:0.1rem;
}



footer {
    display: block;
}

.footer-text a{
	color: rgba(0, 0, 0);
	text-decoration:none;
		}

.footer-text {
    
    font-size: 1.1rem;
}

.site-header-logo img {
	
	 max-width: 160px;
     max-height: 160px;
}


/* --- 1. NEXT PROJECT LINK (Κεντραρισμένο με Βέλος Δεξιά) --- */
.next-project-link {
    position: relative;
    display: inline-block;
    
    font-family: 'Alegreya', serif;
    font-weight: 500;             /* Η τιμή σου */
    letter-spacing: 0.1em;        /* Η τιμή σου */
    color: #000000 !important;
    text-decoration: none !important;
    border: none !important;
    transition: opacity 0.3s ease;
}

/* Η Κίτρινη Γραμμή (Μόνο στο κείμενο) */
.next-project-link span {
    text-decoration: line-through !important;
    text-decoration-color: #f3be22 !important;
    -webkit-text-decoration-color: #f3be22 !important;
    text-decoration-thickness: 2px !important;
    text-underline-offset: 4px !important;
}

/* Το Βελάκι Δεξιά (Absolute - Δεν σπρώχνει το κέντρο) */
.next-project-link::after {
    content: " \2192";
    position: absolute;
    left: 100%;               /* Ξεκινάει μετά το κείμενο */
    top: 0;
    margin-left: 10px;         /* Η απόσταση που ζήτησες */
    
    color: #000000 !important;
    text-decoration: none !important;
    white-space: nowrap;
}

.next-project-link:hover {
    opacity: 0.8;
}

/* Fix για κινητά Next Link */
.next-project-link:visited, .next-project-link:active, .next-project-link:focus {
    color: #000000 !important;
}


/* --- 2. BACK HOME LINK (Κεντραρισμένο με Βέλος Αριστερά) --- */
.back-home-link {
    position: relative;
    display: inline-block;
    
    font-family: 'Alegreya', serif; /* Alegreya όπως ζήτησες */
    font-weight: 500;             /* Συνοχή με το από πάνω */
    font-size: 1rem;              /* Η τιμή σου */
    color: #6c757d !important;
    text-decoration: none !important;
    text-transform: uppercase;
    letter-spacing: 0.1em;        /* Συνοχή στην απόσταση */
    margin-top: 10px;
    transition: color 0.3s ease;
}

/* Το Βελάκι Αριστερά (Absolute - Δεν σπρώχνει το κέντρο) */
.back-home-link::before {
    content: "\2190 ";
    position: absolute;
    right: 100%;              /* Ξεκινάει πριν το κείμενο */
    top: 0;
    margin-right: 5px;        /* Απόσταση 5px */
    
    color: #6c757d;
    text-decoration: none !important;
    white-space: nowrap;
}

.back-home-link:hover {
    color: #000000 !important;
}

/* Όταν μαυρίζει το κείμενο στο hover, να μαυρίζει και το βελάκι */
.back-home-link:hover::before {
    color: #000000;
}

/* Fix για κινητά Back Link */
.back-home-link:visited, .back-home-link:active, .back-home-link:focus {
    color: #6c757d !important;
}

/* Social Link Styling */
.social-link {
    color: #000 !important;
    text-decoration: none !important;
    font-weight: 500;
    font-size: 1.1rem;
}

/* FIX ΓΙΑ ΤΑ ΚΙΝΗΤΑ (VISITED/ACTIVE) */
.social-link:visited, 
.social-link:active, 
.social-link:focus,
.social-link:link {
    color: #000 !important; /* Παραμένει Μαύρο με το ζόρι */
    text-decoration: none !important;
}

.social-link:hover {
    text-decoration: none !important;
}

/*end of Next Project*/

@media (min-width: 768px) {
    .site-header-logo img {
        max-width: 180px;
        max-height: 180px;
    }

}
