/* About Page */
.about-section {
    padding: 150px 40px 100px;
    background: var(--white);
}

.about-container {
    max-width: 1000px;
    margin: 0 auto;
}

.about-hero {
    text-align: center;
    margin-bottom: 80px;
}

.about-hero h1 {
    font-family: 'Cinzel', serif;
    font-size: 3.5rem;
    letter-spacing: 0.3em;
    color: var(--primary-green);
    margin-bottom: 30px;
}

.about-hero p {
    font-size: 1.2rem;
    color: var(--gray);
    line-height: 1.8;
}

.about-content {
    display: grid;
    gap: 60px;
}

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

.about-block h2 {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    letter-spacing: 0.2em;
    color: var(--primary-green);
    margin-bottom: 25px;
}

.about-block p {
    font-size: 1.05rem;
    color: var(--gray);
    line-height: 1.9;
}

.about-image {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--cream) 0%, var(--light-gray) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    border-radius: 12px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

