/* about.css */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #0f0f0f;
    color: #f5f5f5;
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.9;
}

img {
    width: 100%;
    display: block;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

section {
    padding: 120px 0;
}

/* HERO */

.about-hero {
    position: relative;
    height: 100vh;
    background: url("images/about-hero.jpg") center/cover no-repeat;
    display: flex;
    align-items: center;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.small-title {
    letter-spacing: 4px;
    margin-bottom: 20px;
    color: #b98b5f;
}

.about-hero h1 {
    font-size: 72px;
    line-height: 1.2;
    font-family: 'Cormorant Garamond', serif;
    margin-bottom: 30px;
}

.hero-text {
    font-size: 18px;
    color: #d5d5d5;
}

/* SECTION TITLE */

.section-title {
    margin-bottom: 60px;
}

.section-title span {
    color: #b98b5f;
    letter-spacing: 3px;
    font-size: 14px;
}

.section-title h2 {
    font-size: 42px;
    margin-top: 10px;
    font-family: 'Cormorant Garamond', serif;
}

.center {
    text-align: center;
}

/* ABOUT GRID */

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text p {
    margin-bottom: 25px;
    color: #cfcfcf;
}

.about-image img {
    border-radius: 8px;
}

/* PHILOSOPHY */

.philosophy-section {
    background: #181818;
}

.philosophy-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.philosophy-box {
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: #111;
}

.philosophy-box h3 {
    font-size: 28px;
    margin-bottom: 20px;
    font-family: 'Cormorant Garamond', serif;
}

.philosophy-box p {
    color: #cfcfcf;
}

/* WORKSPACE */

.workspace-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.workspace-text span {
    color: #b98b5f;
    letter-spacing: 3px;
}

.workspace-text h2 {
    font-size: 42px;
    margin: 20px 0 30px;
    font-family: 'Cormorant Garamond', serif;
}

.workspace-text p {
    margin-bottom: 25px;
    color: #d0d0d0;
}

/* CTA */

.about-cta {
    background: #141414;
}

.about-cta h2 {
    font-size: 42px;
    margin-bottom: 40px;
    line-height: 1.6;
    font-family: 'Cormorant Garamond', serif;
}

.instagram-btn {
    display: inline-block;
    padding: 16px 42px;
    border: 1px solid #b98b5f;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.instagram-btn:hover {
    background: #b98b5f;
    color: #111;
}

/* =====================
 HEADER
===================== */

header {
    background: white;
    border-bottom: 1px solid #ddd;
    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    z-index: 1000;
}


.header-inner {

    width: 100%;
    max-width: 1200px;

    margin: auto;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 20px;
}

.lc-logo {

    width: 30%;

    height: auto;

}

header nav {
    display: flex;
    gap: 30px;
}

header nav a {
    font-size: 14px;
    letter-spacing: 2px;
    text-decoration: none;
    color: #333;
    font-family: serif;
}

/* ======================
 animation
====================== */


.fade-up {

    opacity: 0;

    transform: translateY(40px);

    transition:

        opacity 1s ease,

        transform 1s ease;

}


.fade-up.show {

    opacity: 1;

    transform: translateY(0);

}


.delay {

    transition-delay: .3s;

}



/* hero */

.hero-content {

    animation:

        heroFade 1.5s ease forwards;

}



@keyframes heroFade {


    from {

        opacity: 0;

        transform: translateY(30px);

    }


    to {

        opacity: 1;

        transform: translateY(0);

    }


}

/* RESPONSIVE */

@media(max-width:768px) {

    section {
        padding: 80px 0;
    }

    .about-hero h1 {
        font-size: 48px;
    }

    .about-grid,
    .workspace-section .container,
    .philosophy-content {
        grid-template-columns: 1fr;
    }

    .section-title h2,
    .workspace-text h2,
    .about-cta h2 {
        font-size: 32px;
    }

    /*
    -------------------------
    共通
    -------------------------
    */

    body {
        overflow-x: hidden;
    }

    img {
        max-width: 100%;
        display: block;
    }

    .lc-logo {
        width: 40%;
    }

    /*
    -------------------------
    ヘッダー
    -------------------------
    */

    .header-inner {

        width: 100%;

        flex-direction: column;

        align-items: center;

        gap: 20px;

        padding: 20px;
    }

    header nav {

        display: flex;

        flex-wrap: wrap;

        justify-content: center;

        gap: 15px;

    }


    header nav a {

        display: block;

    }

}