/* ============================================
   ABOUT PAGE - MODERN GEOMETRIC DESIGN
   DLC Coffee Lounge
   ============================================ */

:root {
    --primary: #2d1810;
    --accent: #5c3308;
    --accent-bright: #5e340b;
    --dark: #1a1a1a;
    --gray: #6b6b6b;
    --light-gray: #f5f5f5;
    --white: #ffffff;
    --gradient-1: linear-gradient(135deg, #492b0b 0%, #6b3f13 100%);
    --gradient-2: linear-gradient(135deg, #2d1810 0%, #4a2c1f 100%);
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.7;
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
}

/* ============================================
   HERO SECTION
   ============================================ */

.about-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
    padding: 140px 20px 80px;
}

.hero-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: var(--gradient-1);
    top: -200px;
    right: -100px;
    animation: float 20s ease-in-out infinite;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: var(--gradient-2);
    bottom: -150px;
    left: -100px;
    animation: float 15s ease-in-out infinite reverse;
}

.shape-3 {
    width: 300px;
    height: 300px;
    background: var(--gradient-1);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 10s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(30px, -30px) rotate(90deg); }
    50% { transform: translate(0, -60px) rotate(180deg); }
    75% { transform: translate(-30px, -30px) rotate(270deg); }
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.2); }
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.hero-label {
    display: inline-block;
    padding: 10px 24px;
    background: var(--white);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 30px;
    box-shadow: var(--shadow-sm);
}

.hero-title {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 1.1;
    color: var(--dark);
    margin-bottom: 30px;
    font-weight: 400;
}

.gradient-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ============================================
   STATS SECTION
   ============================================ */

.stats-section {
    padding: 100px 20px;
    background: var(--white);
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.stat-card {
    text-align: center;
    padding: 40px 20px;
    background: var(--light-gray);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-number {
    font-family: 'DM Serif Display', serif;
    font-size: 4rem;
    font-weight: 400;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 15px;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--gray);
    font-weight: 500;
}

/* ============================================
   STORY SECTION
   ============================================ */

.story-section {
    padding: 120px 20px;
    background: var(--white);
}

.story-container {
    max-width: 1200px;
    margin: 0 auto;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.story-image {
    position: relative;
}

.image-placeholder {
    aspect-ratio: 1;
    background: var(--gradient-1);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    color: var(--white);
    box-shadow: var(--shadow-lg);
}

.image-accent {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 4px solid var(--accent);
    border-radius: 30px;
    top: 20px;
    left: 20px;
    z-index: -1;
}

.section-label {
    display: inline-block;
    padding: 8px 20px;
    background: var(--light-gray);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 20px;
}

.section-title {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--dark);
    margin-bottom: 30px;
    line-height: 1.2;
    font-weight: 400;
}

.section-text {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.9;
    margin-bottom: 25px;
}

.story-signature {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.signature-line {
    width: 60px;
    height: 2px;
    background: var(--accent);
}

.signature-name {
    font-size: 0.95rem;
    color: var(--gray);
    font-style: italic;
}

/* ============================================
   VALUES SECTION
   ============================================ */

.values-section {
    padding: 120px 20px;
    background: var(--light-gray);
}

.values-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.value-card {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    background: var(--gradient-1);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.value-card:hover::before {
    opacity: 0.05;
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--gradient-1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    position: relative;
    z-index: 1;
    transition: transform 0.4s ease;
}

.value-card:hover .value-icon {
    transform: rotateY(360deg);
}

.value-title {
    font-family: 'DM Serif Display', serif;
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
    font-weight: 400;
}

.value-text {
    color: var(--gray);
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

/* ============================================
   TEAM SECTION
   ============================================ */

.team-section {
    padding: 120px 20px;
    background: var(--white);
}

.team-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.team-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
}

.team-member {
    text-align: center;
}

.member-image {
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.member-image .image-placeholder {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--white);
    box-shadow: var(--shadow-md);
    transition: transform 0.4s ease;
}

.team-member:hover .member-image .image-placeholder {
    transform: scale(1.05);
}

.member-name {
    font-family: 'DM Serif Display', serif;
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 8px;
    font-weight: 400;
}

.member-role {
    font-size: 0.95rem;
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
}

.member-bio {
    color: var(--gray);
    line-height: 1.7;
    max-width: 350px;
    margin: 0 auto;
}

/* ============================================
   TIMELINE SECTION
   ============================================ */

.timeline-section {
    padding: 120px 20px;
    background: var(--light-gray);
}

.timeline-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--accent);
}

.timeline-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 60px;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: var(--accent);
    border: 4px solid var(--white);
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
    z-index: 2;
}

.timeline-item:nth-child(even) .timeline-year {
    order: 2;
    text-align: left;
}

.timeline-item:nth-child(even) .timeline-content {
    order: 1;
    text-align: right;
}

.timeline-year {
    font-family: 'DM Serif Display', serif;
    font-size: 3rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: right;
    padding-right: 40px;
    font-weight: 400;
}

.timeline-content {
    padding-left: 40px;
}

.timeline-content h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 10px;
    font-weight: 400;
}

.timeline-content p {
    color: var(--gray);
    line-height: 1.7;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    padding: 120px 20px;
    background: var(--gradient-2);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 165, 116, 0.2) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    border-radius: 50%;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-title {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 400;
}

.cta-text {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.cta-btn.primary {
    background: var(--accent);
    color: var(--dark);
}

.cta-btn.primary:hover {
    background: var(--accent-bright);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 165, 116, 0.3);
}

.cta-btn.secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.cta-btn.secondary:hover {
    background: var(--white);
    color: var(--dark);
    transform: translateY(-3px);
}

/* ============================================
   ANIMATIONS
   ============================================ */

[data-aos] {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-aos="fade-up"] {
    transform: translateY(50px);
}

[data-aos="fade-down"] {
    transform: translateY(-50px);
}

[data-aos="fade-left"] {
    transform: translateX(50px);
}

[data-aos="fade-right"] {
    transform: translateX(-50px);
}

[data-aos="zoom-in"] {
    transform: scale(0.8);
}

[data-aos="flip-left"] {
    transform: perspective(1000px) rotateY(-45deg);
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1) rotateY(0);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 968px) {
    .about-hero {
        padding: 120px 20px 60px;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .story-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .image-accent {
        top: 15px;
        left: 15px;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .timeline::before {
        left: 30px;
    }

    .timeline-item {
        grid-template-columns: 1fr;
        gap: 20px;
        padding-left: 60px;
    }

    .timeline-item::before {
        left: 30px;
    }

    .timeline-year {
        text-align: left;
        padding-right: 0;
        font-size: 2.5rem;
    }

    .timeline-item:nth-child(even) .timeline-year {
        order: 1;
        text-align: left;
    }

    .timeline-item:nth-child(even) .timeline-content {
        order: 2;
        text-align: left;
    }

    .timeline-content {
        padding-left: 0;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .shape-1 {
        width: 400px;
        height: 400px;
    }

    .shape-2 {
        width: 300px;
        height: 300px;
    }

    .stat-number {
        font-size: 3rem;
    }

    .stats-container {
        grid-template-columns: 1fr;
    }

    .image-placeholder {
        border-radius: 20px;
    }

    .image-accent {
        border-radius: 20px;
        top: 10px;
        left: 10px;
    }

    .value-card {
        padding: 40px 30px;
    }

    .member-image .image-placeholder {
        width: 150px;
        height: 150px;
        font-size: 3rem;
    }

    .timeline-item {
        padding-left: 50px;
    }

    .timeline-year {
        font-size: 2rem;
    }
}

/* ============================================
   PRINT STYLES
   ============================================ */

@media print {
    .navbar,
    .scroll-top,
    .hero-shapes,
    .cta-section {
        display: none;
    }

    .about-hero {
        min-height: auto;
        padding: 40px 20px;
    }

    body {
        background: white;
    }
}