/* Wedding Decor Pennsylvania Page Styles */

/* Theme Utilities */
.wpa-text-muted {
    color: var(--text-muted) !important;
}

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

.wpa-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;
}

.wpa-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;
}

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

.wpa-hero-title {
    font-family: 'Gallient', 'Playfair Display', serif;
    font-size: 4rem;
    margin-bottom: 1rem;
    color: white;
    line-height: 1.1;
}

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

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

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

.wpa-intro-content {
    text-align: center;
}

.wpa-intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-main);
    margin-bottom: 1.5rem;
}

.wpa-intro-text:last-child {
    margin-bottom: 0;
}

/* Venues Section */
.wpa-venues-section {
    padding: 100px 0;
    background-color: var(--bg-body);
}

.wpa-venues-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.wpa-venue-card {
    position: relative;
    height: 280px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-card);
}

.wpa-venue-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
    z-index: 1;
    transition: background 0.4s ease;
}

.wpa-venue-card:hover::before {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.1) 100%);
}

.wpa-venue-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.wpa-venue-name {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px;
    z-index: 2;
    font-family: 'Gallient', serif;
    font-size: 1.4rem;
    color: white;
    margin: 0;
}

/* Explore Locations Section */
.wpa-explore-section {
    padding: 100px 0;
    background-color: var(--bg-surface-alt);
}

.wpa-explore-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.wpa-location-card {
    position: relative;
    height: 320px;
    border-radius: 12px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-card);
    text-decoration: none;
    display: block;
}

.wpa-location-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 1;
    transition: background 0.4s ease;
}

.wpa-location-card:hover::before {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 60%, rgba(0, 0, 0, 0.3) 100%);
}

.wpa-location-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.wpa-location-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    z-index: 2;
}

.wpa-location-title {
    font-family: 'Gallient', serif;
    font-size: 1.8rem;
    color: white;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .wpa-hero-title {
        font-size: 2.5rem;
    }

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

    .wpa-venues-grid {
        grid-template-columns: 1fr;
    }

    .wpa-explore-grid {
        grid-template-columns: 1fr;
    }
}