/* Pennsylvania Page Specific Styles */
:root {
    --pa-gold: #ffffff;
    /* Keeping white as per "remove yellow" request */
    /* Other colors inherited from specific theme variables in style.css */
}

/* Hero Section */
.pa-hero-section {
    position: relative;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    color: white;
    /* Always white text on hero overlay */
}

.pa-hero-img {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: -2;
    object-fit: cover;
}

.pa-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.8) 100%);
    z-index: -1;
}

.pa-hero-content {
    z-index: 1;
    max-width: 900px;
    padding: 20px;
}

.pa-hero-title {
    font-family: 'Gallient', 'Playfair Display', serif;
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--pa-gold);
    line-height: 1.1;
}

.pa-hero-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.pa-hero-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Intro Section */
.pa-intro-section {
    padding: 100px 0;
    background-color: var(--bg-body);
}

.pa-intro-text-block {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

/* Services Grid */
.pa-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.pa-service-card {
    background: var(--bg-surface);
    padding: 40px 30px;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.pa-service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--text-muted);
}

.pa-service-icon {
    font-size: 2.5rem;
    color: var(--text-main);
    /* Standard text color instead of gold */
    margin-bottom: 20px;
}

.pa-service-title {
    font-family: 'Gallient', serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-main);
}

.pa-service-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Venue Section */
.pa-venue-section {
    padding: 100px 0;
    background-color: var(--bg-surface-alt);
}

.pa-venue-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.pa-venue-card {
    position: relative;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    background: var(--bg-surface);
}

.pa-venue-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.pa-venue-card:hover img {
    transform: scale(1.1);
}

.pa-venue-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 30px 20px;
    color: white;
}

.pa-venue-title {
    font-family: 'Gallient', serif;
    font-size: 1.4rem;
    color: var(--pa-gold);
    margin-bottom: 5px;
}

/* Responsive */
@media (max-width: 992px) {
    .pa-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .pa-services-grid {
        grid-template-columns: 1fr;
    }

    .pa-hero-title {
        font-size: 2.5rem;
    }

    .pa-hero-subtitle {
        font-size: 1.2rem;
    }

    .pa-venue-card {
        height: 250px;
    }
}