/* =====================================================
   LUNA - Cosplayer Template
   カラーテーマ: パステルラベンダー & ミント
   ===================================================== */

:root {
    /* メインカラー */
    --color-primary: #E8B4D4;
    --color-primary-light: #F5D6E8;
    --color-primary-dark: #C991B3;

    /* セカンダリカラー */
    --color-secondary: #98D9C2;
    --color-secondary-light: #C5EBDB;
    --color-secondary-dark: #6BC4A4;

    /* アクセントカラー */
    --color-accent: #B8A9E8;
    --color-accent-light: #D4CBF5;

    /* ベースカラー */
    --color-bg: #FDF8F5;
    --color-bg-alt: #FFF5F8;
    --color-text: #4A4458;
    --color-text-light: #7A7488;
    --color-white: #FFFFFF;

    /* その他 */
    --shadow: 0 4px 20px rgba(232, 180, 212, 0.2);
    --shadow-hover: 0 8px 30px rgba(232, 180, 212, 0.3);
    --radius: 16px;
    --radius-sm: 8px;
    --transition: all 0.3s ease;
}

/* =====================================================
   リセット & ベース
   ===================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Zen Maru Gothic', 'Hiragino Kaku Gothic ProN', sans-serif;
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.8;
    font-size: 16px;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =====================================================
   ヘッダー
   ===================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 20px;
}

.logo img {
    height: 50px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text);
    transition: var(--transition);
}

.nav-list {
    display: flex;
    gap: 32px;
}

.nav-list a {
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.5px;
    color: var(--color-text);
    position: relative;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    transition: var(--transition);
}

.nav-list a:hover::after {
    width: 100%;
}

.header-sns {
    display: flex;
    gap: 12px;
}

.sns-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    font-family: 'Quicksand', sans-serif;
    transition: var(--transition);
}

.sns-btn.x {
    background: var(--color-text);
    color: var(--color-white);
}

.sns-btn.insta {
    background: linear-gradient(135deg, #F58529, #DD2A7B, #8134AF);
    color: var(--color-white);
}

.sns-btn.youtube {
    background: #FF0000;
    color: var(--color-white);
}

.sns-btn:hover {
    transform: scale(1.1);
}

/* =====================================================
   ヒーローセクション
   ===================================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.1) 0%,
        rgba(0, 0, 0, 0) 30%,
        rgba(253, 248, 245, 0.5) 80%,
        var(--color-bg) 100%
    );
}

.hero-content {
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 10;
}

.hero-title {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.title-en {
    font-family: 'Quicksand', sans-serif;
    font-size: 80px;
    font-weight: 700;
    letter-spacing: 8px;
    color: var(--color-white);
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.3);
}

.title-jp {
    font-size: 24px;
    color: var(--color-white);
    text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-family: 'Quicksand', sans-serif;
    font-size: 18px;
    letter-spacing: 4px;
    color: var(--color-white);
    text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.3);
}

.hero-indicators {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.indicator.active {
    background: var(--color-white);
    transform: scale(1.2);
}

/* =====================================================
   バナー
   ===================================================== */
.banners {
    padding: 40px 0;
    background: var(--color-bg);
}

.banner-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.banner-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.banner-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.banner-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.banner-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    background: linear-gradient(to top, rgba(74, 68, 88, 0.9), transparent);
    color: var(--color-white);
    font-weight: 600;
}

/* =====================================================
   セクション共通
   ===================================================== */
.section-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 32px;
    padding-bottom: 12px;
    border-bottom: 3px solid var(--color-primary);
    display: inline-block;
}

.section-title.center {
    display: block;
    text-align: center;
    border-bottom: none;
    position: relative;
}

.section-title.center::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    margin: 12px auto 0;
    border-radius: 2px;
}

.more-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: var(--color-white);
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.more-link:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.more-link.center {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

/* =====================================================
   News & Schedule
   ===================================================== */
.news-schedule {
    padding: 80px 0;
    background: var(--color-bg-alt);
}

.ns-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
}

.ns-news, .ns-schedule {
    background: var(--color-white);
    padding: 32px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.ns-news h2, .ns-schedule h2 {
    font-family: 'Quicksand', sans-serif;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--color-text);
}

.news-list li, .schedule-list li {
    border-bottom: 1px solid var(--color-primary-light);
    padding: 16px 0;
}

.news-list li:last-child, .schedule-list li:last-child {
    border-bottom: none;
}

.news-list a, .schedule-list a {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.news-list time, .schedule-list time {
    font-family: 'Quicksand', sans-serif;
    font-size: 14px;
    color: var(--color-text-light);
    flex-shrink: 0;
    min-width: 80px;
}

.news-list .cat {
    display: inline-block;
    padding: 2px 10px;
    background: var(--color-primary-light);
    color: var(--color-primary-dark);
    font-size: 11px;
    border-radius: 20px;
    flex-shrink: 0;
}

.news-list .title, .schedule-list .title {
    font-weight: 600;
    flex: 1;
}

.news-list a:hover .title, .schedule-list a:hover .title {
    color: var(--color-primary-dark);
}

/* =====================================================
   プロフィール
   ===================================================== */
.profile {
    padding: 80px 0;
}

.profile-content {
    display: flex;
    gap: 60px;
    align-items: center;
    background: var(--color-white);
    padding: 48px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.profile-image {
    flex-shrink: 0;
    width: 300px;
}

.profile-image img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.profile-info {
    flex: 1;
}

.profile-name {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--color-text);
}

.profile-name span {
    font-family: 'Quicksand', sans-serif;
    font-size: 24px;
    color: var(--color-primary-dark);
    margin-left: 12px;
}

.profile-details {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px 24px;
    margin-bottom: 24px;
}

.profile-details dt {
    font-weight: 600;
    color: var(--color-primary-dark);
}

.profile-details dd {
    color: var(--color-text-light);
}

.profile-sns {
    display: flex;
    gap: 12px;
}

.sns-link {
    padding: 10px 20px;
    background: var(--color-primary-light);
    color: var(--color-primary-dark);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
}

.sns-link:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

/* =====================================================
   ギャラリー
   ===================================================== */
.gallery {
    padding: 80px 0;
    background: var(--color-bg-alt);
}

.gallery-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
}

.gallery-track {
    display: flex;
    gap: 16px;
    transition: transform 0.5s ease;
}

.gallery-item {
    flex-shrink: 0;
    width: calc((100% - 32px) / 3);
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-hover);
}

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.gallery-prev,
.gallery-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-white);
    border: none;
    box-shadow: var(--shadow);
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    color: var(--color-primary-dark);
}

.gallery-prev {
    left: 16px;
}

.gallery-next {
    right: 16px;
}

.gallery-prev:hover,
.gallery-next:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

/* =====================================================
   コンテンツセクション
   ===================================================== */
.content-section {
    padding: 80px 0;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.content-item {
    background: var(--color-white);
    padding: 40px 24px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.content-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    background: linear-gradient(135deg, var(--color-primary-light), var(--color-secondary-light));
}

.content-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.content-item h3 {
    font-family: 'Quicksand', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--color-text);
}

.content-item p {
    font-size: 14px;
    color: var(--color-text-light);
}

/* =====================================================
   フッター
   ===================================================== */
.footer {
    background: linear-gradient(135deg, var(--color-text), #3A3548);
    color: var(--color-white);
    padding: 60px 0 32px;
}

.footer-top {
    text-align: center;
    margin-bottom: 40px;
}

.footer-logo img {
    height: 60px;
    margin: 0 auto;
    filter: brightness(0) invert(1);
}

.footer-nav {
    margin-bottom: 40px;
}

.footer-nav ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-nav a {
    font-size: 14px;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-nav a:hover {
    opacity: 1;
    color: var(--color-primary-light);
}

.footer-credit {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-credit p {
    font-size: 13px;
    opacity: 0.7;
    margin-bottom: 8px;
}

.template-credit a {
    color: var(--color-primary-light);
}

.template-credit a:hover {
    text-decoration: underline;
}

/* =====================================================
   レスポンシブ
   ===================================================== */
@media (max-width: 1024px) {
    .profile-content {
        flex-direction: column;
        text-align: center;
    }

    .profile-image {
        width: 250px;
    }

    .profile-details {
        justify-content: center;
    }

    .profile-sns {
        justify-content: center;
    }

    .gallery-item {
        width: calc((100% - 16px) / 2);
    }
}

@media (max-width: 768px) {
    .header-sns {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 74px;
        left: 0;
        right: 0;
        background: var(--color-white);
        padding: 24px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        box-shadow: var(--shadow);
    }

    .nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-list {
        flex-direction: column;
        gap: 16px;
    }

    .title-en {
        font-size: 48px;
    }

    .title-jp {
        font-size: 18px;
    }

    .hero-content {
        bottom: 100px;
    }

    .banner-grid {
        grid-template-columns: 1fr;
    }

    .ns-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .section-title {
        font-size: 24px;
    }

    .content-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-nav ul {
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .gallery-item {
        width: 100%;
    }

    .content-grid {
        grid-template-columns: 1fr;
    }

    .profile-image {
        width: 200px;
    }

    .profile-name {
        font-size: 28px;
    }
}
