/* ===============================================
   MAD ANDAAZ - ABOUT PAGE STYLES
   Enhanced with founder story & community focus
   =============================================== */

/* Hero Section - Matching Blog/News Style */
.about-hero {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    padding: 4rem 5%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        repeating-linear-gradient(90deg, transparent, transparent 50px, rgba(255, 215, 0, 0.03) 50px, rgba(255, 215, 0, 0.03) 51px);
    pointer-events: none;
}

.about-hero-overlay {
    position: relative;
    z-index: 1;
}

.about-hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    animation: fadeUp 0.6s ease-out both;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.about-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.about-hero p {
    font-size: 1.2rem;
    color: #FFD700;
    line-height: 1.6;
    font-weight: 600;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Main Content Container */
.about-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    background: #fff;
}

.about-section {
    padding: 4rem 0;
    border-bottom: 1px solid #e9ecef;
}

.about-section:last-child {
    border-bottom: none;
}

/* Section Badge - Center Aligned */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
}

.about-section {
    text-align: center;
}

/* Founder Story Section */
.founder-story h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: #1a1a1a;
    text-align: center;
}

.story-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: start;
    text-align: left;
}

.story-text p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    text-align: left;
}

.lead-text {
    font-size: 1.3rem !important;
    font-weight: 600;
    color: #2c3e50 !important;
    line-height: 1.7 !important;
}

.highlight-text {
    background: linear-gradient(135deg, #fff8e1, #fffbf0);
    padding: 1.5rem;
    border-left: 4px solid #FFD700;
    border-radius: 8px;
    font-size: 1.15rem !important;
    color: #2c3e50 !important;
    font-weight: 600;
}

.highlight-text i {
    color: #FFD700;
    margin-right: 0.5rem;
    font-size: 1.3rem;
}

.story-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.story-image:hover {
    transform: translateY(-5px);
}

.story-image img {
    width: 100%;
    height: auto;
    display: block;
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: #fff;
    padding: 1.5rem 1rem 1rem;
    font-size: 0.95rem;
    font-weight: 600;
}

.image-caption i {
    color: #FFD700;
    margin-right: 0.5rem;
}

/* Mission & Vision Section */
.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

.mission-card, .vision-card {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 3rem;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.mission-card::before, .vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #667eea, #764ba2);
}

.mission-card:hover, .vision-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.card-icon i {
    font-size: 2rem;
    color: #fff;
}

.mission-card h2, .vision-card h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.mission-card p, .vision-card p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
}

/* What We Do Section - Center Aligned on Both Mobile and PC */
.what-we-do {
    text-align: center;
}

.what-we-do h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #1a1a1a;
    text-align: center;
}

.section-intro {
    font-size: 1.15rem;
    color: #666;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

.content-categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    justify-items: center;
}

.category-card {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    text-align: center;
}

.category-card:hover {
    border-color: #FFD700;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.category-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: transform 0.3s ease;
}

.category-card:hover .category-icon {
    transform: scale(1.1) rotate(5deg);
}

.category-icon i {
    font-size: 2rem;
    color: #fff;
}

.category-icon.food {
    background: linear-gradient(135deg, #f093fb, #f5576c);
}

.category-icon.travel {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
}

.category-icon.events {
    background: linear-gradient(135deg, #43e97b, #38f9d7);
}

.category-icon.culture {
    background: linear-gradient(135deg, #fa709a, #fee140);
}

.category-icon.editorial {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.category-icon.community {
    background: linear-gradient(135deg, #30cfd0, #330867);
}

.category-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.8rem;
}

.category-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* Community Values Section */
.community-values h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 3rem;
    color: #1a1a1a;
    text-align: center;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.value-item {
    text-align: center;
    padding: 2rem 1rem;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.value-item:hover {
    background: #fff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.value-item i {
    font-size: 3rem;
    color: #FFD700;
    margin-bottom: 1rem;
}

.value-item h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.value-item p {
    font-size: 0.9rem;
    color: #666;
}

/* Podcast Section */
.about-podcast {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    padding: 3rem;
    border-radius: 16px;
    margin: 2rem 0;
}

.podcast-content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    align-items: center;
}

.podcast-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.podcast-icon i {
    font-size: 3rem;
    color: #2c3e50;
}

.podcast-text h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
}

.coming-soon-badge {
    display: inline-block;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-left: 0.5rem;
}

.podcast-text p {
    font-size: 1.05rem;
    color: #ddd;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.podcast-features {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.podcast-features span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #FFD700;
    font-weight: 600;
    font-size: 0.95rem;
}

.podcast-features i {
    color: #43e97b;
}

/* Join Community CTA Section */
.join-community {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 4rem 3rem !important;
    border-radius: 20px;
    text-align: center;
}

.cta-wrapper h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.cta-wrapper > p {
    font-size: 1.15rem;
    color: #666;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.2rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.cta-button.primary {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: #fff;
}

.cta-button.secondary {
    background: #fff;
    color: #2c3e50;
    border: 2px solid #2c3e50;
}

.cta-button.secondary:hover {
    background: #2c3e50;
    color: #fff;
}

.cta-button i {
    font-size: 1.3rem;
}

.cta-note {
    font-size: 1rem;
    color: #666;
    font-style: italic;
}

.cta-note i {
    color: #FFD700;
    margin-right: 0.5rem;
}

/* ===============================================
   RESPONSIVE DESIGN
   =============================================== */

@media (max-width: 992px) {
    .story-content {
        grid-template-columns: 1fr;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
    }

    .content-categories {
        grid-template-columns: repeat(2, 1fr);
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 3rem 5%;
    }

    .about-hero h1 {
        font-size: 2rem;
    }

    .about-hero p {
        font-size: 1.05rem;
    }

    .about-badge {
        font-size: 0.8rem;
        padding: 0.4rem 1.2rem;
    }

    .about-section {
        padding: 3rem 0;
    }

    .founder-story h2,
    .what-we-do h2,
    .community-values h2,
    .cta-wrapper h2 {
        font-size: 2rem;
    }

    .story-text p {
        font-size: 1rem;
    }

    .lead-text {
        font-size: 1.15rem !important;
    }

    .mission-card, .vision-card {
        padding: 2rem;
    }

    .content-categories {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .about-podcast {
        padding: 2rem 1.5rem;
    }

    .podcast-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }

    .podcast-icon {
        margin: 0 auto;
        width: 80px;
        height: 80px;
    }

    .podcast-icon i {
        font-size: 2.5rem;
    }

    .podcast-text h2 {
        font-size: 1.5rem;
        line-height: 1.4;
    }

    .podcast-text p {
        font-size: 0.95rem;
    }

    .podcast-features {
        justify-content: center;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-button {
        width: 100%;
        max-width: 350px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 2.5rem 1rem;
    }

    .about-hero h1 {
        font-size: 1.7rem;
    }

    .about-hero p {
        font-size: 0.95rem;
    }

    .founder-story h2,
    .what-we-do h2,
    .community-values h2,
    .cta-wrapper h2 {
        font-size: 1.7rem;
    }

    .mission-card h2, .vision-card h2 {
        font-size: 1.5rem;
    }

    .about-podcast {
        padding: 1.5rem 1rem;
    }

    .podcast-icon {
        width: 70px;
        height: 70px;
    }

    .podcast-icon i {
        font-size: 2rem;
    }

    .podcast-text h2 {
        font-size: 1.3rem;
        line-height: 1.3;
    }

    .coming-soon-badge {
        font-size: 0.65rem;
        padding: 0.25rem 0.8rem;
        margin-left: 0;
        margin-top: 0.5rem;
        display: block;
    }

    .podcast-text p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .podcast-features {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .podcast-features span {
        font-size: 0.85rem;
    }
}
