/* Eden's Fault - About Page Stylesheet */
/* Depends on: shared.css */

/* ===== BODY RESET ===== */
/* Prevents homepage styles.css flex layout from bleeding in if cached */
body {
    display: block;
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 20px 80px;
    position: relative;
    z-index: 1;
}

/* ===== PAGE HEADER ===== */
.page-header {
    text-align: center;
    margin-bottom: 60px;
}

.page-header h1 {
    font-size: 3.5rem;
    color: #f0e6d2;
    text-shadow: 2px 2px 8px rgba(139, 69, 19, 0.5);
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.page-header .divider {
    margin-bottom: 20px;
}

.tagline {
    font-size: 1.4rem;
    color: #b8b8b8;
    font-style: italic;
}

/* ===== SECTIONS ===== */
section {
    margin-bottom: 80px;
    background: rgba(26, 26, 26, 0.6);
    padding: 40px;
    border-radius: 10px;
    border: 1px solid rgba(139, 69, 19, 0.3);
    backdrop-filter: blur(10px);
}

section h2 {
    font-size: 2.5rem;
    color: #f0e6d2;
    margin-bottom: 30px;
    text-align: center;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
}

section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #c4c4c4;
}

/* ===== ABOUT SECTION ===== */
.about-section p {
    text-align: left;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== SERVICES GRID ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: rgba(0, 0, 0, 0.4);
    padding: 30px;
    border-radius: 8px;
    border: 2px solid rgba(139, 69, 19, 0.3);
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: #8b4513;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.3);
}

.service-card h3 {
    font-size: 1.5rem;
    color: #8b4513;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 1rem;
    margin-bottom: 0;
}

/* ===== WHY SECTION ===== */
.why-section p {
    text-align: center;
}

.benefits-list {
    list-style: none;
    max-width: 800px;
    margin: 0 auto;
}

.benefits-list li {
    font-size: 1.1rem;
    padding: 15px 20px;
    margin-bottom: 15px;
    background: rgba(0, 0, 0, 0.4);
    border-left: 4px solid #8b4513;
    border-radius: 5px;
    text-align: center;
}

.benefits-list strong {
    color: #8b4513;
}

/* ===== RESPONSIVE - TABLET ===== */
@media (max-width: 768px) {
    .container {
        padding: 80px 15px 60px;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    .tagline {
        font-size: 1.1rem;
    }

    section {
        padding: 30px 20px;
    }

    section h2 {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== RESPONSIVE - MOBILE ===== */
@media (max-width: 480px) {
    .page-header h1 {
        font-size: 2rem;
    }

    .tagline {
        font-size: 1rem;
    }

    section h2 {
        font-size: 1.8rem;
    }

    .service-card {
        padding: 20px;
    }
}