/* About Page Styles */

.page-header {
    position: relative;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
    overflow: hidden;
}

.header-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    background-image: 
        url('images/pub-4.jpg'),
        linear-gradient(135deg, rgba(26, 77, 46, 0.85) 0%, rgba(15, 40, 24, 0.95) 100%);
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
}

.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
}

.header-content {
    position: relative;
    z-index: 2;
    text-align: left;
    color: var(--white);
    max-width: 800px;
    padding: 4rem;
    margin-left: 2rem;
}

.header-subtitle {
    font-size: 1.1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 0.5rem;
    display: block;
    border-left: 4px solid var(--accent);
    padding-left: 1rem;
}

.header-content h1 {
    font-size: clamp(3rem, 8vw, 5rem);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    font-weight: 700;
}

.header-content p {
    font-size: 1.3rem;
    font-weight: 300;
    line-height: 1.6;
    max-width: 600px;
}

/* Story Section */
.story {
    background: var(--white);
}

.story-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: center;
}

/* Values Section */
.values {
    background: var(--cream);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.value-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 8px;
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.value-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
    box-shadow: 0 20px 50px var(--shadow-medium);
}

.value-number {
    font-size: 4rem;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    color: var(--accent);
    opacity: 0.2;
    line-height: 1;
    margin-bottom: 1rem;
}

.value-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.value-card p {
    color: var(--text-medium);
    line-height: 1.8;
}

/* Location About Section */
.location-about {
    background: var(--white);
}

.location-grid-about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.location-text h2 {
    margin: 1rem 0 1.5rem;
}

.nearby-attractions {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--cream);
    border-radius: 8px;
    border-left: 4px solid var(--accent);
}

.nearby-attractions h3 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.nearby-attractions ul {
    list-style: none;
}

.nearby-attractions li {
    padding: 0.75rem 0;
    color: var(--text-medium);
    border-bottom: 1px solid var(--cream-dark);
}

.nearby-attractions li:last-child {
    border-bottom: none;
}

.nearby-attractions strong {
    color: var(--text-dark);
    font-weight: 600;
}

.location-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 60px var(--shadow-medium);
}

.location-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.location-image:hover img {
    transform: scale(1.05);
}

/* Team Section */
.team {
    background: var(--cream);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.team-member {
    text-align: center;
    background: var(--white);
    border-radius: 8px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px var(--shadow-medium);
}

.member-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--accent);
}

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

.team-member h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.member-title {
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.team-member p:last-child {
    color: var(--text-medium);
}

/* Awards Section */
.awards {
    background: var(--primary-dark);
    color: var(--white);
}

.awards .section-label {
    color: var(--accent);
}

.awards .section-header h2 {
    color: var(--white);
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

.award-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.award-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-10px);
}

.award-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.award-item h3 {
    color: var(--accent);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.award-item p {
    color: var(--cream-dark);
    font-size: 0.95rem;
}

/* CTA Section */
.cta-about {
    background: var(--primary);
    padding: 6rem 0;
}

.cta-content {
    text-align: center;
    color: var(--white);
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: var(--cream);
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 968px) {
    .story-grid,
    .location-grid-about {
        grid-template-columns: 1fr;
    }

    .values-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .awards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .story-content,
    .location-content-about {
        text-align: center;
    }

    .value-card,
    .team-member {
        text-align: center;
    }
}

@media (max-width: 640px) {
    .awards-grid {
        grid-template-columns: 1fr;
    }

    .page-header {
        height: 50vh;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    .page-header p {
        font-size: 1.1rem;
    }

    .header-content {
        padding: 2rem;
        margin-left: 1rem;
        text-align: center;
    }

    .header-subtitle {
        border-left: none;
        padding-left: 0;
        text-align: center;
    }
}
