/* VELOZEST Premium Kitchen Experience - Tailwind overrides and custom classes */

body {
    background-color: #131410;
    color: #e5e2db;
    -webkit-font-smoothing: antialiased;
}

.ghost-border {
    border: 1px solid rgba(244, 241, 234, 0.1);
}

.champagne-accent {
    border: 1px solid #ffe088;
}

.sienna-btn {
    background-color: #C25E3B;
    transition: transform 0.2s, background-color 0.2s;
}

.sienna-btn:hover {
    background-color: #d16b48;
    transform: scale(1.02);
}

.sienna-btn:active {
    transform: scale(0.98);
}

.editorial-shadow {
    box-shadow: 0 4px 12px rgba(0,0,0,0.6);
}

.vertical-text {
    writing-mode: vertical-rl;
}

/* Base custom form input styles to override default */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
select,
textarea {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(244, 241, 234, 0.4);
    color: #e5e2db;
    border-radius: 0;
    transition: all 0.3s;
}

input:focus,
select:focus,
textarea:focus {
    border-bottom-color: #F4F1EA;
    outline: none;
    box-shadow: none;
}

/* Tailwind configuration is handled in header.php via CDN script block */
