/* Custom animation for logo bounce */
@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}

.animate-bounce-slow {
    animation: bounce 2.5s ease-in-out infinite;
}

/* Fade-in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeIn {
    animation: fadeIn 1.2s ease-out forwards;
}

/* Hover animation for buttons and form container */
.link-hover:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    background: linear-gradient(90deg, #FF4500, #FF8C00);
    color: white;
}

.form-container:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

/* Input focus effect */
.form-input:focus {
    outline: none;
    border-color: #FF4500; /* Changed to orange for brand consistency */
    box-shadow: 0 0 8px rgba(255, 69, 0, 0.5);
    transition: all 0.3s ease;
}

/* Full background image with overlay */
body {
    background-image: url('../image/background.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    min-height: 100vh;
    position: relative;
    font-family: 'Outfit', sans-serif;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Dark overlay for contrast */
    z-index: -1;
}

/* Header underline animation */
.page-header::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #FF4500, #FF8C00);
    transition: width 0.3s ease;
}

.form-container:hover .page-header::after {
    width: 120px;
}

/* Logo link hover effect */
.logo-link:hover {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}
