/* ===== SUPER MINIMALISTIC STYLES ===== */
/* This is now mostly handled by the inline styles, but keep this file for any additional styles */

/* Reset for any remaining styles */
* {
    box-sizing: border-box;
}

/* Utility classes for minimal design */
.text-gradient {
    background: linear-gradient(135deg, var(--peel-primary), var(--peel-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.shadow-lift {
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.shadow-lift:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}


/* Adjust brand title for better proportion */
.brand-title {
    font-size: 36px; /* Slightly larger */
    font-weight: 700;
    color: var(--peel-text);
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
*:focus {
    outline: 2px solid var(--peel-primary);
    outline-offset: 2px;
}

/* Selection color */
::selection {
    background: rgba(255, 179, 71, 0.3);
    color: var(--peel-text);
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--peel-light);
}

::-webkit-scrollbar-thumb {
    background: var(--peel-primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--peel-dark);
}

/* Print styles */
@media print {
    .no-print {
        display: none !important;
    }
}