/* === about-style.css === */

:root { /* Ensure your variables are defined here or imported */
    --primary-color: #A0B2A6;
    --secondary-color: #f9f9f9;
    --accent-color: #D4AF37;
    --text-color: #333333;
    --heading-font: 'Playfair Display', serif;
    --body-font: 'Montserrat', sans-serif;
    --brandname-brown-color: #A98D67;
    --hero-cta-green: #88B04B;
    --border-radius: 10px;
    --box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
    --transition-speed: 0.3s;
}

body.about-page-body {
    background-color: #fff;
    font-family: var(--body-font);
    color: var(--text-color);
    line-height: 1.8;
}

/* --- About Page Hero (Styled like Contact Hero) --- */
.about-hero-section {
    padding: 120px 0 80px; /* Match contact hero padding, ADJUST FOR YOUR MAIN HEADER HEIGHT */
    background: linear-gradient(135deg, rgba(160, 178, 166, 0.8), rgba(136, 176, 75, 0.7)), url('../images/about-hero-bg.jpg') no-repeat center center/cover;
    /*
       IMPORTANT:
       1. Replace '../images/about-hero-bg.jpg' with an actual background image for THIS page.
          It can be the same as the contact page if you wish, or a different one that fits the "Our Story" theme.
       2. The gradient `linear-gradient(135deg, rgba(160, 178, 166, 0.8), rgba(136, 176, 75, 0.7))`
          uses your primary and hero CTA green colors. Adjust if needed.
    */
    color: #fff; /* Text color for on top of this hero */
    text-align: center;
    position: relative; /* For potential pseudo-elements like overlays */
    display: flex; /* To help center content if needed */
    align-items: center;
    justify-content: center;
}

/* Optional: If you used a ::before pseudo-element on contact hero for a pattern/texture */
.about-hero-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    /* background-image: url('../images/subtle-pattern.png'); */ /* Example */
    /* opacity: 0.1; */
    z-index: 1; /* Ensure it's behind content */
}

.about-hero-content { /* This class is already in your about.html */
    position: relative; /* To sit above the ::before pseudo-element */
    z-index: 2;
    max-width: 700px; /* Consistent with contact page hero content */
    margin: 0 auto;
}

.about-hero-content h1 {
    font-size: calc(2.8rem + 1.8vw); /* Matching contact page hero H1 */
    font-family: var(--heading-font);
    color: #fff;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2); /* Consistent text shadow */
    line-height: 1.2;
}

.about-hero-content .subtitle { /* Your existing class for the paragraph */
    font-size: calc(1rem + 0.2vw); /* Matching contact page hero paragraph */
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    font-weight: 300;
    letter-spacing: 0.3px; /* Added slight letter spacing */
}


/* --- Story Section (styles remain the same from your provided about-style.css) --- */
.story-section {
    padding: 80px 0;
    background-color: #fff;
}
/* ... (KEEP ALL OTHER STYLES FOR .story-container, .story-grid, .philosophy-section, etc., from your provided about-style.css) ... */

.story-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 15px;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 768px) {
    .story-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 50px;
    }
    .story-block:nth-child(even) .story-image-wrapper {
        order: -1;
    }
}

.story-block {
    margin-bottom: 60px;
}
.story-block:last-child {
    margin-bottom: 0;
}

.story-content h2 {
    font-family: var(--heading-font);
    font-size: 2.5rem;
    color: var(--brandname-brown-color);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}
.story-content p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1.5rem;
}
.story-content p:last-child {
    margin-bottom: 0;
}

.story-image-wrapper img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    object-fit: cover;
    max-height: 450px;
}

/* --- Philosophy/Values Section --- */
.philosophy-section {
    padding: 80px 0;
    background-color: var(--secondary-color);
}
.philosophy-section .section-heading {
    text-align: center;
    margin-bottom: 50px;
}
.philosophy-section .section-heading h2 {
    font-size: 2.8rem;
    color: var(--text-color);
    font-family: var(--heading-font);
}
.philosophy-section .section-heading p {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 10px auto 0;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.philosophy-item {
    background-color: #fff;
    padding: 30px 25px;
    text-align: center;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}
.philosophy-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.1);
}

.philosophy-item .icon-wrapper {
    font-size: 2.5rem;
    color: var(--hero-cta-green);
    margin-bottom: 20px;
    display: inline-block;
}

.philosophy-item h3 {
    font-family: var(--body-font);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 10px;
}

.philosophy-item p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.7;
}

/* --- Team/Founder Section (Optional) --- */
.team-section {
    padding: 80px 0;
    background-color: #fff;
}
.team-member {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}
.team-member img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.team-member h3 {
    font-family: var(--heading-font);
    font-size: 1.8rem;
    margin-bottom: 5px;
}
.team-member .role {
    font-size: 1rem;
    color: var(--brandname-brown-color);
    font-weight: 500;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}
.team-member p {
    font-size: 1rem;
    color: #555;
}

/* --- Call to Action Section --- */
.about-cta-section {
    padding: 70px 0;
    background-color: var(--primary-color);
    color: #fff;
    text-align: center;
}
.about-cta-section h2 {
    font-family: var(--heading-font);
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 1rem;
}
.about-cta-section p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.about-cta-button {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--text-color);
    padding: 14px 35px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: none;
    border-radius: var(--button-border-radius);
    cursor: pointer;
    transition: background-color var(--transition-speed), transform var(--transition-speed), box-shadow var(--transition-speed);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.about-cta-button:hover {
    background-color: hsl(from var(--accent-color) h s calc(l - 10%));
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* Animation utility */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}
.animate-on-scroll.delay-1 { transition-delay: 0.15s; }
.animate-on-scroll.delay-2 { transition-delay: 0.3s; }
.animate-on-scroll.delay-3 { transition-delay: 0.45s; }

/* Responsive for About Page */
@media (max-width: 767px) {
    .about-hero-section { padding: 100px 0 60px; } /* Adjusted from contact page for slightly less padding if header is smaller */
    .about-hero-content h1 { font-size: calc(2rem + 2vw); }
    .about-hero-content .subtitle { font-size: calc(0.9rem + 0.2vw); }

    .story-section, .philosophy-section, .team-section, .about-cta-section {
        padding: 60px 0;
    }
    .story-content h2 { font-size: 2rem; }
    .philosophy-section .section-heading h2 { font-size: 2.2rem; }
    .about-cta-section h2 { font-size: 2rem; }

    .story-block:nth-child(even) .story-image-wrapper {
        order: 0;
    }
    .story-image-wrapper { margin-top: 30px; }
    .story-block:nth-child(even) .story-image-wrapper { margin-top: 30px; }
}
/* NEW STYLES FOR VINZERES CREDIT */
#main-footer .vinzeres-credit {
    font-size: 0.8rem; /* Slightly smaller than copyright */
    color: rgba(240, 240, 240, 0.6); /* Slightly dimmer text */
    margin-top: -0.5rem; /* Reduce space above if copyright has 1rem bottom margin */
    margin-bottom: 1.5rem; /* Space before social links */
}

#main-footer .vinzeres-credit a {
    color: rgba(240, 240, 240, 0.7); /* Slightly brighter for the link */
    text-decoration: underline;
    text-decoration-color: rgba(240, 240, 240, 0.4); /* Subtle underline */
    transition: color var(--transition-speed) ease, text-decoration-color var(--transition-speed) ease;
}

#main-footer .vinzeres-credit a:hover {
    color: var(--accent-color); /* Use your site's accent color on hover */
    text-decoration-color: var(--accent-color);
}
/* END OF NEW STYLES FOR VINZERES CREDIT */