

/* -------------------------------------- */
/* Navigation - Common */
/* -------------------------------------- */



.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    border-radius: 50%;
}

.logo span {
    color: var(--secondary);
}

.logo i {
    margin-right: 0.5rem;
    color: var(--secondary);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center; /* αυτό κεντράρει όλα τα a κατακόρυφα */
}


.nav-links a {
    font-weight: 600;
    position: relative;
    color: var(--primary);
    display: flex;          
    align-items: center;    
    justify-content: center;
    padding: 0 0.5rem;     

}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.cta-button {
    background-color: #fff;
    color: var(--light);
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(239, 35, 60, 0.3);
}

.cta-button:hover {
    background-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(239, 35, 60, 0.4);
}

.mobile-menu-button {
    display: none;
    font-size: 1.5rem;
    color: var(--primary);
    background: none;
    z-index: 1001;
    padding: 12px;
    /* Προστέθηκε από homepage.css */
}



* {
  margin: 0;
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: var(--font-family);
}


h1,
h2,
h3,
h4 {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

button,

input[type="submit"] {
    /* Από homepage.css */
    min-height: 48px;
    /* Από homepage.css */
    min-width: 48px;
    /* Από homepage.css */
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

.container {
    max-width: 1320px;
    margin: 0 auto;
}



.section-title {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 3rem;
    /* Από homepage.css (properties.css είχε 1.5rem) */
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--secondary);
    margin: 1rem auto 0;
}
.lang-switch {
    margin-left: 20px;
    padding: 5px 10px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.lang-switch:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.lang-switch a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 5px 8px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.lang-switch a:hover {
    background-color: #f0f0f0;
    transform: scale(1.1);
}

/* Responsive design για κινητά */
@media (max-width: 768px) {
    .lang-switch {
        margin-left: 15px;
        padding: 4px 8px;
        order: 3; /* Αλλάζει τη σειρά στο mobile */
    }
    
    .lang-switch a {
        padding: 4px 6px;
        font-size: 14px;
    }
    
    .nav-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    
    .lang-switch {
        margin: 10px 0;
    }
}
