/* InoSoftTech Custom Styles */

/* Font-Face für Inter (lokal) */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/Inter-Regular.woff2') format('woff2');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('../fonts/Inter-Medium.woff2') format('woff2');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('../fonts/Inter-SemiBold.woff2') format('woff2');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('../fonts/Inter-Bold.woff2') format('woff2');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: url('../fonts/Inter-ExtraBold.woff2') format('woff2');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: url('../fonts/Inter-Black.woff2') format('woff2');
}

/* Basis-Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    color: #374151;
    line-height: 1.6;
}

/* Custom Color Variables */
:root {
    --ino-dark: #0f172a;
    --ino-green: #84cc16;
}

/* Active Navigation Link */
.nav-link {
    position: relative;
    transition: color 0.3s ease;
}

.nav-link.active {
    color: var(--ino-green) !important;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--ino-green);
    border-radius: 2px;
}

/* Mobile Active Link */
.md\:hidden .nav-link.active::after {
    content: none;
}

.md\:hidden .nav-link.active {
    background-color: rgba(132, 204, 22, 0.1);
}

/* Smooth Transitions */
.transition-300 {
    transition: all 0.3s ease;
}

/* Hover Effects */
.hover-lift:hover {
    transform: translateY(-8px);
}

/* Custom Utilities */
.text-ino-dark {
    color: var(--ino-dark);
}

.text-ino-green {
    color: var(--ino-green);
}

.bg-ino-dark {
    background-color: var(--ino-dark);
}

.bg-ino-green {
    background-color: var(--ino-green);
}

.border-ino-green {
    border-color: var(--ino-green);
}

.border-ino-dark {
    border-color: var(--ino-dark);
}

/* Gradient Backgrounds */
.gradient-dark {
    background: linear-gradient(135deg, var(--ino-dark) 0%, #1e293b 50%, var(--ino-dark) 100%);
}

.gradient-green {
    background: linear-gradient(135deg, var(--ino-green) 0%, #65a30d 100%);
}

/* Shadow Utilities */
.shadow-custom {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.shadow-custom-lg {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Responsive Image */
img {
    max-width: 100%;
    height: auto;
}

/* Focus Styles for Accessibility */
a:focus,
button:focus {
    outline: 2px solid var(--ino-green);
    outline-offset: 2px;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: var(--ino-green);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #65a30d;
}
