/* ===============================
   SAVCART ABOUT PAGE - DARK VIBES
================================ */

body {
    background: #0f1115;
    color: #e4e6eb;
    font-family: 'Segoe UI', sans-serif;
}

/* Hero */
.about-hero {
    height: 60vh;
    background: linear-gradient(135deg, #0f1115 0%, #1a1d24 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.about-overlay h1 {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 15px;
}

.tagline {
    font-size: 1.2rem;
    color: #00c6ff;
}

/* Container */
.container {
    max-width: 1100px;
    margin: auto;
    padding: 60px 20px;
}

/* Card */
.about-card {
    background: #161a22;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
    margin-bottom: 60px;
    transition: 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
}

/* Grid */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.about-feature {
    background: #161a22;
    padding: 25px;
    border-radius: 12px;
    transition: 0.3s ease;
    border: 1px solid #222;
}

.about-feature:hover {
    background: #1f2430;
    transform: translateY(-6px);
    border-color: #00c6ff;
}

/* Mission */
.about-mission {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, #161a22, #1c2230);
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}

.about-mission h2 {
    margin-bottom: 20px;
    color: #00c6ff;
}
/* ===============================
   Simplified Developer Section
================================ */
.developer-section {
    margin-top: 80px;
    margin-bottom: 60px;
    text-align: center;
}

.developer-section h2 {
    font-size: 2.4rem;
    color: #00c6ff;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

.developer-section h2::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 3px;
    background: #00c6ff;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.dev-card-simple {
    background: #161a22;
    border-radius: 16px;
    padding: 45px 35px;
    max-width: 580px;
    margin: 0 auto;
    box-shadow: 0 10px 40px rgba(0,0,0,0.45);
    border: 1px solid #222;
    transition: all 0.3s ease;
}

.dev-card-simple:hover {
    transform: translateY(-6px);
    border-color: #00c6ff33;
    box-shadow: 0 15px 50px rgba(0, 198, 255, 0.1);
}

.dev-info h3 {
    font-size: 2.2rem;
    color: #ffffff;
    margin: 0 0 25px 0;
}

.dev-contact {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #c9cdd8;
    margin-bottom: 25px;
}

.dev-contact strong {
    color: #00c6ff;
}

.dev-note {
    font-size: 1.05rem;
    color: #a0aeca;
    line-height: 1.6;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .dev-card-simple {
        padding: 35px 25px;
    }
    
    .developer-section h2 {
        font-size: 2.1rem;
    }
    
    .dev-info h3 {
        font-size: 1.9rem;
    }
}
