
/* Custom styles */
/* Hero section styles */
section.flex.items-center.justify-center {
    position: relative;
    background-image: url('/resources/background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

section.flex.items-center.justify-center::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.15);
    z-index: 0;
}

section.flex.items-center.justify-center > div {
    z-index: 1;
    position: relative;
}
.tech-card {
    @apply bg-white p-6 rounded-xl shadow-md flex flex-col items-center justify-center w-40 h-40 transition duration-300 hover:shadow-lg;
}

/* Remove the img element styling since we're using CSS background */
.hero-section img {
    display: none;
}
.tech-card i {
    @apply mb-4;
}
/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}
/* Navbar active link highlight */
.active {
    color: #2563eb !important;
    font-weight: 600 !important;
}
/* Form validation styles */
.error {
    color: #dc2626;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.invalid {
    border-color: #dc2626 !important;
}

#formStatus {
    margin-top: 1rem;
    padding: 0.75rem;
    border-radius: 0.375rem;
    font-weight: 500;
}

#formStatus.success {
    background-color: #dcfce7;
    color: #166534;
}

#formStatus.error {
    background-color: #fee2e2;
    color: #991b1b;
}

button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}
