/* ============================================
   Re:Maker LP - Examples Page Styles
   ============================================ */

/* ===== Page Header ===== */
.page-header {
    padding: 100px 0 60px;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(138, 43, 226, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.page-title {
    font-family: var(--font-accent);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.page-subtitle {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.page-desc {
    font-size: 1.125rem;
    color: var(--text-secondary);
    position: relative;
    z-index: 1;
}

/* ===== Examples Detail Section ===== */
.examples-detail {
    padding: 80px 0 120px;
    background: var(--bg-primary);
}

/* ===== Example Case ===== */
.example-case {
    margin-bottom: 80px;
}

.example-case:last-child {
    margin-bottom: 0;
}

.example-case-header {
    text-align: center;
    margin-bottom: 50px;
}

.example-number {
    display: inline-block;
    font-family: var(--font-accent);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    color: var(--neon-blue);
    text-transform: uppercase;
    margin-bottom: 15px;
    padding: 8px 20px;
    border: 1px solid var(--neon-blue);
    border-radius: 30px;
}

.example-case-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--text-primary);
}

/* ===== Example Grid ===== */
.example-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* ===== Example Card ===== */
.example-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-base);
}

.example-card:hover {
    transform: translateY(-5px);
    border-color: var(--neon-blue);
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.15);
}

.example-card-wide {
    grid-column: span 2;
}

.example-card-label {
    padding: 15px 20px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--neon-blue);
    background: rgba(0, 212, 255, 0.1);
    border-bottom: 1px solid var(--border-light);
    text-align: center;
    letter-spacing: 0.05em;
}

.example-card-image {
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.example-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.example-card:hover .example-card-image img {
    transform: scale(1.05);
}

.example-card-video {
    aspect-ratio: 1;
    background: var(--bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.example-card-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.example-card-desc {
    padding: 15px 20px;
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-align: center;
    border-top: 1px solid var(--border-light);
}

/* ===== No Image Placeholder ===== */
.no-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: var(--text-muted);
    font-size: 0.875rem;
    background: var(--bg-secondary);
}

/* ===== Header Solid Style ===== */
.header-solid {
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border-light);
}

.header-solid .logo-image {
    filter: none;
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
    .example-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .example-card-wide {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 120px 0 60px;
    }

    .page-desc {
        font-size: 1rem;
    }

    .examples-detail {
        padding: 60px 0 80px;
    }

    .example-case {
        margin-bottom: 60px;
    }

    .example-case-header {
        margin-bottom: 30px;
    }

    .example-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .example-card-wide {
        grid-column: span 1;
    }

    .example-card-image {
        aspect-ratio: 4/3;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 100px 0 50px;
    }

    .example-number {
        font-size: 0.75rem;
        padding: 6px 15px;
    }

    .example-card-label {
        padding: 12px 15px;
        font-size: 0.8125rem;
    }

    .example-card-desc {
        padding: 12px 15px;
        font-size: 0.8125rem;
    }
}
