/* About Page Custom Styling */
/* Strict about- prefix policy applied */
/* No :root variables used */

.about-main {
    width: 100%;
    overflow-x: hidden;
    background-color: #fffef8;
    /* Creamy white background */
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Hero Section */
.about-hero {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #5d4037;
    text-align: center;
    padding: 0 20px;
}

.about-hero-content {
    max-width: 800px;
    z-index: 2;
}

.about-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    color: #ffd700;
    /* Gold */
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
}

.about-hero-subtitle {
    font-size: 1.5rem;
    color: #ffffff;
    font-weight: 300;
    letter-spacing: 1px;
}

/* Page Structure */
.about-section {
    padding: 60px 30px;
    max-width: 1000px;
    margin: 40px auto;
    border-radius: 40px;
    background: #fffef8;
    box-shadow:
        15px 15px 35px rgba(210, 180, 140, 0.2),
        -10px -10px 30px rgba(255, 255, 255, 0.9),
        inset 4px 4px 10px rgba(255, 255, 255, 1),
        inset -4px -4px 10px rgba(210, 180, 140, 0.05);
    border: 3px solid rgba(255, 255, 255, 0.7);
    transition: transform 0.3s ease;
}

.about-section:hover {
    transform: translateY(-5px);
}

.about-heading {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #b8860b;
    /* Dark Goldenrod */
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(255, 215, 0, 0.3);
}

.about-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #ffd700;
}

.about-content {
    text-align: center;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
    font-family: 'Segoe UI', sans-serif;
}

.about-text strong {
    color: #d4a017;
}

.about-text.emphasis {
    font-weight: 500;
    color: #333;
    font-size: 1.2rem;
    border-top: 1px solid #eee;
    padding-top: 2rem;
    margin-top: 2rem;
}

/* Specific Section Tweaks */
.about-legacy {
    background-color: #fff;
}

.about-craftsmanship {
    background-color: #fffcf5;
    /* Slight different for contrast */
}

.about-modern-soul {
    background-color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .about-hero-title {
        font-size: 2.5rem;
    }

    .about-heading {
        font-size: 2rem;
    }

    .about-text {
        font-size: 1rem;
    }
}