@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Goldman:wght@400;700&display=swap');

/* About Page Styles */
.about-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #ffffff 100%);
    min-height: 100vh;
    padding: 80px 0;
}

/* Hero Section */
.about-hero {
    text-align: center;
    margin-bottom: 80px;
}

.about-title {
    font-family: 'Goldman', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.about-title-accent {
    color: rgb(255, 187, 0);
}

.about-subtitle {
    font-family: 'Roboto', sans-serif;
    font-size: 1.4rem;
    color: #666;
    font-weight: 300;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* About Hero Section */
.about-hero-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.about-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23333" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.about-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.about-hero-tagline {
    font-family: 'Goldman', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: rgb(255, 187, 0);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.about-hero-title {
    font-family: 'Goldman', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-hero-title .highlight {
    color: rgb(255, 187, 0);
}

.about-hero-description {
    font-family: 'Roboto', sans-serif;
    font-size: 1.2rem;
    color: #cccccc;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Mission Section */
.mission-section {
    background: #fff;
    border-radius: 24px;
    padding: 60px;
    margin-bottom: 60px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

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

.mission-visual {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #000 0%, #333 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mission-logo {
    font-family: 'Goldman', sans-serif;
    color: rgb(255, 187, 0);
    font-size: 2rem;
    font-weight: 700;
}

.mission-title {
    font-family: 'Goldman', sans-serif;
    font-size: 2.5rem;
    color: #000;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.mission-text {
    font-family: 'Roboto', sans-serif;
    color: #666;
    font-weight: 300;
    line-height: 1.8;
    font-size: 1.2rem;
    margin-bottom: 25px;
}

.mission-highlight {
    color: rgb(255, 187, 0);
    font-weight: 600;
}

/* Values Section */
.values-section {
    margin-bottom: 80px;
}

.values-title {
    font-family: 'Goldman', sans-serif;
    font-size: 2.5rem;
    color: #000;
    margin-bottom: 50px;
    text-align: center;
    text-transform: uppercase;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.value-card {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 3px solid transparent;
    transition: all 0.3s ease;
}

.value-card:hover {
    border-color: rgba(255, 187, 0, 0.3);
    transform: translateY(-5px);
}

.value-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-icon.minimal {
    background: linear-gradient(135deg, rgb(255, 187, 0) 0%, #f39c12 100%);
}

.value-icon.quality {
    background: linear-gradient(135deg, #333 0%, #000 100%);
}

.value-icon.community {
    background: linear-gradient(135deg, #666 0%, #444 100%);
}

.value-icon-text {
    font-family: 'Goldman', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
}

.value-icon.minimal .value-icon-text {
    color: #000;
}

.value-icon.quality .value-icon-text,
.value-icon.community .value-icon-text {
    color: rgb(255, 187, 0);
}

.value-name {
    font-family: 'Goldman', sans-serif;
    font-size: 1.5rem;
    color: #000;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.value-description {
    font-family: 'Roboto', sans-serif;
    color: #666;
    font-weight: 300;
    line-height: 1.6;
}

/* Story Section */
.story-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 70px 0;
}

.story-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.story-timeline {
    position: relative;
    padding-left: 40px;
}

.story-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, rgb(255, 187, 0), rgba(255, 187, 0, 0.3));
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -30px;
    top: 8px;
    width: 12px;
    height: 12px;
    background: rgb(255, 187, 0);
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 0 3px rgb(255, 187, 0);
}

.timeline-year {
    font-family: 'Goldman', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: rgb(255, 187, 0);
    min-width: 80px;
    text-align: center;
    background: white;
    padding: 8px 16px;
    border-radius: 20px;
    border: 2px solid rgb(255, 187, 0);
}

.timeline-content {
    flex: 1;
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.timeline-content h3 {
    font-family: 'Goldman', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.timeline-content p {
    font-family: 'Roboto', sans-serif;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.story-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.stat-number {
    font-family: 'Goldman', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: rgb(255, 187, 0);
    margin-bottom: 8px;
}

.stat-label {
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

/* Team Section */
.team-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 80px 0;
}

.team-title {
    font-family: 'Goldman', sans-serif;
    font-size: 2.5rem;
    color: #000;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
    justify-items: center;
}

.team-member {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    max-width: 400px;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(255, 187, 0, 0.15);
}

.member-photo {
    width: 200px;
    height: 280px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.member-info {
    padding: 24px;
    text-align: center;
}

.member-info h3 {
    font-family: 'Goldman', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.member-role {
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
    color: rgb(255, 187, 0);
    font-weight: 500;
    margin-bottom: 12px;
}

.member-bio {
    font-family: 'Roboto', sans-serif;
    font-size: 0.85rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 16px;
}

.member-social {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.social-link {
    font-family: 'Roboto', sans-serif;
    font-size: 0.8rem;
    color: #666;
    text-decoration: none;
    padding: 6px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: rgb(255, 187, 0);
    border-color: rgb(255, 187, 0);
    background: rgba(255, 187, 0, 0.1);
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
    padding: 70px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    display: block;
    font-family: 'Goldman', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
    color: #333;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: rgb(255, 187, 0);
    box-shadow: 0 0 0 3px rgba(255, 187, 0, 0.1);
}

.contact-btn {
    padding: 14px 32px;
    font-size: 0.9rem;
    font-weight: 550;
    border-radius: 35px;
    border: none;
    cursor: pointer;
    transition: all 0.5s ease;
    font-family: 'Goldman', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    background: transparent;
    color: #1a1a1a;
    border: 3px solid #1a1a1a;
    width: 100%;
}

.contact-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #1a1a1a;
    transition: all 0.5s ease;
    z-index: -1;
}

.contact-btn:hover::before {
    left: 0;
}

.contact-btn:hover {
    color: #ffffff;
    border-color: #1a1a1a;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-card {
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-card h3 {
    font-family: 'Goldman', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.contact-card p {
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.contact-card strong {
    color: #1a1a1a;
    font-weight: 600;
}

/* Active menu indicator */
.menu-btn-wrapper.active .menu-btn {
    color: rgb(255, 187, 0);
    border-bottom: 2px solid rgb(255, 187, 0);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .mission-grid,
    .story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .about-hero-section {
        padding: 100px 0 60px;
    }
    
    .about-hero-content {
        padding: 0 20px;
    }
    
    .about-hero-title {
        font-size: 2.5rem;
    }
    
    .story-timeline {
        padding-left: 20px;
    }
    
    .timeline-item {
        flex-direction: column;
        gap: 16px;
        align-items: center;
        text-align: center;
    }
    
    .timeline-item::before {
        left: -10px;
    }
    
    .story-timeline::before {
        left: 0;
    }
    
    .story-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .mission-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .about-title {
        font-size: 2rem;
    }
    
    .about-subtitle {
        font-size: 1.2rem;
    }
    
    .mission-section,
    .story-section {
        padding: 30px 20px;
    }
    
    .story-stats {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .timeline-year {
        min-width: 60px;
        font-size: 1rem;
    }
}
