/* Template Page Styles */
.template-page {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    position: relative;
}

/* Parallax background with top left grey corner */
.template-page .parallax-background {
    position: fixed;
    top: -100vh;
    left: 0;
    width: 100%;
    height: 200vh;
    background: 
        /* Top left corner grey - maximum opacity 1.0, extending further to the right */
        radial-gradient(ellipse at 0% 0%, rgba(53, 57, 60, 1) 0%, transparent 70% 100%),
        
        /* White base */
        linear-gradient(180deg,
            rgba(255, 250, 250, 1) 0%,
            rgba(255, 250, 250, 1) 100%
        );
    z-index: -1;
    transform: translateY(calc(var(--scroll) * 0.15px));
    will-change: transform;
}

.template-page .parallax-content {
    position: relative;
    z-index: 1;
}

/* Template Content Styles */
.template-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.template-page .page-title {
    font-family: 'Cinzel', serif;
    color: #131720;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

/* Content text styling */
.template-content p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #35393C;
    margin-bottom: 1.5em;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .template-page .page-title {
        font-size: 2rem;
    }
    
    .template-content {
        padding: 20px;
    }
}