/* Layout Styles - About and Contact Sections */
.about-section,
.contact-section {
    width: 75vw;
    max-width: 900px;
    margin: 60px auto;
    padding: var(--section-padding);
    background: transparent;
    border: 2px solid var(--border-gold);
    border-radius: var(--border-radius-large);
    box-shadow:
        0 0 30px var(--glow-gold),
        inset 0 0 50px rgba(255, 215, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.about-section::before,
.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center,
            rgba(255, 215, 0, 0.02) 0%,
            transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.about-content {
    position: relative;
    z-index: 1;
}

.about-title,
.contact-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 40px;
    text-shadow:
        0 0 10px rgba(255, 215, 0, 0.5),
        var(--text-shadow-dark);
    font-family: 'Big Shoulders Display', sans-serif;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    text-align: justify;
    margin-bottom: 30px;
    text-shadow: var(--text-shadow-light);
}

.about-text::first-letter {
    float: left;
    font-size: 4rem;
    line-height: 3rem;
    padding-right: 8px;
    padding-top: 4px;
    color: gold;
    font-family: 'Big Shoulders Display', sans-serif;
    text-shadow:
        0 0 10px rgba(255, 215, 0, 0.8),
        2px 2px 4px black;
}

.about-text.quote::first-letter {
    float: none;
    font-size: 1.2rem;
    line-height: normal;
    padding: 0;
    color: #d4af37;
    font-family: inherit;
    text-shadow: 1px 1px 2px black;
    font-style: italic;
}

.about-text.quote {
    font-style: italic;
    color: #d4af37;
    text-align: center;
    font-size: 1.2rem;
    padding-left: 20px;
    margin: 40px 0;
    position: relative;
}