/* ================================================================
   GallShop — Liquidation Landing Page
   Theme: Red (#DC2626 primary)
   ================================================================ */

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background: #FEF2F2;
    color: #1F1F1F;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---- Bankruptcy Banner (Top) ---- */
.bankruptcy-banner {
    background: #DC2626;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.bankruptcy-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 8px,
        rgba(255, 255, 255, 0.04) 8px,
        rgba(255, 255, 255, 0.04) 16px
    );
}

.banner-inner {
    position: relative;
    max-width: 960px;
    margin: 0 auto;
    padding: 20px 28px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.banner-icon {
    font-size: 28px;
    flex-shrink: 0;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.banner-text {
    font-size: 1.05rem;
    line-height: 1.7;
    letter-spacing: 0.01em;
}

.banner-text strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* ---- Hero ---- */
.hero {
    position: relative;
    background: linear-gradient(135deg, #991B1B 0%, #B91C1C 30%, #DC2626 60%, #991B1B 100%);
    padding: 80px 24px 90px;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 30%, rgba(255,255,255,0.04) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.brand-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.12);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    margin-bottom: 28px;
    backdrop-filter: blur(6px);
}

.brand-logo {
    width: 52px;
    height: 52px;
}

.hero-title {
    font-size: clamp(2.8rem, 6vw, 4.4rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 8px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

.hero-tagline {
    font-size: 1.25rem;
    font-weight: 300;
    letter-spacing: 0.08em;
    opacity: 0.85;
    text-transform: uppercase;
}

/* ---- Notice Section ---- */
.notice-section {
    padding: 64px 0 40px;
}

.notice-card {
    background: #fff;
    border: 1px solid #FECACA;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(220, 38, 38, 0.08), 0 1px 3px rgba(0, 0, 0, 0.04);
}

.notice-header {
    background: linear-gradient(135deg, #DC2626, #B91C1B);
    color: #fff;
    padding: 28px 36px;
    display: flex;
    align-items: center;
    gap: 18px;
}

.notice-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
}

.notice-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.notice-body {
    padding: 36px 36px 40px;
}

.notice-body p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    color: #3F3F3F;
}

.notice-body p:last-of-type {
    margin-bottom: 28px;
}

.asset-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.asset-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 20px;
    background: #FEF2F2;
    border: 1px solid #FEE2E2;
    border-radius: 10px;
    transition: background 0.2s, border-color 0.2s;
}

.asset-list li:hover {
    background: #FEE2E2;
    border-color: #FECACA;
}

.asset-bullet {
    color: #DC2626;
    font-size: 1.1rem;
    line-height: 1.6;
    flex-shrink: 0;
}

.asset-detail {
    color: #6B7280;
    font-size: 0.92rem;
}

/* ---- Contact Section ---- */
.contact-section {
    padding: 16px 0 64px;
}

.contact-card {
    background: #fff;
    border: 2px solid #DC2626;
    border-radius: 16px;
    padding: 48px 40px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(220, 38, 38, 0.1);
}

.contact-icon {
    width: 52px;
    height: 52px;
    color: #DC2626;
    margin: 0 auto 24px;
    display: block;
}

.contact-card h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #991B1B;
    margin-bottom: 16px;
    letter-spacing: 0.01em;
}

.contact-desc {
    font-size: 1.0rem;
    color: #555;
    max-width: 560px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

.email-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #DC2626;
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 16px 32px;
    border-radius: 50px;
    transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
    box-shadow: 0 4px 16px rgba(220, 38, 38, 0.35);
}

.email-link:hover {
    background: #B91C1B;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(220, 38, 38, 0.45);
}

.email-arrow {
    width: 20px;
    height: 20px;
    transition: transform 0.25s;
}

.email-link:hover .email-arrow {
    transform: translateX(4px);
}

.contact-note {
    margin-top: 24px;
    font-size: 0.9rem;
    color: #9CA3AF;
    font-style: italic;
}

/* ---- Footer ---- */
.footer {
    background: #1F1F1F;
    color: #9CA3AF;
    padding: 40px 24px;
    text-align: center;
}

.footer-text {
    font-size: 0.92rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-text br {
    display: none;
}

.footer-divider {
    width: 40px;
    height: 2px;
    background: #DC2626;
    margin: 20px auto;
    border-radius: 1px;
}

.footer-legal {
    font-size: 0.82rem;
    color: #6B7280;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ---- Responsive ---- */
@media (max-width: 640px) {
    .banner-inner {
        padding: 18px 16px;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .banner-text {
        font-size: 0.95rem;
    }

    .banner-text strong {
        font-size: 1.05rem;
    }

    .hero {
        padding: 56px 20px 64px;
    }

    .brand-badge {
        width: 80px;
        height: 80px;
    }

    .hero-title {
        font-size: 2.4rem;
    }

    .hero-tagline {
        font-size: 1.0rem;
    }

    .notice-header {
        padding: 24px 24px;
        flex-direction: column;
        text-align: center;
    }

    .notice-header h2 {
        font-size: 1.25rem;
    }

    .notice-body {
        padding: 24px 20px 28px;
    }

    .contact-card {
        padding: 36px 20px;
    }

    .contact-card h2 {
        font-size: 1.3rem;
    }

    .email-link {
        font-size: 1.0rem;
        padding: 14px 24px;
    }

    .footer-text br {
        display: inline;
    }
}
