@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Noto+Serif+KR:wght@300;700&family=Outfit:wght@300;400;700;800;900&display=swap');

.about-page body {
    background: var(--bg-base, #FFF0F5);
}

/* Hero Section - Sized down for better balance */
.about-hero {
    padding: 8rem 0 5rem;
    background: linear-gradient(135deg, var(--red, #FF1493) 0%, var(--red-deep, #C71585) 100%);
    color: var(--cream, #FFF0F5);
    margin-bottom: 4rem;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: 'CAKE';
    position: absolute;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 20vw;
    color: rgba(255, 240, 245, 0.06);
    bottom: -5%;
    right: -2%;
    line-height: 0.8;
    pointer-events: none;
    z-index: 1;
}

.about-hero .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
}

.about-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 7vw, 5rem);
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    line-height: 1.1;
}

.about-subtitle {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    opacity: 0.9;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255, 240, 245, 0.95);
}

/* Navbar compatibility */
.about-page .navbar-main:not(.scrolled) .navbar-nav-list li a:not(.dropdown-item),
.about-page .navbar-main:not(.scrolled) .lang-icon-btn,
.about-page .navbar-main:not(.scrolled) .navbar-toggle,
.about-page .navbar-main:not(.scrolled) .brand-sub {
    color: #FFF0F5 !important;
}

.about-page .navbar-main:not(.scrolled) .brand-logo {
    filter: brightness(0) invert(1);
}

/* Content Sections */
.content-section {
    margin-bottom: 8rem;
    position: relative;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.section-label {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.6em;
    color: var(--red, #FF1493);
    text-transform: uppercase;
    margin-bottom: 2.5rem;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.section-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255, 20, 147, 0.15);
}

.story-box {
    background: #FFFFFF;
    padding: 5rem;
    border-radius: 40px;
    box-shadow: 0 20px 60px rgba(255, 20, 147, 0.05);
    border: 1px solid rgba(255, 20, 147, 0.08);
}

.story-text-container {
    max-width: 100%;
}

.section-heading {
    font-family: 'Noto Serif KR', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 700;
    color: var(--text-primary, #1A0A00);
    margin-bottom: 2.5rem;
    letter-spacing: -0.02em;
    line-height: 1.4;
}

.highlight-quote {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--red, #FF1493);
    font-weight: 400;
    margin-bottom: 3rem;
    display: block;
    line-height: 1.1;
    letter-spacing: 0.02em;
}

.section-text {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 1.15rem;
    color: var(--text-secondary, #4A2A18);
    line-height: 2;
    word-break: keep-all;
    letter-spacing: -0.01em;
}

.section-text p {
    margin-bottom: 2rem;
}

.section-text p:last-child {
    margin-bottom: 0;
}

.value-highlight {
    color: var(--red, #FF1493);
    font-weight: 700;
}

/* Image Wrappers */
.story-image-wrap {
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.story-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-contain-wrap {
    width: 100%;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 24px;
}

/* Responsive */
@media (max-width: 991px) {
    .about-hero {
        padding: 6rem 0 4rem;
    }
    .story-box {
        padding: 4rem 3rem;
    }
    .story-image-wrap, .img-contain-wrap {
        height: 350px;
        margin-top: 3rem;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 5rem 0 3rem;
    }
    .section-label {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }
    .section-heading {
        margin-bottom: 2rem;
    }
    .section-text {
        font-size: 1.1rem;
        line-height: 1.8;
    }
    .highlight-quote {
        margin-bottom: 2rem;
    }
}
