/*
Theme Name: Daylu Original Theme
Author: Assistant
Description: Custom theme for Daylu Hair Salon.
Version: 1.0.0
Text Domain: daylu
*/

:root {
    --color-bg-body: #faf9f6;
    --color-bg-white: #ffffff;
    --color-text-main: #4a4a4a;
    --color-text-light: #888888;
    --color-accent: #c4a993;
    --color-accent-light: #efebe7;
    --font-main: 'Noto Sans JP', sans-serif;
    --width-container: 1000px;
    --radius-card: 16px;
    --spacing-section: 100px;
    --spacing-section-mobile: 60px;
}

/* Reset & Base */
*,
*::before,
*::after {
    box_sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-main);
    color: var(--color-text-main);
    background-color: var(--color-bg-body);
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
    font-size: 16px;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

a:hover {
    opacity: 0.8;
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: var(--width-container);
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.section-title {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--color-accent);
    letter-spacing: 0.15em;
    font-weight: 300;
    text-transform: uppercase;
}

.btn-primary {
    display: inline-block;
    background-color: var(--color-accent);
    color: #fff;
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-align: center;
    border: 1px solid var(--color-accent);
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(196, 169, 147, 0.4);
}

.btn-primary:hover {
    background-color: #fff;
    color: var(--color-accent);
}

.btn-outline {
    display: inline-block;
    background-color: transparent;
    color: var(--color-accent);
    padding: 12px 35px;
    border-radius: 50px;
    border: 1px solid var(--color-accent);
    font-weight: 500;
}

.btn-outline:hover {
    background-color: var(--color-accent);
    color: #fff;
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    z-index: 1000;
    box-shadow: 0 1px 15px rgba(0, 0, 0, 0.03);
}

.site-logo {
    font-size: 26px;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: var(--color-text-main);
}

.main-navigation ul {
    display: flex;
    gap: 40px;
    align-items: center;
}

.main-navigation a {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.header-cta {
    background-color: var(--color-accent);
    color: #fff;
    padding: 10px 25px;
    font-size: 0.85rem;
    border-radius: 4px;
}

.header-cta:hover {
    background-color: #b0917a;
    opacity: 1;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 90vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    background-color: #ddd;
    /* Fallback */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
}

.hero-content {
    position: relative;
    z-index: 1;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-catch {
    font-size: 3rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 40px;
    letter-spacing: 0.08em;
}

/* Concept Section */
.section-concept {
    padding: var(--spacing-section) 0;
}

.concept-inner {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.concept-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 500;
}

.concept-lead {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 40px;
    line-height: 1.8;
}

.concept-body {
    text-align: left;
    font-size: 1rem;
    margin-top: 30px;
}

/* Menu Section */
.section-menu {
    padding: var(--spacing-section) 0;
    background-color: var(--color-bg-white);
}

.menu-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
    gap: 30px;
}

.menu-item {
    padding-bottom: 20px;
    border-bottom: 1px dotted #ddd;
}

.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 10px;
}

.menu-name {
    font-size: 1.2rem;
    font-weight: 500;
}

.menu-price {
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--color-accent);
}

.menu-desc {
    font-size: 0.9rem;
    color: var(--color-text-light);
}

/* Gallery Section */
.section-gallery {
    padding: var(--spacing-section) 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.gallery-item {
    background: #fff;
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-images {
    aspect-ratio: 1 / 1.2;
    overflow: hidden;
    background: #f0f0f0;
}

.gallery-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-title {
    padding: 15px;
    text-align: center;
    font-size: 0.95rem;
    font-weight: 500;
}

/* Voice Section */
.section-voice {
    padding: var(--spacing-section) 0;
    background-color: var(--color-accent-light);
}

.voice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.voice-card {
    background: #fff;
    padding: 30px;
    border-radius: var(--radius-card);
    position: relative;
}

.voice-card::before {
    content: '“';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 80px;
    color: var(--color-accent-light);
    font-family: serif;
    opacity: 0.5;
}

.voice-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: var(--color-text-light);
}

.voice-rating {
    color: #e6b422;
}

.voice-name {
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.voice-content {
    font-size: 0.95rem;
    line-height: 1.8;
}

/* Staff Section */
.section-staff {
    padding: var(--spacing-section) 0;
}

.staff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 40px;
}

.staff-card {
    text-align: center;
}

.staff-thumb {
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    background: #ddd;
}

.staff-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.staff-name {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.staff-pos {
    font-size: 0.9rem;
    font-weight: normal;
    color: var(--color-text-light);
    margin-left: 10px;
}

.staff-skill {
    font-size: 0.95rem;
    margin-bottom: 10px;
    color: var(--color-accent);
}

.staff-msg {
    font-size: 0.9rem;
    text-align: left;
}

/* Access Section */
.section-access {
    padding: var(--spacing-section) 0;
    background-color: var(--color-bg-white);
}

.access-inner {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.access-map {
    flex: 1;
    border-radius: var(--radius-card);
    overflow: hidden;
    min-height: 400px;
}

.access-map iframe {
    width: 100% !important;
    height: 100% !important;
    min-height: 400px;
}

.access-info {
    flex: 1;
}

.access-info h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.access-info dl {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 15px 0;
    font-size: 0.95rem;
}

.access-info dt {
    font-weight: bold;
    color: var(--color-accent);
}

/* Footer style update */
.site-footer {
    padding-bottom: 100px;
    /* Space for sticky footer on mobile usually */
}

/* Responsive */
@media (max-width: 900px) {
    .menu-list {
        grid-template-columns: 1fr;
    }

    .access-inner {
        flex-direction: column;
    }

    .access-map {
        width: 100%;
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    :root {
        --spacing-section: 60px;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .site-header {
        padding: 0 20px;
        height: 60px;
    }

    .main-navigation {
        display: none;
        /* In production: Implement Hamburger Menu */
    }

    /* Simple sticky footer for mobile conversion */
    .mobile-sticky-footer {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: var(--color-accent);
        padding: 15px;
        text-align: center;
        z-index: 9999;
        display: flex;
        justify-content: center;
        gap: 20px;
    }

    .mobile-sticky-footer a {
        color: #fff;
        font-weight: bold;
    }

    .hero-catch {
        font-size: 2rem;
        padding: 0 20px;
    }

    .container {
        padding: 0 20px;
    }

    .access-info dl {
        grid-template-columns: 80px 1fr;
    }
}