/* ===============================
   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;
}
