/* === ThomasOXY Custom Styles === */

body {
    background-color: #0e0e0e;
    color: #e2e2e2;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.glass-overlay {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.border-subtle {
    border: 1px solid #282828;
}

.border-hover {
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.card-hover {
    transition: all 200ms ease-out;
}

.card-hover:hover {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
}

/* Mobile menu */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 100;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    font-family: 'Sora', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #e2e2e2;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    transition: color 200ms ease-out;
}

.mobile-menu a:hover {
    color: #EAEA00;
}

/* Flash messages */
.flash {
    padding: 12px 20px;
    margin-bottom: 16px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.flash-success {
    background: rgba(234, 234, 0, 0.1);
    border: 1px solid rgba(234, 234, 0, 0.3);
    color: #EAEA00;
}

.flash-error {
    background: rgba(255, 180, 171, 0.1);
    border: 1px solid rgba(255, 180, 171, 0.3);
    color: #ffb4ab;
}

/* Contact form success/error */
#contact-status {
    transition: opacity 200ms ease-out;
}

/* Admin panel styles */
.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th,
.admin-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid #282828;
}

.admin-table th {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #8e9192;
}

.admin-table tr:hover {
    background: rgba(255, 255, 255, 0.03);
}

.admin-form input,
.admin-form select,
.admin-form textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    padding: 8px 0;
    color: #e2e2e2;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    outline: none;
    transition: border-color 200ms ease-out;
}

.admin-form input:focus,
.admin-form select:focus,
.admin-form textarea:focus {
    border-color: #EAEA00;
}

.admin-form label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #8e9192;
    display: block;
    margin-bottom: 4px;
}

.admin-form select option {
    background: #1f1f1f;
    color: #e2e2e2;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    color: #000000;
    padding: 10px 24px;
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background-color 200ms ease-out;
}

.btn-primary:hover {
    background: #EAEA00;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: #ffffff;
    padding: 10px 24px;
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 200ms ease-out;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-danger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: #ffb4ab;
    padding: 10px 24px;
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid rgba(255, 180, 171, 0.3);
    cursor: pointer;
    transition: all 200ms ease-out;
}

.btn-danger:hover {
    background: rgba(255, 180, 171, 0.1);
}

/* Status badges */
.badge {
    display: inline-block;
    padding: 4px 12px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.badge-available {
    background: rgba(234, 234, 0, 0.15);
    color: #EAEA00;
    border: 1px solid rgba(234, 234, 0, 0.3);
}

.badge-sold-out {
    background: rgba(255, 180, 171, 0.15);
    color: #ffb4ab;
    border: 1px solid rgba(255, 180, 171, 0.3);
}

.badge-cancelled {
    background: rgba(142, 145, 146, 0.15);
    color: #8e9192;
    border: 1px solid rgba(142, 145, 146, 0.3);
}

.badge-unread {
    background: rgba(234, 234, 0, 0.15);
    color: #EAEA00;
    border: 1px solid rgba(234, 234, 0, 0.3);
}

.badge-read {
    background: rgba(142, 145, 146, 0.1);
    color: #8e9192;
    border: 1px solid rgba(142, 145, 146, 0.2);
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}
