/* Gürkan Bayrak Kuaför – MVC overrides */
:root {
    --primary: #111111;
    --accent: #C8A96A;
    --background: #F9F9F9;
}

html {
    scroll-behavior: smooth;
}

body {
    margin-bottom: 0;
}

/* Nav link underline for active state is handled by JS; hover transition */
header .nav-link {
    transition: color 0.2s ease;
}

/* Ensure dark mode background on html when class="dark" */
.dark body {
    background-color: #0a0a0a;
}

/* Form focus ring to match accent */
input:focus, select:focus, textarea:focus {
    --tw-ring-color: rgba(200, 169, 106, 0.3);
}

/* Rounded inputs */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
select,
textarea {
    border-radius: 9999px;
}
textarea {
    border-radius: 1.5rem;
}
