/* About Page - Hero Section */

.about-hero {
    position: relative;
    height: 80vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.about-hero-bg-wrapper {
    position: absolute;
    inset: 0;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, 
        rgba(59, 47, 47, 0.7) 0%, 
        rgba(74, 124, 62, 0.5) 50%, 
        rgba(59, 47, 47, 0.7) 100%);
    z-index: 10;
}

.about-hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-hero-blur-container {
    position: absolute;
    inset: 0;
    z-index: 15;
    pointer-events: none;
}

.about-hero-blur-circle {
    position: absolute;
    width: 8rem;
    height: 8rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    filter: blur(64px);
    opacity: 0.2;
}

.about-hero-blur-circle:nth-child(1) {
    transform: translateY(-371.292px) scale(2.85646);
}

.about-hero-blur-circle:nth-child(2) {
    transform: translateX(10%) translateY(-387.451px) scale(2.93726);
}

.about-hero-blur-circle:nth-child(3) {
    transform: translateX(20%) translateY(-195.707px) scale(1.97853);
}

.about-hero-blur-circle:nth-child(4) {
    transform: translateX(30%) translateY(-161.023px) scale(1.80511);
}

.about-hero-blur-circle:nth-child(5) {
    transform: translateX(40%) translateY(-116.413px) scale(1.58207);
}

.about-hero-blur-circle:nth-child(6) {
    transform: translateX(50%) translateY(-156.911px) scale(1.78455);
}

.about-hero-blur-circle:nth-child(7) {
    transform: translateX(60%) translateY(-29.3495px) scale(1.14675);
}

.about-hero-blur-circle:nth-child(8) {
    transform: translateX(70%) translateY(-38.9773px) scale(1.19489);
}

.about-hero-blur-circle:nth-child(9) {
    transform: translateX(80%) translateY(-47.0807px) scale(1.2354);
}

.about-hero-blur-circle:nth-child(10) {
    transform: translateX(90%) translateY(-384.265px) scale(2.92132);
}

.about-hero-content {
    position: relative;
    z-index: 20;
    text-align: center;
    color: white;
    padding: 0 1rem;
    max-width: 80rem;
    margin: 0 auto;
}

.about-hero-content-inner {
    opacity: 1;
    transform: none;
}

.about-hero-title {
    font-family: 'Lobster', cursive;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: white;
    font-weight: 400;
}

@media (min-width: 1024px) {
    .about-hero-title {
        font-size: 4.5rem;
    }
}

.about-hero-subtitle {
    font-family: 'Lobster', cursive;
    font-size: 1.875rem;
    color: #E8C469;
    margin-bottom: 1rem;
    opacity: 1;
    font-weight: 400;
}

@media (min-width: 1024px) {
    .about-hero-subtitle {
        font-size: 2.25rem;
    }
}

.about-hero-description {
    font-family: 'Lobster', cursive;
    font-size: 1.25rem;
    color: rgba(248, 246, 240, 0.95);
    max-width: 48rem;
    margin: 0 auto;
    opacity: 1;
    font-weight: 400;
}

/* Social Media Icons - Right Side */
.about-social-icons {
    position: fixed;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 40;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

@media (min-width: 1024px) {
    .about-social-icons {
        right: 2rem;
    }
}

.about-social-icon {
    background: black;
    color: white;
    padding: 0.75rem;
    border-radius: 50%;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
    opacity: 1;
    transform: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
}

.about-social-icon:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.about-social-icon svg {
    width: 1.25rem;
    height: 1.25rem;
}

.about-social-icon.facebook {
    background: #1877F2;
}

.about-social-icon.zalo {
    background: #0068FF;
}

/* Bottom Left - Leaf Icon */
.about-leaf-button-container {
    position: fixed;
    bottom: 1.5rem;
    left: 1.5rem;
    z-index: 40;
    display: flex;
    align-items: flex-end;
    gap: 1rem;
}

.about-leaf-button {
    position: relative;
    cursor: pointer;
    border: none;
    background: none;
    padding: 0;
}

.about-leaf-button-inner {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(to bottom right, #4A7C3E, #E8C469);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
}

.about-leaf-button-glow {
    position: absolute;
    inset: 0;
    background: rgba(232, 196, 105, 0.2);
    border-radius: 50%;
    transform: scale(1.13082);
}

.about-leaf-button-icon {
    width: 2rem;
    height: 2rem;
    color: white;
    position: relative;
    z-index: 10;
}

.about-leaf-button-sparkle {
    position: absolute;
    top: -0.25rem;
    right: -0.25rem;
}

.about-leaf-button-sparkle-inner {
    width: 1.25rem;
    height: 1.25rem;
    background: #E8C469;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-leaf-button-sparkle svg {
    width: 0.75rem;
    height: 0.75rem;
    color: white;
}

.about-leaf-button-border {
    position: absolute;
    inset: 0;
    border: 2px solid #E8C469;
    border-radius: 50%;
    transform: scale(1.08721);
}

.about-leaf-button-tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 0.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.about-leaf-button:hover .about-leaf-button-tooltip {
    opacity: 1;
}

.about-leaf-button-tooltip-text {
    background: #3B2F2F;
    color: white;
    font-size: 0.75rem;
    padding: 0.375rem 0.75rem;
    border-radius: 0.5rem;
    white-space: nowrap;
}

/* Scroll Indicator - Bottom Center */
.about-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 30;
}

.about-scroll-indicator-inner {
    width: 1.5rem;
    height: 2.5rem;
    border: 2px solid #E8C469;
    border-radius: 9999px;
    display: flex;
    justify-content: center;
    padding-top: 0.5rem;
}

.about-scroll-dot {
    width: 0.375rem;
    height: 0.375rem;
    background: #E8C469;
    border-radius: 50%;
    transform: translateY(2.42571px);
}

/* About Page - Origin Section */

.about-origin-section {
    padding: 6rem 0;
    background-color: white;
}

@media (min-width: 1024px) {
    .about-origin-section {
        padding: 8rem 0;
    }
}

.about-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 1024px) {
    .about-container {
        padding: 0 2rem;
    }
}

.about-origin-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .about-origin-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.about-origin-images {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-origin-main-image {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    width: 100%;
}

.about-origin-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-origin-sub-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.about-origin-sub-image {
    position: relative;
    aspect-ratio: 1;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    width: 100%;
}

.about-origin-sub-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-image-hover {
    transition: transform 0.7s ease;
}

.about-image-hover:hover {
    transform: scale(1.05);
}

.about-origin-content {
    opacity: 1;
    transform: none;
}

.about-origin-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.25rem;
    color: #3B2F2F;
    margin-bottom: 1.5rem;
}

@media (min-width: 1024px) {
    .about-origin-title {
        font-size: 3rem;
    }
}

.about-origin-divider {
    width: 8rem;
    height: 0.25rem;
    background: linear-gradient(to right, #4A7C3E, #E8C469);
    margin-bottom: 2rem;
}

.about-origin-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    font-size: 1.125rem;
    color: rgba(59, 47, 47, 0.8);
    line-height: 1.625;
}

.about-origin-text p {
    margin: 0;
}

.about-text-highlight {
    color: #4A7C3E;
}

.about-quote-block {
    border-left: 4px solid #E8C469;
    padding-left: 1.5rem;
    font-style: italic;
    color: #4A7C3E;
    font-size: 1.25rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    margin: 0;
}

/* About Page - Mission Section */
.about-mission-section {
    padding: 6rem 0;
    background: linear-gradient(to bottom, rgba(74, 124, 62, 0.05) 0%, white 100%);
    position: relative;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .about-mission-section {
        padding: 8rem 0;
    }
}

.about-section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.about-section-title-large {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #3B2F2F;
    margin-bottom: 1.5rem;
}

@media (min-width: 1024px) {
    .about-section-title-large {
        font-size: 3.75rem;
    }
}

.about-divider {
    width: 8rem;
    height: 0.25rem;
    background: linear-gradient(to right, #4A7C3E, #E8C469);
    margin: 0 auto 1.5rem;
}

.about-section-subtitle {
    font-size: 1.25rem;
    color: rgba(59, 47, 47, 0.7);
    max-width: 48rem;
    margin: 0 auto;
}

.about-mission-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .about-mission-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .about-mission-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.about-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    height: 100%;
}

.about-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.about-card-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(to bottom right, #4A7C3E, #E8C469);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.about-card-icon svg {
    color: white;
    width: 2rem;
    height: 2rem;
}

.about-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: #3B2F2F;
    margin-bottom: 0.75rem;
    text-align: center;
}

.about-card-text {
    color: rgba(59, 47, 47, 0.7);
    text-align: center;
    line-height: 1.625;
}

/* Background Decorations */
.about-bg-decoration {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    pointer-events: none;
    overflow: hidden;
}

.about-bg-leaf {
    position: absolute;
    width: 2rem;
    height: 2rem;
    color: #4A7C3E;
}

.about-bg-leaf svg {
    width: 100%;
    height: 100%;
}

/* About Page - Journey Section */
.about-journey-section {
    padding: 6rem 0;
    background-color: white;
}

@media (min-width: 1024px) {
    .about-journey-section {
        padding: 8rem 0;
    }
}

.about-journey-timeline {
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

@media (min-width: 1024px) {
    .about-journey-timeline {
        gap: 8rem;
    }
}

.about-journey-item {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .about-journey-item {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: center;
    }
    
    .about-journey-item-reverse .about-journey-image-wrapper {
        order: 2;
    }
    
    .about-journey-item-reverse .about-journey-content {
        order: 1;
    }
}

.about-journey-image-wrapper {
    width: 100%;
}

.about-journey-image {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.about-journey-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-journey-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, 
        rgba(59, 47, 47, 0.6) 0%, 
        transparent 100%);
}

.about-journey-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.about-journey-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(to right, #4A7C3E, #E8C469);
    color: white;
    border-radius: 9999px;
    font-size: 1.125rem;
    font-family: 'Noto Sans', sans-serif;
    font-weight: 400;
    margin-bottom: 1.5rem;
    margin-left: 0;
    width: fit-content;
}

.about-journey-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #3B2F2F;
    margin-bottom: 1.5rem;
    margin-top: 0;
    margin-left: 0;
    font-weight: 400;
    text-align: left;
}

@media (min-width: 1024px) {
    .about-journey-title {
        font-size: 3rem;
    }
}

.about-journey-text {
    font-family: 'Noto Sans', sans-serif;
    font-size: 1.125rem;
    color: rgba(59, 47, 47, 0.7);
    line-height: 1.625;
    font-weight: 400;
    margin: 0;
    text-align: left;
}

/* About Page - Team Section */
.about-team-section {
    padding: 6rem 0;
    background: linear-gradient(to bottom, #F8F6F0 0%, white 100%);
}

@media (min-width: 1024px) {
    .about-team-section {
        padding: 8rem 0;
    }
}

.about-team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .about-team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.about-team-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.about-team-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.about-team-image-wrapper {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.about-team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.about-team-card:hover .about-team-img {
    transform: scale(1.1);
}

.about-team-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, 
        rgba(59, 47, 47, 1) 0%, 
        rgba(59, 47, 47, 0.5) 50%, 
        transparent 100%);
}

.about-team-content {
    padding: 1.5rem;
}

.about-team-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #3B2F2F;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.about-team-subtitle {
    color: #E8C469;
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: 400;
}

.about-team-text {
    color: rgba(59, 47, 47, 0.7);
    line-height: 1.625;
    font-size: 1rem;
    font-weight: 400;
    margin: 0;
}

/* About Page - Quote Section */
.about-quote-section {
    padding: 6rem 0;
    background: linear-gradient(to bottom, white 0%, #F8F6F0 100%);
}

.about-quote-wrapper {
    max-width: 56rem;
    margin: 0 auto;
    text-align: center;
}

.about-quote-text {
    font-family: 'Dancing Script', cursive;
    font-size: 1.875rem;
    color: #3B2F2F;
    font-style: normal;
    margin: 0 0 2rem 0;
    padding: 0;
    border: none;
    font-weight: 500;
}

@media (min-width: 1024px) {
    .about-quote-text {
        font-size: 2.25rem;
    }
}

.about-quote-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: #4A7C3E;
}

.about-quote-leaf-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: #4A7C3E;
}

.about-quote-author-name {
    font-size: 1.25rem;
    color: #4A7C3E;
    margin: 0;
    font-weight: 400;
}

/* Responsive */
@media (max-width: 1023px) {
    .about-hero {
        min-height: 450px;
        height: 80vh;
    }
}

@media (max-width: 767px) {
    .about-hero {
        min-height: 400px;
        height: 80vh;
    }
}

@media (max-width: 768px) {
    .about-hero-title {
        font-size: 2.5rem;
    }
    
    .about-hero-subtitle {
        font-size: 1.5rem;
    }
    
    .about-hero-description {
        font-size: 1rem;
    }
    
    .about-social-icons {
        right: 0.5rem;
    }
    
    .about-leaf-button-container {
        bottom: 1rem;
        left: 1rem;
    }
    
    .about-origin-section {
        padding: 4rem 0;
    }
    
    .about-origin-grid {
        gap: 2rem;
    }
    
    .about-origin-title {
        font-size: 2rem;
    }
    
    .about-origin-text {
        font-size: 1rem;
    }
    
    .about-mission-section {
        padding: 4rem 0;
    }
    
    .about-section-title-large {
        font-size: 2.5rem;
    }
    
    .about-section-subtitle {
        font-size: 1rem;
    }
    
    .about-card {
        padding: 1.5rem;
    }
    
    .about-journey-section {
        padding: 4rem 0;
    }
    
    .about-journey-timeline {
        gap: 4rem;
    }
    
    .about-journey-item {
        gap: 2rem;
    }
    
    .about-journey-title {
        font-size: 2rem;
    }
    
    .about-journey-text {
        font-size: 1rem;
    }
    
    .about-team-section {
        padding: 4rem 0;
    }
    
    .about-team-grid {
        gap: 1.5rem;
    }
    
    .about-team-content {
        padding: 1.25rem;
    }
    
    .about-team-title {
        font-size: 1.25rem;
    }
    
    .about-team-subtitle {
        font-size: 0.875rem;
    }
    
    .about-team-text {
        font-size: 0.875rem;
    }
    
    .about-quote-section {
        padding: 4rem 0;
    }
    
    .about-quote-text {
        font-size: 1.5rem;
    }
    
    .about-quote-author-name {
        font-size: 1rem;
    }
    
    .about-quote-leaf-icon {
        width: 1.25rem;
        height: 1.25rem;
    }
}

@media (max-width: 390px) {
    .about-hero-title {
        font-size: 2rem;
    }
    
    .about-hero-subtitle {
        font-size: 1.5rem;
    }
    
    .about-hero-description {
        font-size: 1rem;
    }
}

@media (max-width: 350px) {
    .about-hero-title {
        font-size: 1.75rem;
    }
    
    .about-hero-subtitle {
        font-size: 1.35rem;
    }
    
    .about-hero-description {
        font-size: 0.95rem;
    }
}

@media (max-width: 300px) {
    .about-hero-title {
        font-size: 1.5rem;
    }
    
    .about-hero-subtitle {
        font-size: 1.25rem;
    }
    
    .about-hero-description {
        font-size: 0.875rem;
    }
}

@media (max-width: 290px) {
    .about-hero-title {
        font-size: 1.35rem;
    }
    
    .about-hero-subtitle {
        font-size: 1.15rem;
    }
    
    .about-hero-description {
        font-size: 0.8rem;
    }
}
