/* styles.css */
body { 
    font-family: 'Roboto', 'Noto Sans', sans-serif; 
    background-color: #F5F5DC; 
    color: #000000;
    margin: 0; 
    padding: 0; 
    background-image: linear-gradient(to bottom, #F5F5DC, #E0CDA9); /* Subtle gradient */
}
body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    pointer-events: none;
    z-index: -1;
}
h1, h2, h3 { 
    font-family: 'EB Garamond', 'Noto Sans', serif; 
    color: #8B4513; 
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}
.navbar {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: background-color 0.3s;
}
.navbar:hover {
    background-color: #C4A484 !important;
}
.nav-link {
    color: #5C3317 !important;
    font-weight: bold;
    position: relative;
    transition: color 0.3s;
    margin: 0 0.5rem;
}
.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #8B4513;
    transition: width 0.3s;
}
.nav-link:hover {
    color: #8B4513 !important;
}
.nav-link:hover::after {
    width: 100%;
}
section { 
    padding: 4rem 2rem; 
    scroll-margin-top: 5rem; 
    position: relative; 
    z-index: 1; 
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.section-animate.visible {
    opacity: 1;
    transform: translateY(0);
}
.hero { 
    background: url('https://otavoice.gr/wp-content/uploads/2023/10/377218_281390081961912_525425784_n.jpg') no-repeat center/cover; 
    min-height: 100vh; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    color: white; 
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7); 
    animation: fadeIn 2s forwards; /* Added forwards to keep opacity 1 */
    position: relative;
}
.hero h1, .hero p {
    color: white !important;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.9);
}
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3); /* Overlay for better text visibility */
}
.hero .text-center {
    z-index: 1;
}
@keyframes fadeIn { 
    from { opacity: 0; } 
    to { opacity: 1; } 
}
.greek-motif { 
    border-bottom: 4px solid #8B4513; 
    position: relative; 
}
.greek-motif::after { 
    content: ''; 
    position: absolute; 
    bottom: -4px; 
    left: 0; 
    width: 100%; 
    height: 4px; 
    background: repeating-linear-gradient(90deg, #D2B48C, #D2B48C 20px, transparent 20px, transparent 40px); 
}
.program-card {
    background: white;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
    transition: transform 0.3s, box-shadow 0.3s;
}
.program-card img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 1rem;
}
.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}
.gallery-grid img { 
    width: 100%; 
    max-width: 300px; 
    margin: 1rem; 
    border-radius: 15px; 
    box-shadow: 0 4px 12px rgba(0,0,0,0.15); 
    transition: transform 0.3s, box-shadow 0.3s; 
    cursor: pointer;
}
.gallery-grid img:hover { 
    transform: scale(1.05); 
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}
.testimonial { 
    background: #D2B48C; 
    padding: 1.5rem; 
    margin: 1rem 0; 
    border-radius: 10px; 
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: background 0.3s;
}
.testimonial:hover {
    background: #C4A484;
}
/* Footer Links Hover */
.footer-link {
    transition: color 0.3s ease;
}
.footer-link:hover {
    color: #D2B48C !important;
    text-decoration: underline !important;
}
/* Εφέ Γκαλερί (Απόλυτη Προτεραιότητα) */
.gallery-img {
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
    cursor: pointer !important;
}

.gallery-img:hover {
    transform: scale(1.05) !important; 
    box-shadow: 0 10px 25px rgba(139, 69, 19, 0.4) !important; /* Έβαλα και μια ελαφριά καφέ σκιά για να ταιριάζει με το θέμα! */
    z-index: 10 !important;
    position: relative !important;
}
@media (max-width: 768px) { 
    nav { flex-direction: column; } 
    nav ul { flex-direction: column; } 
    nav .logo-container { margin-top: 1rem; } 
    section { padding: 2rem 1rem; } 
}
.btn-primary { 
    background: #8B4513; 
    border: none; 
    transition: background 0.3s;
}
.btn-primary:hover {
    background: #A0522D;

}
/* Εφέ στα εικονίδια των Social Media */
.social-icon {
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}
.social-icon:hover {
    color: #D2B48C !important;
    transform: scale(1.2); /* Μεγαλώνει ελαφρώς στο hover */
}







