/* ===== PREMIUM ENHANCEMENTS ===== */

/* --- Gold Gradient Shimmer on Section Headings --- */
.section-content h2 {
    background: linear-gradient(135deg,
            #c9a227 0%,
            #f4d35e 25%,
            #ffd700 50%,
            #f4d35e 75%,
            #c9a227 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: goldShimmer 4s linear infinite;
}

@keyframes goldShimmer {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 200% center;
    }
}

/* --- Ornamental Gold Dividers Between Sections --- */
.message-section::after,
.scripture-section::after,
.connect-section::after {
    content: '';
    display: block;
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #f4d35e, transparent);
    margin: 0 auto;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.message-section,
.scripture-section,
.connect-section {
    position: relative;
}

/* --- Enhanced Glassmorphism on Cards --- */
.card,
.connect-card {
    border: 1px solid rgba(244, 211, 94, 0.08);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.card:hover,
.connect-card:hover {
    border-color: rgba(244, 211, 94, 0.25);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(244, 211, 94, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: translateY(-8px);
}

/* --- Icon Hover Glow & Subtle Rotation --- */
.stained-icon {
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
}

.card:hover .stained-icon,
.connect-card:hover .stained-icon {
    transform: scale(1.1);
    filter:
        drop-shadow(0 0 20px rgba(244, 211, 94, 0.5)) drop-shadow(0 0 40px rgba(244, 211, 94, 0.2));
}

/* --- Golden Glow Pulse on Icons --- */
.card-icon,
.connect-icon {
    position: relative;
}

.card-icon::after,
.connect-icon::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(244, 211, 94, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.card:hover .card-icon::after,
.connect-card:hover .connect-icon::after {
    opacity: 1;
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.08);
        opacity: 1;
    }
}

/* --- Link Arrow Slide Effect --- */
.connect-link {
    position: relative;
    overflow: hidden;
}

.connect-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, #f4d35e, #ffc857);
    transition: width 0.3s ease;
}

.connect-card:hover .connect-link::after {
    width: 100%;
}

/* --- Scripture Cards Gold Accent --- */
.scripture {
    border-left: 3px solid transparent;
    transition: all 0.4s ease;
}

.scripture:hover {
    border-left-color: rgba(244, 211, 94, 0.5);
    background: rgba(255, 255, 255, 0.06);
    transform: translateX(4px);
}

/* --- Footer Icon Premium Glow --- */
.footer-icon {
    transition: all 0.5s ease;
}

.footer-icon:hover {
    filter: drop-shadow(0 0 30px rgba(244, 211, 94, 0.6)) drop-shadow(0 0 60px rgba(244, 211, 94, 0.3));
    transform: scale(1.05);
}

/* --- Smooth Scroll --- */
html {
    scroll-behavior: smooth;
}

/* --- Scroll Reveal Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger children */
.reveal-stagger>* {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-stagger.visible>*:nth-child(1) {
    transition-delay: 0.1s;
}

.reveal-stagger.visible>*:nth-child(2) {
    transition-delay: 0.2s;
}

.reveal-stagger.visible>*:nth-child(3) {
    transition-delay: 0.3s;
}

.reveal-stagger.visible>*:nth-child(4) {
    transition-delay: 0.4s;
}

.reveal-stagger.visible>*:nth-child(5) {
    transition-delay: 0.5s;
}

.reveal-stagger.visible>*:nth-child(6) {
    transition-delay: 0.6s;
}

.reveal-stagger.visible>* {
    opacity: 1;
    transform: translateY(0);
}

/* --- Hero Parallax Depth --- */
.hero {
    background-attachment: fixed;
    background-size: cover;
}

/* --- CTA Button Premium Upgrade --- */
.cta-button {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.2),
            transparent);
    transition: left 0.5s ease;
    z-index: -1;
}

.cta-button:hover::before {
    left: 100%;
}

/* --- Hero Title Enhanced Glow --- */
.hero-title .script {
    text-shadow:
        0 0 20px rgba(244, 211, 94, 0.3),
        0 0 40px rgba(244, 211, 94, 0.1);
}

/* --- About Section Premium --- */
.about-section p {
    transition: color 0.3s ease;
}

.about-section strong {
    background: linear-gradient(135deg, #f4d35e, #ffc857);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* --- Floating Smiley Enhanced --- */
@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    25% {
        transform: translateY(-12px) rotate(2deg);
    }

    75% {
        transform: translateY(-6px) rotate(-1deg);
    }
}

/* --- Music Player Glass Effect --- */
.hero .apple-music-container,
.hero iframe {
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}
/* --- Pre-reveal state (added by JS) --- */
.pre-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.pre-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}


/* ===== Find a Church Section ===== */
.church-section {
    padding: 80px 20px;
    text-align: center;
}

.church-section h2 {
    font-size: 2.2rem;
    margin-bottom: 12px;
}

.church-section > .section-content > p {
    color: #a09888;
    font-size: 1.05rem;
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.church-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 700px;
    margin: 0 auto;
}

.church-card,
.church-card:link,
.church-card:visited,
.church-card:hover,
.church-card:active {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 32px 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    text-decoration: none !important;
    color: #f0e6d3 !important;
    transition: all 0.3s ease;
    cursor: pointer;
}

.church-card:hover {
    background: rgba(255, 255, 255, 0.06) !important;
    border-color: rgba(255, 255, 255, 0.12) !important;
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.church-icon {
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
}

.church-icon .stained-icon {
    width: 140px;
    height: 140px;
    object-fit: contain;
}

.church-card h3 {
    font-size: 1.2rem;
    color: #f0e6d3 !important;
    margin: 0;
}

.church-card p {
    font-size: 0.9rem;
    color: #a09888 !important;
    line-height: 1.6;
    margin: 0;
}

.church-card .connect-link {
    font-size: 0.85rem;
    color: #c49a2a !important;
    font-weight: 500;
    margin-top: 4px;
    transition: color 0.2s ease;
}

.church-card:hover .connect-link {
    color: #dab94e !important;
}

@media (max-width: 600px) {
    .church-grid {
        grid-template-columns: 1fr;
    }
    .church-section {
        padding: 60px 16px;
    }
}


/* ===== The Truth Section — Premium Redesign ===== */
.truth-section {
    padding: 120px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Ambient background glow */
.truth-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(196, 154, 42, 0.06) 0%, rgba(196, 154, 42, 0.02) 40%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.truth-section .section-content {
    position: relative;
    z-index: 1;
}

/* --- Top Ornament Star --- */
.truth-ornament-top {
    font-size: 1.2rem;
    color: #c9a227;
    margin-bottom: 16px;
    letter-spacing: 8px;
    opacity: 0.7;
    animation: pulseStarTruth 3s ease-in-out infinite;
}

@keyframes pulseStarTruth {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.15); }
}

/* --- Subtitle Rule with Cross --- */
.truth-subtitle-rule {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin: 20px auto 50px;
    max-width: 300px;
}

.truth-subtitle-rule > span:first-child,
.truth-subtitle-rule > span:last-child {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(244, 211, 94, 0.5), transparent);
}

.rule-cross {
    font-size: 0;
    color: #c9a227;
    padding: 0 16px;
    opacity: 0.8;
    position: relative;
    display: inline-block;
    width: 14px;
    height: 18px;
}

.rule-cross::before,
.rule-cross::after {
    content: '';
    position: absolute;
    background: #c9a227;
    border-radius: 1px;
}

/* Vertical bar */
.rule-cross::before {
    width: 2px;
    height: 18px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

/* Horizontal bar */
.rule-cross::after {
    width: 10px;
    height: 2px;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
}

/* --- Prose Container --- */
.truth-prose {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

/* --- Scroll Reveal for truth blocks --- */
.truth-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.truth-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== PULL-QUOTE (Opening) ===== */
.truth-pullquote {
    position: relative;
    margin: 0;
    padding: 40px 36px;
    border: none;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border-left: 3px solid rgba(196, 154, 42, 0.4);
}

.truth-pullquote::before {
    content: '\201C';
    position: absolute;
    top: -10px;
    left: 20px;
    font-family: 'Cinzel', serif;
    font-size: 5rem;
    color: rgba(196, 154, 42, 0.2);
    line-height: 1;
    pointer-events: none;
}

.truth-pullquote p {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.3rem;
    line-height: 2;
    color: #c8baa8;
    font-style: italic;
    margin: 0;
    text-align: left;
}

/* ===== ORNAMENTAL DIVIDERS ===== */
.truth-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 8px 0;
}

.truth-divider span {
    color: #c9a227;
    font-size: 1.1rem;
    opacity: 0.6;
}

/* ===== OBSERVATION TRIO ===== */
.truth-trio {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 20px 0;
}

.trio-line {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.35rem;
    font-style: italic;
    color: #e0d5c5;
    margin: 0;
    line-height: 1.8;
    text-align: center;
    opacity: 0.9;
}

.trio-line.trio-long {
    font-size: 1.25rem;
    max-width: 580px;
}

/* ===== NARRATIVE BLOCKS (with gold accent border) ===== */
.truth-narrative {
    text-align: left;
    padding: 28px 32px;
    border-left: 2px solid rgba(196, 154, 42, 0.2);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.015) 0%, transparent 100%);
    border-radius: 0 12px 12px 0;
    transition: border-left-color 0.4s ease, background 0.4s ease;
}

.truth-narrative:hover {
    border-left-color: rgba(196, 154, 42, 0.5);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, transparent 100%);
}

.truth-narrative p {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.2rem;
    line-height: 2.1;
    color: #d4c9b8;
    margin: 0;
}

.truth-narrative strong {
    background: linear-gradient(135deg, #f4d35e, #ffc857);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: 1.3rem;
}

/* Fracture variant — slightly darker mood */
.truth-fracture {
    border-left-color: rgba(180, 130, 80, 0.15);
}

.truth-fracture p {
    color: #b8a898;
}

/* ===== MAJOR DECLARATION ===== */
.truth-declaration {
    text-align: center;
    padding: 32px 0;
}

.decl-main {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    background: linear-gradient(135deg, #c9a227 0%, #f4d35e 40%, #ffd700 60%, #f4d35e 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: goldShimmer 4s linear infinite;
    margin: 0 0 12px;
    line-height: 1.6;
}

.decl-sub {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.4rem;
    font-style: italic;
    color: #d4c9b8;
    margin: 0;
    line-height: 1.6;
}

/* ===== BRIDGE STATEMENT (Centerpiece) ===== */
.truth-bridge {
    position: relative;
    text-align: center;
    padding: 48px 24px;
}

.bridge-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 120px;
    background: radial-gradient(ellipse, rgba(244, 211, 94, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.truth-bridge p {
    font-family: 'Cinzel', serif;
    font-size: 1.6rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    background: linear-gradient(135deg, #c9a227 0%, #f4d35e 30%, #ffd700 50%, #f4d35e 70%, #c9a227 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: goldShimmer 4s linear infinite;
    margin: 0;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* ===== CRESCENDO DECLARATIONS ===== */
.truth-crescendo {
    text-align: center;
    padding: 24px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cresc-line {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.3rem;
    font-style: italic;
    color: #d8cec0;
    margin: 0;
    line-height: 1.8;
}

.cresc-hero {
    font-family: 'Cinzel', serif;
    font-size: 2.2rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    background: linear-gradient(135deg, #c9a227 0%, #f4d35e 25%, #ffd700 50%, #f4d35e 75%, #c9a227 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: goldShimmer 4s linear infinite;
    margin: 8px 0 0;
    line-height: 1.5;
    text-shadow: none;
    filter: drop-shadow(0 0 20px rgba(244, 211, 94, 0.15));
}

/* ===== POETIC DESCENT (line by line) ===== */
.truth-poem {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 8px 0;
}

.truth-poem p {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.2rem;
    line-height: 2;
    color: #d0c5b5;
    margin: 0;
    font-style: italic;
    transition: color 0.3s ease;
}

.truth-poem p:hover {
    color: #e8ddd0;
}

/* ===== CULMINATION NARRATIVE ===== */
.truth-culmination {
    border-left-color: rgba(196, 154, 42, 0.35);
    background: linear-gradient(135deg, rgba(196, 154, 42, 0.03) 0%, transparent 100%);
}

/* ===== QUIET DECLARATIONS ===== */
.truth-quiet {
    text-align: center;
    padding: 16px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.truth-quiet p {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.2rem;
    font-style: italic;
    color: #b8a898;
    margin: 0;
    line-height: 1.9;
}

/* ===== THE CORE CARD — Gospel Summary ===== */
.truth-core-card {
    position: relative;
    padding: 56px 40px;
    margin: 16px 0;
    border-radius: 20px;
    overflow: hidden;
    text-align: center;
}

.core-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(196, 154, 42, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.core-border {
    position: absolute;
    inset: 0;
    border-radius: 20px;
    border: 1px solid transparent;
    background: linear-gradient(135deg, rgba(196, 154, 42, 0.25), rgba(196, 154, 42, 0.05), rgba(196, 154, 42, 0.15)) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    animation: borderPulseTruth 4s ease-in-out infinite;
}

@keyframes borderPulseTruth {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.core-content {
    position: relative;
    z-index: 1;
}

.core-intro {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: #c9a227;
    margin: 0 0 28px;
    text-transform: uppercase;
}

.core-lines {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 32px;
}

.core-lines p {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.25rem;
    font-style: italic;
    color: #e0d5c5;
    margin: 0;
    line-height: 1.8;
}

.core-highlight {
    font-family: 'Cinzel', serif !important;
    font-size: 1.5rem !important;
    font-weight: 600 !important;
    font-style: normal !important;
    letter-spacing: 0.04em;
    background: linear-gradient(135deg, #c9a227, #f4d35e, #ffd700, #f4d35e, #c9a227);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: goldShimmer 4s linear infinite;
    padding: 8px 0;
    filter: drop-shadow(0 0 15px rgba(244, 211, 94, 0.12));
}

.core-invitation {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.15rem;
    color: #b8a898;
    margin: 0;
    line-height: 2;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== FINALE ===== */
.truth-finale {
    padding: 32px 0 0;
    text-align: center;
}

.finale-rule {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin: 0 auto 32px;
    max-width: 200px;
}

.finale-rule > span:first-child,
.finale-rule > span:last-child {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(244, 211, 94, 0.4), transparent);
}

.finale-line {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    background: linear-gradient(135deg, #c9a227 0%, #f4d35e 35%, #ffd700 50%, #f4d35e 65%, #c9a227 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: goldShimmer 4s linear infinite;
    margin: 0 0 12px;
    line-height: 1.6;
}

.finale-last {
    font-size: 1.8rem;
    margin: 0;
    filter: drop-shadow(0 0 25px rgba(244, 211, 94, 0.15));
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .truth-section {
        padding: 80px 16px;
    }
    .truth-prose {
        gap: 36px;
    }
    .truth-pullquote {
        padding: 28px 24px;
    }
    .truth-pullquote::before {
        font-size: 3.5rem;
        top: -6px;
        left: 12px;
    }
    .truth-pullquote p {
        font-size: 1.1rem;
    }
    .trio-line {
        font-size: 1.15rem;
    }
    .truth-narrative {
        padding: 20px 24px;
    }
    .truth-narrative p {
        font-size: 1.05rem;
        line-height: 1.95;
    }
    .decl-main {
        font-size: 1.25rem;
    }
    .decl-sub {
        font-size: 1.15rem;
    }
    .truth-bridge p {
        font-size: 1.3rem;
    }
    .cresc-hero {
        font-size: 1.7rem;
    }
    .truth-poem p {
        font-size: 1.05rem;
    }
    .truth-core-card {
        padding: 36px 24px;
    }
    .core-intro {
        font-size: 1.1rem;
    }
    .core-lines p {
        font-size: 1.1rem;
    }
    .core-highlight {
        font-size: 1.25rem !important;
    }
    .finale-line {
        font-size: 1.25rem;
    }
    .finale-last {
        font-size: 1.45rem;
    }
    .truth-bg-glow {
        width: 500px;
        height: 500px;
    }
}

/* Contact email styling */
.contact-email {
    margin-top: 1rem;
    font-size: 0.95rem;
}
.contact-email a,
.contact-email a:link,
.contact-email a:visited {
    text-decoration: none;
    transition: color 0.2s ease;
}
.contact-email a:hover {
    text-decoration: underline;
}
