/* Custom styles for veizaj.com */

/* Octopus theme - subtle decorative elements */
.octopus-accent {
    position: relative;
}

.octopus-accent::before {
    content: '🐙';
    opacity: 0.1;
    position: absolute;
    font-size: 8rem;
    top: -2rem;
    right: -2rem;
    z-index: 0;
    pointer-events: none;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar for dark theme */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #0f1a2e;
}

::-webkit-scrollbar-thumb {
    background: #2d4a7a;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #4a6fa5;
}

/* Glassmorphism effect */
.glass {
    background: rgba(30, 58, 95, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Gradient text */
.gradient-text {
    background: linear-gradient(135deg, #4a6fa5 0%, #2d4a7a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hover effects */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(30, 58, 95, 0.3);
}

/* Section spacing */
.section-padding {
    padding: 5rem 0;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 3rem 0;
    }
}
