.ph-2a5da248-container {
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-attachment: scroll; /* Fallback for parallax */
    overflow: hidden;
}

/* Optional smooth zoom on load */
@keyframes ph-2a5da248-zoom {
    from { transform: scale(1.05); }
    to { transform: scale(1); }
}

.ph-2a5da248-container::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: inherit;
    animation: ph-2a5da248-zoom 10s ease-out forwards;
    z-index: 0;
}

.ph-2a5da248-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 1;
}

.ph-2a5da248-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 0 20px;
    max-width: 800px;
    animation: ph-2a5da248-fade-in 1.5s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.ph-2a5da248-subtitle {
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 20px;
    opacity: 0.8;
}

.ph-2a5da248-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 300;
    line-height: 1.2;
    margin: 0 0 40px;
}

.ph-2a5da248-btn {
    display: inline-block;
    padding: 15px 40px;
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.5);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.85rem;
    transition: all 0.4s ease;
}

.ph-2a5da248-btn:hover {
    background: #fff;
    color: #000;
}

@keyframes ph-2a5da248-fade-in {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
