
/* Global styles for Ελημμμαί */
:root {
    --gradient-primary: linear-gradient(to right, #FFD700, #FFAA1D);
    --gradient-secondary: linear-gradient(to right, #FEC158, #FFB800);
}

/* Gradient text class */
.bg-clip-text {
    background-clip: text;
    -webkit-background-clip: text;
    background-image: var(--gradient-primary);
    color: transparent;
}

/* Hero section heading animation */
.hero-h1 {
    transition: all 0.4s ease;
    font-kerning: normal;
}
.hero-h1:hover {
    transform: scale(1.02);
    box-shadow: 0 0 20px rgba(255, 170, 0, 0.3);
}

/* Card hover effect */
.card-hover:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(225, 180, 0, 0.15) !important;
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.22, 1);
}

/* Button styling enhancements */
.btn-glow {
    transition: all 0.3s ease-in-out;
}
.btn-glow:hover {
    box-shadow: 0 0 15px rgba(255, 200, 40, 0.4);
    transform: translate3d(0, -2px, 0);
}

/* SVG icon enhancements for accessibility */
.icon {
    color: #FFB800;
    transition: color 0.3s ease;
}
.icon:hover {
    color: #FFD700;
}

/* Glassmorphism card overlay */
.card-blur {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Footer styles */
.footer-text {
    font-family: 'Times New Roman', serif;
    letter-spacing: 0.05em;
}

/* Responsive gradients */
@media (max-width: 768px) {
    .bg-clip-text {
        background-image: linear-gradient(to right, #FFB81E, #FFD73A);
    }
}

/* Button pulse animation */
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}
.pulse {
    animation: pulse 2s infinite ease-in-out;
}

/* Scroll indicator */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #fff3cd;
}
::-webkit-scrollbar-thumb {
    background: #fff5dc;
    border-radius: 4px;
}
</style>
