@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@700&family=Inter:wght@400;700;900&display=swap');

:root {
    --hyp-orange: #ff6b2b;
    --hyp-cream: #fff9e6;
    --hyp-dark: #1a1a1a;
}

.hyp-hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background-color: var(--hyp-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}

/* Wavy Topographic Background */
.hyp-topo-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    opacity: 0.2;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.5' d='M0,20 Q50,0 100,20 T200,20 M0,40 Q50,20 100,40 T200,40 M0,60 Q50,40 100,60 T200,60 M0,80 Q50,60 100,80 T200,80 M0,100 Q50,80 100,100 T200,100 M0,120 Q50,100 100,120 T200,120 M0,140 Q50,120 100,140 T200,140 M0,160 Q50,140 100,160 T200,160 M0,180 Q50,160 100,180 T200,180'/%3E%3C/svg%3E");
    background-size: 400px;
}

.hyp-container {
    position: relative;
    width: 100%;
    max-width: 1400px;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Massive Text behind image */
.hyp-background-text {
    position: absolute;
    z-index: 1;
    text-align: center;
    width: 100%;
    user-select: none;
}

.hyp-background-text h1 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(8rem, 20vw, 18rem);
    line-height: 0.8;
    margin: 0;
    color: var(--hyp-cream);
    letter-spacing: -5px;
    text-transform: uppercase;
}

/* Center Character Wrapper */
.hyp-character-wrap {
    position: relative;
    z-index: 2; /* Sits on top of the text */
    height: 90vh;
    display: flex;
    align-items: flex-end;
}

.hyp-character-placeholder {
    width: 600px;
    height: 600px;
    /* Temporarily styled until you add image */
    /* background: rgba(255,255,255,0.1);
    backdrop-filter: blur(5px);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    border: 2px dashed rgba(255,255,255,0.3); */
}

/* Left Nav Card */
.hyp-nav-card {
    position: absolute;
    left: 40px;
    bottom: 100px;
    background: var(--hyp-cream);
    padding: 20px;
    border-radius: 15px;
    width: 300px;
    transform: rotate(-3deg);
    box-shadow: 20px 20px 0px rgba(0,0,0,0.1);
    z-index: 3;
}

.hyp-nav-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 20px;
    margin: 5px 0;
    font-weight: 700;
    color: var(--hyp-dark);
    cursor: pointer;
    border-radius: 10px;
    transition: 0.3s;
}

.hyp-nav-item.hyp-active {
    background: var(--hyp-dark);
    color: var(--hyp-cream);
}

.hyp-nav-item:hover:not(.hyp-active) {
    background: rgba(0,0,0,0.05);
}

/* Right Footer Info */
.hyp-footer-right {
    position: absolute;
    right: 40px;
    bottom: 60px;
    text-align: right;
    z-index: 3;
    color: var(--hyp-cream);
}

.hyp-year {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(6rem, 12vw, 10rem);
    line-height: 1;
    font-weight: 900;
}

.hyp-slogan {
    font-weight: 900;
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-top: -10px;
}

/* Responsive Scaling */
@media (max-width: 1024px) {
    .hyp-background-text h1 { font-size: 15vw; }
    .hyp-nav-card { width: 220px; left: 20px; }
    .hyp-character-placeholder { width: 80vw; }
}


:root {
    --p-equity-bg: #f5f0d6; /* Cream beige background */
    --p-equity-dark: #1a1a1a;
    --p-equity-orange: #ff6b2b;
}

.p-equity-section {
    background-color: var(--p-equity-bg);
    min-height: 100vh;
    padding: 100px 20px;
    display: flex;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    color: var(--p-equity-dark);
}

.p-equity-container {
    max-width: 1200px;
    width: 100%;
}

/* Header Styling */
.p-equity-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 80px;
    gap: 40px;
}

.p-equity-main-title {
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 900;
    line-height: 0.9;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: -2px;
}

.p-equity-highlight {
    color: var(--p-equity-orange);
}

.p-equity-top-desc {
    max-width: 350px;
    font-size: 0.95rem;
    line-height: 1.5;
    font-weight: 500;
    margin-top: 10px;
}

/* Grid Layout */
.p-equity-content-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Left Column */
.p-equity-star-icon {
    font-size: 5rem;
    color: var(--p-equity-orange);
    line-height: 1;
    margin-bottom: 20px;
}

.p-equity-sub-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
}

.p-equity-main-desc {
    max-width: 550px;
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.8;
}

/* Right Column: Isometric Stack */
.p-equity-visual-col {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.p-equity-stack-container {
    position: relative;
    width: 300px;
    height: 350px;
    margin-bottom: 40px;
}

.p-equity-card {
    position: absolute;
    width: 180px;
    height: 240px;
    background: var(--p-equity-orange);
    border-radius: 12px;
    top: 50%;
    /* Calculate step-wise position for isometric look */
    transform: translate(-50%, -50%) skewY(-15deg) rotate(15deg);
    left: calc(30% + (var(--i) * 25px));
    z-index: var(--i);
    box-shadow: 10px 10px 20px rgba(0,0,0,0.1);
    /* Vary the color slightly for depth */
    filter: brightness(calc(1.1 - (var(--i) * 0.05)));
}

.p-equity-card-dark {
    background: var(--p-equity-dark);
}

/* Stat Block */
.p-equity-stat-block {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-right: 20px;
}

.p-equity-stat-number {
    font-size: 6rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -4px;
}

.p-equity-stat-number span {
    font-size: 3rem;
    margin-left: -5px;
}

.p-equity-stat-label {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
}

/* Responsive */
@media (max-width: 992px) {
    .p-equity-header { flex-direction: column; }
    .p-equity-content-grid { grid-template-columns: 1fr; }
    .p-equity-visual-col { align-items: flex-start; margin-top: 40px;}
    .p-equity-stack-container { width: 100%; height: 300px; }
}




:root {
    --tmpl-text-main: #111827;
    --tmpl-text-sub: #6b7280;
    --tmpl-bg: #ffffff;
    --tmpl-radius: 12px;
}

.tmpl-section {
    background-color: var(--tmpl-bg);
    padding: 80px 20px;
    font-family: 'Inter', -apple-system, sans-serif;
}

.tmpl-container {
    max-width: 1280px;
    margin: 0 auto;
}

/* Header */
.tmpl-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.tmpl-main-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--tmpl-text-main);
    margin: 0 0 8px 0;
}

.tmpl-subtitle {
    color: var(--tmpl-text-sub);
    font-size: 1.1rem;
    margin: 0;
}

.tmpl-browse-link {
    color: var(--tmpl-text-main);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: opacity 0.2s;
}

.tmpl-browse-link:hover { opacity: 0.7; }

/* Grid */
.tmpl-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 32px;
}

/* Card */
.tmpl-card {
    display: flex;
    flex-direction: column;
}

.tmpl-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    border-radius: var(--tmpl-radius);
    overflow: hidden;
    background-color: #f3f4f6;
    cursor: pointer;
}

.tmpl-img-placeholder {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: top center;
    transition: transform 0.5s ease;
}

.tmpl-card:hover .tmpl-img-placeholder {
    transform: scale(1.05);
}

/* Hover Overlay & Button */
.tmpl-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tmpl-details-btn {
    background-color: white;
    color: #111;
    border: none;
    padding: 14px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transform: translateY(20px);
    transition: transform 0.3s ease, background-color 0.2s;
}

.tmpl-details-btn:hover {
    background-color: #f9fafb;
}

/* Trigger Hover State */
.tmpl-img-wrapper:hover .tmpl-overlay {
    opacity: 1;
}

.tmpl-img-wrapper:hover .tmpl-details-btn {
    transform: translateY(0);
}

/* Card Footer */
.tmpl-footer {
    padding-top: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tmpl-meta-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.tmpl-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 0.8rem;
}

.tmpl-card-title {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--tmpl-text-main);
}

.tmpl-author {
    margin: 0;
    font-size: 0.85rem;
    color: var(--tmpl-text-sub);
}

.tmpl-price-tag {
    font-size: 0.9rem;
    color: var(--tmpl-text-sub);
    font-weight: 500;
}

/* Mobile responsive adjustments */
@media (max-width: 640px) {
    .tmpl-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}
