/* Les Benjamins Theme - Minimalist Black & White Design */
:root {
    /* Les Benjamins inspired color palette - Minimalist Black & White */
    --bg-primary: #ffffff;
    --bg-secondary: #fafafa;
    --text-primary: #000000;
    --text-secondary: #666666;
    --border-color: #e5e5e5;
    --accent-color: #000000;
    --accent-hover: #333333;
    --card-bg: #ffffff;
    --shadow: rgba(0, 0, 0, 0.05);
    --success-bg: #f0f0f0;
    --success-text: #000000;
    --error-bg: #f0f0f0;
    --error-text: #000000;
    --gradient-primary: #000000;
    --gradient-secondary: #000000;
    --glass-bg: rgba(255, 255, 255, 1);
    --glass-border: rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] {
    --bg-primary: #000000;
    --bg-secondary: #0a0a0a;
    --text-primary: #ffffff;
    --text-secondary: #999999;
    --border-color: #333333;
    --accent-color: #ffffff;
    --accent-hover: #cccccc;
    --card-bg: #0a0a0a;
    --shadow: rgba(255, 255, 255, 0.05);
    --success-bg: #1a1a1a;
    --success-text: #ffffff;
    --error-bg: #1a1a1a;
    --error-text: #ffffff;
    --gradient-primary: #ffffff;
    --gradient-secondary: #ffffff;
    --glass-bg: rgba(0, 0, 0, 1);
    --glass-border: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

/* Touch-friendly improvements */
button, a, input, select, textarea {
    touch-action: manipulation;
}

body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.5;
    transition: background-color 0.3s, color 0.3s;
    position: relative;
    overflow-x: hidden;
    font-weight: 400;
    letter-spacing: -0.01em;
}

/* Header - Les Benjamins Style */
.header {
    position: sticky;
    top: 0;
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    padding: 0;
    transition: all 0.3s ease;
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo {
    font-family: 'EB Garamond', 'Times New Roman', serif;
    font-size: 18px;
    font-weight: 400;
    text-decoration: none;
    color: var(--text-primary);
    letter-spacing: 0.05em;
    transition: opacity 0.2s ease;
    text-transform: uppercase;
}

.logo:hover {
    opacity: 0.6;
}

/* Navigation Buttons - Minimalist */
.nav-btn {
    background: transparent;
    color: var(--text-primary);
    border: none;
    padding: 0;
    font-size: 12px;
    font-weight: 400;
    text-decoration: none;
    transition: opacity 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.nav-btn:hover {
    opacity: 0.6;
}

/* Form Inputs - Les Benjamins Style */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="search"],
textarea,
select {
    padding: 10px 0;
    border: none;
    border-bottom: 1px solid var(--border-color);
    background: transparent;
    color: var(--text-primary);
    font-size: 12px;
    font-weight: 400;
    font-family: inherit;
    transition: border-color 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    outline: none;
    width: 100%;
}

input::placeholder,
textarea::placeholder {
    color: var(--text-secondary);
    opacity: 0.6;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.1em;
}

input:focus,
textarea:focus,
select:focus {
    border-bottom-color: var(--text-primary);
}

/* Buttons - Les Benjamins Style */
.btn,
button[type="submit"],
input[type="submit"] {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--text-primary);
    padding: 12px 24px;
    border-radius: 0;
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
    font-family: inherit;
}

.btn:hover,
button[type="submit"]:hover,
input[type="submit"]:hover {
    background: var(--text-primary);
    color: var(--bg-primary);
}

.btn-primary {
    background: var(--text-primary);
    color: var(--bg-primary);
}

.btn-primary:hover {
    background: var(--text-secondary);
    border-color: var(--text-secondary);
}

/* Cards - Minimalist */
.card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 0;
    padding: 30px;
    box-shadow: none;
    transition: var(--transition);
}

.card:hover {
    border-color: var(--text-primary);
}

/* Links - Minimalist */
a {
    color: var(--text-primary);
    text-decoration: none;
    transition: opacity 0.2s ease;
}

a:hover {
    opacity: 0.6;
}

/* Headings - Les Benjamins Style */
h1, h2, h3, h4, h5, h6 {
    font-weight: 400;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

h1 {
    font-size: 24px;
}

h2 {
    font-size: 20px;
}

h3 {
    font-size: 16px;
}

/* Containers */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px;
}

/* Responsive */
@media (max-width: 768px) {
    .header-content {
        padding: 0 20px;
        height: 60px;
    }

    .container {
        padding: 40px 20px;
    }

    h1 {
        font-size: 20px;
    }

    h2 {
        font-size: 18px;
    }

    h3 {
        font-size: 14px;
    }
}

