/* Custom animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-delay {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out 0.2s, transform 0.6s ease-out 0.2s;
}

.fade-in.active, .fade-in-delay.active {
    opacity: 1;
    transform: translateY(0);
}

/* Custom styling */
body {
    overflow-x: hidden;
}

::selection {
    background-color: #D3B88C;
    color: white;
}

/* Focus styles */
input:focus, textarea:focus {
    border-color: #D3B88C;
    outline: none;
    box-shadow: 0 0 0 3px rgba(211, 184, 140, 0.2);
}

/* Button hover effect */
.rounded-full {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rounded-full:hover {
    box-shadow: 0 4px 12px rgba(211, 184, 140, 0.3);
} 