@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&family=Noto+Serif+JP:wght@300;400;500;700&display=swap');

:root {
    --color-bg: #0a0a0a;
    --color-text: #f5f5f5;
    --color-accent: #d4af37;
    /* Gold */
    --color-accent-light: #f3e5ab;
    --color-surface: #1a1a1a;
    --font-jp: 'Noto Serif JP', serif;
    --font-en: 'Lato', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-jp);
    line-height: 1.8;
    letter-spacing: 0.05em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-en);
    font-weight: 400;
    letter-spacing: 0.1em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-accent);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.admin-link-top {
    position: absolute;
    top: 5px;
    right: 20px;
    z-index: 1001;
}

.admin-link-top a {
    font-size: 0.7rem;
    color: #444;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-family: var(--font-en);
    transition: color 0.3s ease;
}

.admin-link-top a:hover {
    color: var(--color-accent);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-family: var(--font-en);
    color: var(--color-accent);
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    font-size: 0.9rem;
    text-transform: uppercase;
    font-family: var(--font-en);
    letter-spacing: 0.1em;
}

/* Hero */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    text-align: center;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 20px;
    color: var(--color-accent);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    font-weight: 300;
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    border: 1px solid var(--color-accent);
    color: var(--color-accent);
    font-family: var(--font-en);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.9rem;
    transition: all 0.4s ease;
}

.btn:hover {
    background: var(--color-accent);
    color: var(--color-bg);
}

/* Sections */
.section {
    padding: 120px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 80px;
    color: var(--color-accent);
}

/* Stylists */
.stylist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.stylist-card {
    background: var(--color-surface);
    padding: 0;
    text-align: center;
    transition: transform 0.4s ease;
}

.stylist-card:hover {
    transform: translateY(-10px);
}

.stylist-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.4s ease;
}

.stylist-card:hover .stylist-image {
    filter: grayscale(0%);
}

.stylist-info {
    padding: 30px;
}

.stylist-name {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--color-text);
}

.stylist-role {
    font-size: 0.9rem;
    color: var(--color-accent);
    font-family: var(--font-en);
}

/* Footer */
.site-footer {
    padding: 80px 0;
    background: var(--color-surface);
    text-align: center;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.footer-logo {
    font-size: 2rem;
    color: var(--color-accent);
    font-family: var(--font-en);
    margin-bottom: 40px;
    display: inline-block;
}

.footer-info p {
    margin-bottom: 10px;
    color: #888;
}