

/* Styles for /ελληνια/styles.css */

/* Header Gradient and Navigation Styles */
.header {
    background-image: linear-gradient(45deg, #1e40af, #3b82f6);
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.nav-link {
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.nav-link:hover {
    text-decoration: underline;
    color: #fbbf24;
}

/* Hero Section Enhancements */
.hero {
    background-image: linear-gradient(135deg, #f5f5f5, #e5e7eb);
    padding: 4rem 2rem;
    border-radius: 1.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

/* Card Styling for Consistency */
.card {
    background-color: white;
    border-radius: 1.5rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}

/* Footer Styling */
.footer {
    background-color: #ffffff;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.08);
    padding: 2rem 1rem;
}

/* Buttons and Call-to-Action */
.cta-button {
    background-color: #3b82f6;
    border-radius: 1.25rem;
    padding: 0.875rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #2563eb;
    transform: translateY(-2px);
}

/* Responsive Design Enhancements */
@media (max-width: 768px) {
    .nav-link {
        margin: 0 0.75rem;
    }

    .hero {
        padding: 3rem 1rem;
    }

    .card {
        border-radius: 1rem;
    }
}

/* Additional Typography Styles */
.ellinia-cta {
    color: #2563eb;
    font-weight: 500;
    position: relative;
}

.ellinia-cta::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #3b82f6;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.ellinia-cta:hover::after {
    transform: scaleX(1);
}

/* Gradient Buttons */
.gradient-btn {
    background-image: linear-gradient(to right, #3b82f6, #60a5fa);
    border-radius: 1rem;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.gradient-btn:hover {
    background-image: linear-gradient(to right, #2563eb, #4f46e5);
    box-shadow: 0 4px 20px rgba(75, 89, 237, 0.25);
    transform: scale(1.02);
}

/* Custom Shadows and Bg Gradients */
.section-shadow {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.bg-ellinia-gradient {
    background-image: linear-gradient(135deg, #dbeafe, #bfdbfe, #93c5fd);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
