/* Custom variables and typography styles for PalatePort */

/* Configure standard variables and transitions */
:root {
    --color-brand: #1E3F20;
    --color-brand-muted: #4A5B4C;
    --color-terracotta: #D06E4C;
    --color-cream: #FDFBF7;
    --color-cream-dark: #F3EFE6;
    --color-charcoal: #2D312E;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: var(--color-cream);
    color: var(--color-charcoal);
}

/* Custom Serif Headings Font styling */
.font-serif-title {
    font-family: 'Playfair Display', Georgia, serif;
}

/* Smooth zoom-in container classes for food photography card grids */
.hover-zoom-img {
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.hover-zoom-container:hover .hover-zoom-img {
    transform: scale(1.05);
}

/* Modern inputs custom focus styles */
.input-field:focus {
    border-color: var(--color-terracotta);
    box-shadow: 0 0 0 3px rgba(208, 110, 76, 0.15);
}

/* Custom styling for category circle cards */
.circle-category-card {
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.circle-category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgba(30, 63, 32, 0.1), 0 4px 6px -2px rgba(30, 63, 32, 0.05);
}

/* Tab Filter Grid Animations */
.tab-content-active {
    display: grid !important;
    animation: fadeIn 0.4s ease-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
