html {
    scroll-behavior: smooth;
}
.gradient-text {
    background: linear-gradient(90deg, rgb(228, 255, 151), rgb(236, 191, 157), rgb(249, 91, 167),rgb(255, 41, 172));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.gradient-bg {
    background: linear-gradient(135deg, #FF9A8B 0%, #FF6B95 50%, #FF8E53 100%);
}

.alert-success {
    background-color: #d1fae5;
    color: #065f46;
    padding: 1rem;
    border-radius: 0.5rem;
}

.alert-error {
    background-color: #fee2e2;
    color: #b91c1c;
    padding: 1rem;
    border-radius: 0.5rem;
}

.card-hover {
    transition: all 0.3s ease;
    background: rgba(45, 45, 60, 0.7);
    backdrop-filter: blur(10px);
}
.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 154, 139, 0.2);
}
.service-icon {
    background: rgba(255, 154, 139, 0.1);
    border: 1px solid rgba(255, 107, 149, 0.2);
}
.nav-link {
    position: relative;
}
.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background: linear-gradient(90deg, #FF9A8B, #FF6B95);
    transition: width 0.3s ease;
}
.nav-link:hover:after {
    width: 100%;
}
body {
    background-color: #1e1e2e;
    color: #f0f0f5;
}
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background-color: #1e1e2e;
}
.hero-content {
    position: relative;
    z-index: 2;
}
.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    background-image: radial-gradient(circle, #FF9A8B 1px, transparent 1px);
    background-size: 30px 30px;
}
.contact-card {
    position: relative;
    overflow: hidden;
    background: rgba(45, 45, 60, 0.7);
}
.contact-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 154, 139, 0.1) 0%, transparent 70%);
    z-index: 0;
}
.contact-form {
    position: relative;
    z-index: 1;
}
.projects-bg {
    position: relative;
    overflow: hidden;
    background-color: #1e1e2e;
}
.projects-bg::before {
    content: '//veno.design';
    position: absolute;
    left: -100px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 15rem;
    font-weight: bold;
    color: rgba(255, 154, 139, 0.03);
    white-space: nowrap;
    z-index: 0;
    pointer-events: none;
}
.text-primary-pastel {
    color: #FF9A8B;
}
.bg-primary-pastel {
    background-color: #FF9A8B;
}
.border-primary-pastel {
    border-color: #FF9A8B;
}
.form-input {
    padding: 1rem;
    background-color: rgba(30, 30, 46, 0.8);
    border: 1px solid rgba(255, 154, 139, 0.3);
    border-radius: 0.5rem;
    width: 100%;
    color: white;
    transition: all 0.3s ease;
}
.form-input:focus {
    outline: none;
    border-color: #FF9A8B;
    box-shadow: 0 0 0 3px rgba(255, 154, 139, 0.2);
}