/**
 * MORG Studio Page - Styles
 * EVERTONEスタイル準拠
 */

/* ========================================
   Hero Section
   ======================================== */
.studio-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.8) 100%),
                url('../../images/equipment/neve-rack.jpg') center/cover no-repeat;
    border-bottom: 1px solid rgba(255, 102, 0, 0.3);
}

.studio-hero .hero-content {
    text-align: center;
    z-index: 1;
    max-width: 800px;
    padding: 0 2rem;
}

.studio-hero h1 {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 4rem;
    font-weight: 300;
    letter-spacing: 0.3em;
    margin-bottom: 0.5rem;
}

.studio-hero .subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.2em;
    margin-bottom: 2rem;
}

.studio-hero .hero-lead {
    font-size: 1rem;
    line-height: 2.2;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 2rem;
}

/* ========================================
   Studio Container
   ======================================== */
.studio-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

/* ========================================
   Studio Section
   ======================================== */
.studio-section {
    margin-bottom: 5rem;
}

.section-header {
    margin-bottom: 2.5rem;
    padding: 1rem 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    display: inline-block;
}

.section-header h2 {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 0.15em;
    margin-bottom: 0.3rem;
}

.section-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.1em;
}

/* ========================================
   Features Section
   ======================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 1rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    border-color: rgba(255, 102, 0, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.feature-item.highlight {
    border-color: rgba(255, 102, 0, 0.4);
    background: rgba(255, 102, 0, 0.08);
}

.feature-number {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 300;
    color: #FF6600;
    flex-shrink: 0;
    width: 40px;
}

.feature-item p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

.feature-detail {
    display: block;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.3rem;
}

.features-note {
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255, 102, 0, 0.1);
    border-radius: 8px;
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

.features-cta {
    text-align: center;
    margin-top: 2rem;
}

.features-cta .btn {
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    padding: 18px 40px;
}

/* ========================================
   Floor Plan
   ======================================== */
.floorplan-image {
    text-align: center;
}

.floorplan-image img {
    max-width: 100%;
    height: auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.floorplan-image a:hover img {
    transform: scale(1.02);
}

.image-caption {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.8rem;
}

/* ========================================
   Gallery Section
   ======================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.gallery-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    border-color: rgba(255, 102, 0, 0.4);
    transform: translateY(-5px);
}

.gallery-image {
    position: relative;
    text-align: center;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
}

.gallery-image img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}


.gallery-content {
    padding: 1.5rem;
}

.gallery-content h3 {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: #FF6600;
    margin-bottom: 0.8rem;
}

.gallery-content p {
    font-size: 0.85rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
}

/* ========================================
   Construction Section
   ======================================== */
.construction-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.construction-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.construction-item:hover {
    border-color: rgba(255, 102, 0, 0.3);
}

.construction-image {
    text-align: center;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
}

.construction-image img {
    max-width: 100%;
    height: auto;
    display: inline-block;
    filter: grayscale(30%);
    transition: filter 0.5s ease;
}

.construction-item:hover .construction-image img {
    filter: grayscale(0%);
}

.construction-item p {
    padding: 1.2rem;
    font-size: 0.85rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
}

.construction-note {
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
}

.construction-note p {
    font-size: 0.9rem;
    line-height: 2;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 1rem;
}

.construction-note p:last-child {
    margin-bottom: 0;
}

/* ========================================
   CTA Section
   ======================================== */
.studio-cta {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.1) 0%, rgba(255, 102, 0, 0.05) 100%);
    border-radius: 12px;
    border: 1px solid rgba(255, 102, 0, 0.2);
}

.studio-cta p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 1rem 2.5rem;
    font-size: 0.95rem;
    letter-spacing: 0.1em;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-buttons .btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
}

.cta-buttons .btn-outline:hover {
    border-color: #FF6600;
    color: #FF6600;
}

.cta-buttons .btn-primary {
    background: #FF6600;
    border: none;
    color: #fff;
}

.cta-buttons .btn-primary:hover {
    background: #ff7722;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.3);
}

/* ========================================
   Legacy Section
   ======================================== */
.studio-legacy {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.85;
}

.studio-legacy .section-header {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.1);
}

.studio-legacy .section-header h2 {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.5rem;
}

.studio-legacy .section-desc {
    color: rgba(255, 255, 255, 0.4);
}

.studio-legacy .construction-item {
    opacity: 0.9;
}

.studio-legacy .construction-item:hover {
    opacity: 1;
}

.legacy-subsection {
    margin-bottom: 4rem;
}

.legacy-subsection:last-child {
    margin-bottom: 0;
}

.legacy-title {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 2rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.studio-legacy .gallery-item {
    opacity: 0.9;
}

.studio-legacy .gallery-item:hover {
    opacity: 1;
}

/* ========================================
   Back to Top Button
   ======================================== */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: #FF6600;
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    background: #ff7722;
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 980px) {
    .studio-hero {
        min-height: 50vh;
    }

    .studio-hero h1 {
        font-size: 3rem;
        letter-spacing: 0.2em;
    }

    .gallery-grid,
    .construction-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .studio-hero {
        min-height: 40vh;
    }

    .studio-hero h1 {
        font-size: 2.5rem;
    }

    .studio-container {
        padding: 2rem 1rem;
    }

    .intro-content {
        padding: 2rem 1.5rem;
    }

    .lead-text {
        font-size: 1rem;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .feature-item {
        padding: 1rem;
    }

    .feature-number {
        font-size: 1.2rem;
        width: 30px;
    }

    .gallery-content,
    .construction-item p {
        padding: 1rem;
    }

    .studio-cta {
        padding: 2rem 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .studio-hero h1 {
        font-size: 2rem;
        letter-spacing: 0.15em;
    }

    .back-to-top {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        bottom: 1rem;
        right: 1rem;
    }
}
