:root {
    --primary-color: #d84570; /* Sakura Pink */
    --secondary-color: #121212; /* Deep Black */
    --accent-color: #c5a059; /* Muted Gold */
    --bg-color: #1a1a1a; /* Dark Charcoal */
    --text-color: #e0e0e0;
    --card-bg: #242424;
    --section-padding: 100px 20px;
    --container-width: 1100px;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@300;600;900&family=Outfit:wght@200;400;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--secondary-color);
    color: var(--text-color);
    line-height: 1.8;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Noto Serif JP', serif;
    font-weight: 600;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
header {
    background-color: rgba(18, 18, 18, 0.9);
    backdrop-filter: blur(20px);
    padding: 25px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

h1 {
    font-size: 1.6rem;
    color: var(--accent-color);
    letter-spacing: 4px;
    text-transform: uppercase;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 40px;
}

nav a {
    text-decoration: none;
    color: #999;
    font-weight: 400;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition);
}

nav a:hover {
    color: white;
    text-shadow: 0 0 10px rgba(255,255,255,0.5);
}

/* Hero Section */
.hero {
    height: 85vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.8)), url('images/hero/hero.png') center/cover no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.hero h2 {
    font-size: 4rem;
    margin-bottom: 15px;
    letter-spacing: 12px;
    font-weight: 900;
    text-shadow: 0 5px 30px rgba(0,0,0,0.8);
}

.hero p {
    font-size: 1.1rem;
    font-weight: 200;
    letter-spacing: 4px;
    color: var(--accent-color);
}

/* Sections General */
section {
    padding: var(--section-padding);
    background-color: var(--bg-color);
}

.section-badge {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--accent-color);
    letter-spacing: 5px;
    margin-bottom: 12px;
}

section h3 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 80px;
    color: white;
    font-weight: 300;
}

/* About Section & Philosophy */
.philosophy {
    max-width: 700px;
    margin: 0 auto 80px;
    text-align: center;
    font-size: 1rem;
    color: #bbb;
    line-height: 2.4;
    font-weight: 300;
}

.service-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
}

.service-item {
    background-color: transparent;
    padding: 0;
    text-align: center;
    border: none;
}

.item-icon {
    font-family: 'Noto Serif JP', serif;
    font-size: 0.75rem;
    color: var(--accent-color);
    margin-bottom: 25px;
    letter-spacing: 3px;
    position: relative;
}

.item-icon::after {
    content: '';
    display: block;
    width: 30px;
    height: 1px;
    background: var(--accent-color);
    margin: 10px auto;
}

.service-item h4 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: white;
}

.service-item p {
    color: #888;
    font-size: 0.95rem;
}

/* Gallery Section */
.gallery-section {
    background-color: var(--secondary-color);
    width: 100%;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    width: 100%;
}

.gallery-item {
    transition: var(--transition);
}

.gallery-img-wrap {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 4px;
    filter: brightness(0.7) contrast(1.1);
    transition: var(--transition);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-img-wrap {
    filter: brightness(1) contrast(1);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-caption {
    margin-top: 15px;
    font-size: 0.9rem;
    color: #bbb;
    text-align: center;
    font-family: 'Noto Serif JP', serif;
    letter-spacing: 1px;
}

/* Menu Section */
.menu-section {
    background-color: #151515;
}

#menu-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.menu-card {
    background-color: transparent;
    border: none;
    transition: var(--transition);
}

.menu_image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    filter: grayscale(0.2) brightness(0.8);
    transition: var(--transition);
    border-radius: 2px;
}

.menu-card:hover .menu_image {
    filter: grayscale(0) brightness(1);
    transform: scale(1.02);
}

.menu-content {
    padding: 25px 0;
}

.menu-title {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 10px;
}

.menu-price {
    color: var(--accent-color);
    font-size: 1.1rem;
}

.menu-description {
    font-size: 0.85rem;
    color: #777;
    line-height: 1.8;
}

/* Access Section */
.access-section {
    background-color: var(--bg-color);
}

.access-content {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 60px;
}

.map-container {
    filter: invert(90%) hue-rotate(180deg) brightness(0.9); /* Dark mode map trick */
    opacity: 0.8;
}

.detail-item strong {
    color: var(--accent-color);
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.detail-item p {
    color: #999;
}

/* Contact Section */
.contact {
    background-color: var(--secondary-color);
    border-top: 1px solid rgba(197, 160, 89, 0.1);
}

.contact-card {
    background: transparent;
    border: none;
    box-shadow: none;
}

.contact-intro {
    color: #666;
    font-size: 1rem;
    letter-spacing: 1px;
}

.contact-method .label {
    color: var(--accent-color);
}

.contact-method .value {
    color: white;
    font-size: 2.2rem;
}

/* Shop Details Section */
.details-section {
    background-color: var(--secondary-color);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.detail-row {
    display: flex;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 15px 0;
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-row .label {
    width: 140px;
    flex-shrink: 0;
    color: var(--accent-color);
    font-family: 'Noto Serif JP', serif;
    font-size: 0.9rem;
    font-weight: 600;
}

.detail-row .value {
    color: #bbb;
    font-size: 0.95rem;
    line-height: 1.6;
}

.details-notes {
    max-width: 800px;
    margin: 40px auto 0;
    padding-top: 30px;
    border-top: 1px solid rgba(197, 160, 89, 0.1);
    text-align: center;
}

.details-notes p {
    color: #666;
    font-size: 0.85rem;
    margin-bottom: 5px;
}

/* Footer */
footer {
    padding: 80px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    background-color: var(--secondary-color);
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .gallery-grid { grid-template-columns: 1fr; }
    .access-content { grid-template-columns: 1fr; }
    .gallery-item { height: 300px; }
    .details-grid { grid-template-columns: 1fr; gap: 0; }
}

@media (max-width: 768px) {
    .hero h2 { font-size: 2.5rem; letter-spacing: 5px; }
    .contact-method .value { font-size: 1.6rem; }
    .detail-row { flex-direction: column; gap: 5px; }
    .detail-row .label { width: 100%; }
}
