/* Custom styles to complement Tailwind */

html {
    scroll-behavior: smooth;
}

/* Geometric accent shapes */
.geo-circle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.geo-square {
    position: absolute;
    pointer-events: none;
}

/* Smooth scroll offset for fixed nav */
section[id] {
    scroll-margin-top: 80px;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #fffcf8;
}
::-webkit-scrollbar-thumb {
    background: #d65a31;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #c44420;
}

/* Animation classes */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Image aspect ratios */
.img-portrait {
    aspect-ratio: 4/5;
}

/* Form date input styling */
input[type="date"] {
    color-scheme: light;
}
