/* About Page Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: 'Oswald', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #000;
    background-color: #fff;
}

.about-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.back-button {
    position: absolute;
    top: 0;
    left: 0;
    width: 44px;
    height: 44px;
    background: white;
    border: 1px solid #000;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
}

.back-button:hover {
    background: #f8f9fa;
    color: #000;
    transform: translateY(-1px);
}

.back-button svg {
    width: 20px;
    height: 20px;
}

.about-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: #000;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-icon svg {
    width: 30px;
    height: 30px;
    color: white;
}

.about-header h1 {
    font-size: 3rem;
    margin: 0 0 10px 0;
    color: #000;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin: 0;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

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

.about-intro {
    text-align: center;
    padding: 30px;
    background: white;
    border: 1px solid #000;
    border-radius: 2px;
}

.about-intro h2 {
    color: #000;
    margin-bottom: 20px;
    font-size: 1.8rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-intro p {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto 20px auto;
    font-weight: 300;
}

.personal-note {
    margin-top: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-left: 4px solid #000;
    border-radius: 0 2px 2px 0;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.personal-note blockquote {
    text-align: center;
    margin: 0 auto;
    max-width: 700px;
    width: 100%;
    padding: 0;
}

.personal-note blockquote p {
    font-size: 1rem;
    color: #555;
    margin: 0 0 15px 0;
    font-style: italic;
    line-height: 1.7;
    text-align: center;
}

.personal-note blockquote cite {
    display: block;
    font-size: 0.9rem;
    color: #333;
    font-style: normal;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    margin: 0;
}

.about-sections {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.about-section {
    background: white;
    border: 1px solid #000;
    border-radius: 2px;
    padding: 30px;
    transition: all 0.3s ease;
}

.about-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.section-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.section-icon {
    width: 40px;
    height: 40px;
    background: #000;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.section-icon svg {
    width: 20px;
    height: 20px;
    color: white;
}

.section-header h3 {
    margin: 0;
    color: #000;
    font-size: 1.3rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-section p {
    color: #666;
    font-size: 0.95rem;
    font-weight: 300;
    margin: 0;
}

.features-showcase {
    text-align: center;
}

.features-showcase h2 {
    color: #000;
    margin-bottom: 40px;
    font-size: 1.8rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.feature-card {
    background: white;
    border: 1px solid #000;
    border-radius: 2px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
    background: #000;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.feature-card h4 {
    margin: 0 0 10px 0;
    color: #000;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 1rem;
}

.feature-card p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
    font-weight: 300;
}

.stats-highlight {
    text-align: center;
    padding: 40px 30px;
    background: white;
    border: 1px solid #000;
    border-radius: 2px;
}

.stats-highlight h2 {
    color: #000;
    margin-bottom: 30px;
    font-size: 1.8rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-highlight {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-highlight .stat-number {
    font-size: 2.5rem;
    font-weight: 400;
    color: #000;
    margin-bottom: 5px;
    font-family: 'Oswald', sans-serif;
}

.stat-highlight .stat-label {
    color: #666;
    font-size: 0.9rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.developer-info {
    text-align: center;
}

.developer-info h2 {
    color: #000;
    margin-bottom: 30px;
    font-size: 1.8rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.developer-card {
    background: white;
    border: 1px solid #000;
    border-radius: 2px;
    padding: 30px;
    max-width: 600px;
    margin: 0 auto;
}

.developer-content h4 {
    margin: 0 0 5px 0;
    color: #000;
    font-size: 1.4rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.developer-title {
    color: #666;
    font-size: 1rem;
    font-weight: 300;
    margin: 0 0 15px 0;
    font-style: italic;
}

.developer-content p {
    color: #666;
    font-size: 0.95rem;
    font-weight: 300;
    margin-bottom: 20px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.developer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.developer-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: white;
    border: 1px solid #000;
    border-radius: 2px;
    color: #000;
    text-decoration: none;
    font-weight: 400;
    transition: all 0.2s ease;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    font-family: 'Oswald', sans-serif;
}

.developer-link:hover {
    background: #f8f9fa;
    transform: translateY(-1px);
}

.developer-link svg {
    width: 16px;
    height: 16px;
}

.cta-section {
    text-align: center;
    padding: 40px 30px;
    background: white;
    border: 1px solid #000;
    border-radius: 2px;
}

.cta-section h2 {
    color: #000;
    margin-bottom: 15px;
    font-size: 1.8rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-section p {
    color: #666;
    font-size: 1.1rem;
    font-weight: 300;
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 15px 25px;
    border-radius: 2px;
    text-decoration: none;
    font-weight: 400;
    transition: all 0.2s ease;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Oswald', sans-serif;
}

.cta-btn.primary {
    background: #000;
    color: white;
    border: 1px solid #000;
}

.cta-btn.primary:hover {
    background: #333;
}

.cta-btn.secondary {
    background: white;
    color: #000;
    border: 1px solid #000;
}

.cta-btn.secondary:hover {
    background: #f8f9fa;
    transform: translateY(-1px);
}

.cta-btn svg {
    width: 16px;
    height: 16px;
}

/* Footer styles are inherited from home.css */

/* Footer responsiveness for About page */
@media (max-width: 768px) {
    footer {
        margin-top: 40px;
        padding: 20px 0;
        margin-bottom: 15px;
    }
    
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 25px;
    }
    
    .footer-left {
        align-items: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .stats-container {
        gap: 20px;
        justify-content: center;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
}

/* Responsive Design */

/* Large tablets and small desktops */
@media (max-width: 1024px) {
    .about-container {
        padding: 16px;
    }
    
    .about-header h1 {
        font-size: 2.8rem;
    }
    
    .about-content {
        gap: 50px;
    }
    
    .about-intro {
        padding: 25px;
    }
    
    .about-sections {
        gap: 16px;
    }
    
    .about-section {
        padding: 25px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

/* Tablets */
@media (max-width: 768px) {
    .about-container {
        padding: 15px;
    }
    
    .about-header {
        margin-bottom: 30px;
    }
    
    .about-header h1 {
        font-size: 2.5rem;
        margin-bottom: 8px;
    }
    
    .about-subtitle {
        font-size: 1.1rem;
    }
    
    .about-content {
        gap: 40px;
    }
    
    .about-intro {
        padding: 20px;
    }
    
    .about-intro h2 {
        font-size: 1.6rem;
        margin-bottom: 15px;
    }
    
    .about-intro p {
        font-size: 1rem;
    }
    
    .personal-note {
        padding: 16px;
        margin-top: 16px;
    }
    
    .personal-note p {
        font-size: 0.95rem;
    }
    
    .personal-note cite {
        font-size: 0.85rem;
    }
    
    .about-sections {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .about-section {
        padding: 20px;
    }
    
    .section-header {
        gap: 12px;
        margin-bottom: 15px;
    }
    
    .section-icon {
        width: 35px;
        height: 35px;
    }
    
    .section-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .section-header h3 {
        font-size: 1.2rem;
    }
    
    .features-showcase h2, 
    .stats-highlight h2, 
    .developer-info h2, 
    .cta-section h2 {
        font-size: 1.6rem;
        margin-bottom: 30px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .feature-card {
        padding: 20px;
    }
    
    .feature-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 12px;
    }
    
    .feature-icon svg {
        width: 22px;
        height: 22px;
    }
    
    .stats-highlight {
        padding: 30px 20px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-highlight .stat-number {
        font-size: 2rem;
    }
    
    .developer-card {
        padding: 25px;
    }
    
    .developer-content h4 {
        font-size: 1.3rem;
    }
    
    .developer-links {
        gap: 15px;
    }
    
    .cta-section {
        padding: 30px 20px;
    }
    
    .cta-buttons {
        gap: 15px;
    }
    
    .cta-btn {
        padding: 12px 20px;
        font-size: 0.95rem;
    }
    
    .back-button {
        width: 44px;
        height: 44px;
    }
    
    .back-button svg {
        width: 18px;
        height: 18px;
    }
}

/* Mobile phones */
@media (max-width: 480px) {
    .about-container {
        padding: 12px;
    }
    
    .about-header h1 {
        font-size: 2rem;
        margin-bottom: 6px;
    }
    
    .about-subtitle {
        font-size: 1rem;
    }
    
    .about-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }
    
    .about-icon svg {
        width: 25px;
        height: 25px;
    }
    
    .about-content {
        gap: 30px;
    }
    
    .about-intro {
        padding: 16px;
    }
    
    .about-intro h2 {
        font-size: 1.4rem;
        margin-bottom: 12px;
    }
    
    .about-intro p {
        font-size: 0.95rem;
    }
    
    .personal-note {
        padding: 14px;
        margin-top: 14px;
    }
    
    .personal-note p {
        font-size: 0.9rem;
    }
    
    .personal-note cite {
        font-size: 0.8rem;
    }
    
    .about-sections {
        gap: 12px;
    }
    
    .about-section {
        padding: 16px;
    }
    
    .section-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        margin-bottom: 12px;
    }
    
    .section-icon {
        width: 32px;
        height: 32px;
    }
    
    .section-icon svg {
        width: 16px;
        height: 16px;
    }
    
    .section-header h3 {
        font-size: 1.1rem;
    }
    
    .about-section p {
        font-size: 0.9rem;
    }
    
    .features-showcase h2, 
    .stats-highlight h2, 
    .developer-info h2, 
    .cta-section h2 {
        font-size: 1.4rem;
        margin-bottom: 25px;
    }
    
    .features-grid {
        gap: 12px;
    }
    
    .feature-card {
        padding: 15px;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 10px;
    }
    
    .feature-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .feature-card h4 {
        font-size: 0.95rem;
        margin-bottom: 8px;
    }
    
    .feature-card p {
        font-size: 0.85rem;
    }
    
    .stats-highlight {
        padding: 25px 15px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        text-align: center;
    }
    
    .stat-highlight .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-highlight .stat-label {
        font-size: 0.85rem;
    }
    
    .developer-card {
        padding: 20px;
    }
    
    .developer-content h4 {
        font-size: 1.2rem;
    }
    
    .developer-title {
        font-size: 0.9rem;
    }
    
    .developer-content p {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    .developer-links {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
    
    .developer-link {
        padding: 12px 16px;
        font-size: 0.85rem;
        min-width: 140px;
        justify-content: center;
    }
    
    .cta-section {
        padding: 25px 15px;
    }
    
    .cta-section p {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .cta-btn {
        padding: 14px 20px;
        font-size: 0.9rem;
        min-width: 180px;
        justify-content: center;
    }
    
    .back-button {
        width: 44px;
        height: 44px;
    }
    
    .back-button svg {
        width: 16px;
        height: 16px;
    }
}

/* Very small screens */
@media (max-width: 320px) {
    .about-container {
        padding: 10px;
    }
    
    .about-header h1 {
        font-size: 1.8rem;
    }
    
    .about-subtitle {
        font-size: 0.95rem;
    }
    
    .about-intro {
        padding: 14px;
    }
    
    .about-section {
        padding: 14px;
    }
    
    .feature-card {
        padding: 12px;
    }
    
    .feature-card h4 {
        font-size: 0.9rem;
    }
    
    .feature-card p {
        font-size: 0.8rem;
    }
    
    .stats-highlight {
        padding: 20px 12px;
    }
    
    .stat-highlight .stat-number {
        font-size: 1.6rem;
    }
    
    .developer-card {
        padding: 16px;
    }
    
    .developer-content h4 {
        font-size: 1.1rem;
    }
    
    .developer-link {
        padding: 10px 14px;
        font-size: 0.8rem;
        min-width: 130px;
    }
    
    .cta-section {
        padding: 20px 12px;
    }
    
    .cta-btn {
        padding: 12px 16px;
        font-size: 0.85rem;
        min-width: 160px;
    }
}