/* ====================================================================
 * EMJOY ABOUT PAGE CSS
 * Extracted from about-demo.html
 * ==================================================================== */

:root {
    --about-primary: #B85C5C;
    /* Brand accent / Rust Red */
    --about-primary-light: #F7F0E6;
    /* Very light gold/beige */
    --about-text-dark: #183059;
    /* Brand primary / Navy */
    --about-text-body: #555555;
    /* Brand body text */
    --about-bg-color: #FDFBF7;
    /* Brand light linen */
    --about-white: #ffffff;
    --about-transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.about-page-wrapper {
    font-family: 'Be Vietnam Pro', sans-serif;
    color: var(--about-text-body);
    background-color: var(--about-bg-color);
    line-height: 1.7;
    overflow-x: hidden;
}

.about-page-wrapper h1,
.about-page-wrapper h2,
.about-page-wrapper h3,
.about-page-wrapper h4,
.about-page-wrapper h5,
.about-page-wrapper h6 {
    font-family: 'Be Vietnam Pro', sans-serif;
    color: var(--about-text-dark);
    font-weight: 700;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.about-hero {
    display: flex;
    align-items: center;
    min-height: 80vh;
    padding: 100px 0;
    position: relative;
    background: linear-gradient(135deg, var(--about-bg-color) 0%, var(--about-primary-light) 100%);
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: var(--about-primary);
    opacity: 0.05;
    border-radius: 50%;
    z-index: 0;
}

.about-hero-content {
    flex: 1;
    padding-right: 60px;
    position: relative;
    z-index: 1;
    animation: aboutFadeUp 1s ease forwards;
}

.about-hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.about-hero-content h1 span {
    color: var(--about-primary);
    font-style: italic;
}

.about-hero-content p {
    font-size: 1.15rem;
    margin-bottom: 30px;
    color: var(--about-text-body);
    max-width: 90%;
}

.about-hero-image {
    flex: 1;
    position: relative;
    z-index: 1;
    animation: aboutFadeIn 1.2s ease forwards;
}

.about-hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    aspect-ratio: 4/5;
    transition: var(--about-transition);
}

.about-hero-image img:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 50px rgba(184, 92, 92, 0.2);
}

/* Story Section */
.about-story-section {
    padding: 100px 0;
    background-color: var(--about-white);
}

.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-story-image {
    position: relative;
}

.about-story-image::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--about-primary);
    border-radius: 20px;
    z-index: 0;
    transition: var(--about-transition);
}

.about-story-image:hover::after {
    transform: translate(10px, -10px);
}

.about-story-image img {
    width: 100%;
    border-radius: 20px;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    aspect-ratio: 4/3;
    object-fit: cover;
}

.about-story-content h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.about-story-content h2::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--about-primary);
}

.about-story-content p {
    margin-bottom: 20px;
    font-size: 1.05rem;
}

/* Meaning Section */
.about-meaning-section {
    padding: 80px 0;
    background-color: var(--about-primary-light);
    text-align: center;
}

.about-meaning-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-meaning-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-meaning-content p {
    font-size: 1.1rem;
    margin-bottom: 0;
}

.about-highlight-text {
    color: var(--about-primary);
    font-weight: 600;
    font-size: 1.2rem;
}

/* Services Section */
.about-services-section {
    padding: 100px 0;
    background-color: var(--about-bg-color);
}

.about-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.about-section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.about-services-wrapper {
    display: flex;
    gap: 40px;
    align-items: stretch;
}

.about-services-image {
    flex: 0 0 40%;
}

.about-services-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    aspect-ratio: 3/4;
}

.about-services-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
    justify-content: center;
}

.about-service-item {
    background: var(--about-white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    transition: var(--about-transition);
    border-left: 4px solid transparent;
}

.about-service-item:hover {
    transform: translateX(10px);
    border-left-color: var(--about-primary);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.about-service-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--about-primary);
    font-family: 'Be Vietnam Pro', sans-serif;
    font-weight: 600;
}

/* Quality Section */
.about-quality-section {
    padding: 80px 0;
    background-color: var(--about-white);
    text-align: center;
}

.about-quality-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-quality-content h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.about-quality-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.about-slogan {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--about-primary);
    font-style: italic;
}

/* Contact Section */
.about-contact-section {
    padding: 80px 0;
    background-color: var(--about-text-dark);
    color: var(--about-white);
}

.about-contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
}

.about-contact-info h2 {
    color: var(--about-white);
    font-size: 2.2rem;
    margin-bottom: 30px;
}

.about-contact-list {
    list-style: none;
    display: inline-block;
    text-align: left;
    padding: 0;
    margin: 0;
}

.about-contact-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
}

.about-contact-list li strong {
    color: var(--about-primary-light);
    width: 150px;
    font-weight: 500;
}

.about-contact-list a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--about-transition);
}

.about-contact-list a:hover {
    color: var(--about-primary);
}

/* Animations */
@keyframes aboutFadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes aboutFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 991px) {
    .about-hero {
        padding: 80px 0 40px;
    }

    .about-hero .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-hero-content {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .about-hero-content p {
        margin: 0 auto 30px;
    }

    .about-story-grid {
        grid-template-columns: 1fr;
    }

    .about-story-image {
        order: -1;
        margin-bottom: 30px;
    }

    .about-services-wrapper {
        flex-direction: column;
    }

    .about-services-image {
        height: 400px;
    }

    .about-contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .about-hero-content h1 {
        font-size: 2.5rem;
    }

    .about-story-content h2,
    .about-section-header h2,
    .about-quality-content h2,
    .about-meaning-content h2 {
        font-size: 2rem;
    }

    .about-contact-list li {
        flex-direction: column;
        align-items: flex-start;
    }

    .about-contact-list li strong {
        margin-bottom: 5px;
    }
}