/* about.css */

/* Override the background wrap delay for internal pages so it appears instantly */
.about-bgwrap {
    animation-delay: 0s !important;
    opacity: 1 !important;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    z-index: -10;
}

.about-page-wrapper {
    padding: 150px 20px 100px;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
    position: relative;
    z-index: 10;
}

.about-title {
    font-family: 'Rockwell', Arial, sans-serif;
    font-size: 60px;
    color: #363636;
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: 4px;
}

.about-section {
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 30px;
    padding: 50px 60px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}

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

.section-title {
    font-family: "Quicksand", serif;
    font-size: 32px;
    color: #1B75B7;
    margin-bottom: 25px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-section p {
    font-family: "Montserrat", serif;
    font-size: 18px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.about-section p:last-child {
    margin-bottom: 0;
}

.about-section strong {
    font-weight: 600;
    color: #363636;
}

/* Specific Section Styles */
.story-section {
    border-left: 8px solid #FF7777;
}

.do-section {
    border-right: 8px solid #F7B34E;
}

.philosophy-section {
    border-left: 8px solid #64B57A;
}

.matter-section {
    border-right: 8px solid #1B75B7;
}

/* Feature List */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.feature-list li {
    background: rgba(255, 255, 255, 0.7);
    padding: 20px 25px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    font-family: "Quicksand", serif;
    font-weight: 600;
    font-size: 16px;
    color: #343434;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, background 0.3s ease;
}

.feature-list li:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.9);
}

.feature-list li::before {
    content: "→";
    color: #1B75B7;
    font-size: 20px;
    margin-right: 15px;
    font-weight: bold;
}

.highlight-text {
    font-size: 20px !important;
    font-weight: 500;
    color: #1B75B7 !important;
    font-style: italic;
    text-align: center;
    margin-top: 30px;
}

/* Philosophy Grid */
.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.philosophy-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.7), rgba(253, 253, 253, 0.9));
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    font-family: "Montserrat", serif;
    font-weight: 600;
    font-size: 18px;
    color: #363636;
    border: 1px solid rgba(255, 89, 94, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.philosophy-item:hover {
    transform: scale(1.02);
}

/* Responsive */
@media (max-width: 768px) {
    .about-page-wrapper {
        padding: 120px 15px 60px;
    }

    .about-section {
        padding: 30px 20px;
    }

    .about-title {
        font-size: 40px;
    }

    .philosophy-grid {
        grid-template-columns: 1fr;
    }
}