/* Stellar Stone - Main CSS */
/* Fonts */
@font-face { font-family: 'Poppins'; src: url('/fonts/poppins/pxiByp8kv8JHgFVrLDz8V15vFP-KUEg.woff2') format('woff2'); font-weight: 300; font-style: normal; font-display: swap; }
@font-face { font-family: 'Poppins'; src: url('/fonts/poppins/pxiEyp8kv8JHgFVrFJXUc1NECPY.woff2') format('woff2'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Poppins'; src: url('/fonts/poppins/pxiByp8kv8JHgFVrLGT9V15vFP-KUEg.woff2') format('woff2'); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: 'Poppins'; src: url('/fonts/poppins/pxiByp8kv8JHgFVrLEj6V15vFP-KUEg.woff2') format('woff2'); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: 'Poppins'; src: url('/fonts/poppins/pxiByp8kv8JHgFVrLCz7V15vFP-KUEg.woff2') format('woff2'); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: 'Heebo'; src: url('/fonts/heebo/NGSpv5_NC0k9P_v6ZUCbLRAHxK1E1yycd0Onz02SXQ.woff2') format('woff2'); font-weight: 300; font-style: normal; font-display: swap; }
@font-face { font-family: 'Heebo'; src: url('/fonts/heebo/NGSpv5_NC0k9P_v6ZUCbLRAHxK1EiSycd0Onz02SXQ.woff2') format('woff2'); font-weight: 400; font-style: normal; font-display: swap; }

:root { --stellar-primary: #FCFCFC; --stellar-secondary: #66FCF1; --stellar-accent-hover: #4ABDB4; --stellar-bg-primary: #000000; --stellar-bg-secondary: #121212; --stellar-bg-tertiary: #252525; --stellar-text-secondary: #D0D0D0; --stellar-border: #363636; --stellar-form: #252525; --stellar-transition: cubic-bezier(0.165, 0.84, 0.44, 1); --container-max-width: 1170px; }
html { line-height: 1.15; -webkit-text-size-adjust: 100%; }
*, *::before, *::after { -webkit-box-sizing: border-box; box-sizing: border-box; }
body { margin: 0; padding: 0; }

/* Starfield Background */
.starfield-background { position: fixed; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: -1; pointer-events: none; }
h1, h2, h3, h4, h5, h6 { margin-top: 0.5rem; margin-bottom: 1rem; font-weight: 700; line-height: 1.2; font-family: 'Poppins', sans-serif; color: var(--stellar-primary); }
h1 { font-size: 2.5rem; } h2 { font-size: 2rem; } h3 { font-size: 1.75rem; } h4 { font-size: 1.5rem; } h5 { font-size: 1.25rem; } h6 { font-size: 1rem; }
p { margin-top: 0; margin-bottom: 0; } img { height: auto; max-width: 100%; }
a { color: var(--stellar-secondary); text-decoration: none; transition: color 0.3s ease; } a:hover { color: var(--stellar-accent-hover); }
ul, ol { list-style: none; padding: 0; margin: 0; }
.container { max-width: var(--container-max-width); margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }

.btn { display: inline-block; padding: 23px 30px; font-family: 'Heebo', sans-serif; font-size: 15px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; border: 2px solid var(--stellar-secondary); border-radius: 0px; transition: all .3s ease; cursor: pointer; text-decoration: none; background-color: transparent; color: var(--stellar-primary); }
.btn:hover { border-color: var(--stellar-accent-hover); color: var(--stellar-primary); }
.btn-fill { background-color: var(--stellar-secondary); color: var(--stellar-bg-primary); border-color: var(--stellar-secondary); }
.btn-fill:hover { background-color: var(--stellar-accent-hover); border-color: var(--stellar-accent-hover); color: var(--stellar-bg-primary); }
.grid { display: grid; gap: 35px; }
.grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
@media (min-width: 768px) { .grid-2 { grid-template-columns: repeat(2, 1fr); } .grid-3 { grid-template-columns: repeat(2, 1fr); } .grid-4 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } .grid-4 { grid-template-columns: repeat(4, 1fr); } }
.animate { opacity: 0; visibility: hidden; transition-property: opacity, transform; transition-duration: 0.7s; transition-timing-function: var(--stellar-transition); }
.animate-init { opacity: 1; visibility: visible; transform: translateY(0) translateX(0) scale(1) rotate(0); }
.zeever-animate { opacity: 0; visibility: hidden; transition-property: opacity, transform; transition-duration: 0.7s; transition-timing-function: var(--stellar-transition); }
.zeever-animate-init { opacity: 1; visibility: visible; transform: none; }
.move-up { transform: translateY(30px); } .move-down { transform: translateY(-30px); }
.move-right { transform: translateX(-40px); } .move-left { transform: translateX(40px); }
.flip { transform: perspective(500px) translateY(60px) scaleY(0.75) rotateX(-40deg); } .scale { transform: scale(0.5); }
.delay-1 { transition-delay: 0.1s; } .delay-3 { transition-delay: 0.3s; } .delay-5 { transition-delay: 0.5s; }
.delay-7 { transition-delay: 0.7s; } .delay-10 { transition-delay: 1s; } .delay-20 { transition-delay: 2s; }
.z-1 { position: relative; z-index: 1; } .z-10 { position: relative; z-index: 10; }
.z-100 { position: relative; z-index: 100; } .z-1000 { position: relative; z-index: 1000; }
.mt-n10 { margin-top: -10px !important; } .mt-n20 { margin-top: -20px !important; }
.mt-n30 { margin-top: -30px !important; } .mt-n40 { margin-top: -40px !important; }
.mt-n50 { margin-top: -50px !important; } .mt-n60 { margin-top: -60px !important; }
.mt-n70 { margin-top: -70px !important; } .mt-n80 { margin-top: -80px !important; }
.mt-n90 { margin-top: -90px !important; } .mt-n100 { margin-top: -100px !important; }
.ml-n10 { margin-left: -10px !important; } .ml-n20 { margin-left: -20px !important; }
.ml-n30 { margin-left: -30px !important; } .ml-n40 { margin-left: -40px !important; }
.ml-n50 { margin-left: -50px !important; } .ml-n60 { margin-left: -60px !important; }
.ml-n70 { margin-left: -70px !important; } .ml-n80 { margin-left: -80px !important; }
.ml-n90 { margin-left: -90px !important; } .ml-n100 { margin-left: -100px !important; }
.r-5 { border-radius: 5px; } .r-10 { border-radius: 10px; } .r-25 { border-radius: 25px; } .r-50 { border-radius: 50px; }
.shadow { box-shadow: 0px 3px 15px 0px rgba(16, 16, 16, 0.1); }
.border-hover { border: 2px solid #121212; transition: border-color 0.3s ease; } .border-hover:hover { border-color: var(--stellar-secondary); }

.separator { display: flex; align-items: center; gap: 10px; }
.separator::before { content: ""; width: 70px; margin-right: 20px; border-top: 3px solid var(--stellar-secondary); display: inline-block; }
.social-links { display: flex; gap: 20px; align-items: center; }
.social-links a { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border: 2px solid var(--stellar-secondary); border-radius: 50%; color: var(--stellar-primary); font-size: 18px; transition: all 0.3s ease; }
.social-links a:hover { background-color: var(--stellar-primary); border-color: var(--stellar-primary); color: #082222; }
.comment-form input, .comment-form textarea { width: 100%; margin: 0 0 32px; padding: 14px; background-color: var(--stellar-form); border: none; border-radius: 0; color: var(--stellar-primary); font-family: 'Poppins', sans-serif; font-size: 16px; transition: all 0.3s ease; }
.comment-form input:focus, .comment-form textarea:focus { outline: none; border: 1px solid var(--stellar-secondary); }
.comment-form label { display: block; margin-top: 8px; margin-bottom: 8px; font-family: 'Poppins', sans-serif; font-size: 16px; font-weight: 400; line-height: 1.5; color: var(--stellar-primary); }
.comment-form .submit { transition: all 0.3s ease; text-transform: uppercase; font-size: 14px; font-family: 'Poppins', sans-serif; font-weight: 600; line-height: 1; letter-spacing: 0.1em; padding: 18px 32px; border: 2px solid var(--stellar-secondary); border-radius: 0; background-color: transparent; color: var(--stellar-primary); cursor: pointer; }
.comment-form .submit:hover { border-color: var(--stellar-accent-hover); }

.site-header { background-color: var(--stellar-bg-primary); position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid var(--stellar-border); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 10px 0; max-width: var(--container-max-width); margin: 0 auto; padding-left: 20px; padding-right: 20px; }
.site-logo { font-family: 'Poppins', sans-serif; font-weight: 500; font-size: 28px; color: var(--stellar-primary); text-decoration: none; }
.site-logo:hover { color: var(--stellar-secondary); }
.nav-main { display: flex; align-items: center; gap: 48px; }
.nav-main a { font-family: 'Poppins', sans-serif; font-size: 14px; font-weight: 500; text-transform: uppercase; color: var(--stellar-primary); letter-spacing: 0.05em; transition: color 0.3s ease; }
.nav-main a:hover, .nav-main a.active { color: var(--stellar-secondary); }
.nav-submenu { position: relative; }
.nav-submenu > a::after { content: ''; display: inline-block; width: 0; height: 0; margin-left: 6px; vertical-align: middle; border-left: 4px solid transparent; border-right: 4px solid transparent; border-top: 4px solid var(--stellar-primary); }
.nav-submenu:hover .submenu { display: block; }
.submenu { display: none; position: absolute; top: 100%; left: 0; background-color: var(--stellar-bg-tertiary); border: 1px solid var(--stellar-border); min-width: 160px; z-index: 100; padding: 10px 0; }
.submenu a { display: block; padding: 8px 20px; font-size: 13px; }
.menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 10px; }
.menu-toggle span { display: block; width: 25px; height: 2px; background-color: var(--stellar-primary); margin: 6px 0; transition: all 0.3s ease; }
@media (max-width: 1023px) { .menu-toggle { display: block; } .nav-main { display: none; position: absolute; top: 100%; left: 0; right: 0; background-color: var(--stellar-bg-tertiary); flex-direction: column; padding: 20px; } .nav-main.active { display: flex; } }

.site-footer { background-color: var(--stellar-bg-primary); border-top: 1px solid var(--stellar-border); padding: 80px 0 40px; }
.footer-inner { max-width: var(--container-max-width); margin: 0 auto; padding: 0 20px; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 40px; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: repeat(4, 1fr); } }
.footer-logo { font-family: 'Poppins', sans-serif; font-weight: 500; font-size: 28px; color: var(--stellar-primary); text-decoration: none; }
.footer-logo:hover { color: var(--stellar-secondary); }
.footer-title { font-family: 'Poppins', sans-serif; font-size: 18px; font-weight: 500; color: var(--stellar-primary); margin-bottom: 20px; }
.footer-links a { display: block; color: var(--stellar-text-secondary); padding: 5px 0; text-decoration: none; transition: color 0.3s ease; }
.footer-links a:hover { color: var(--stellar-secondary); }
.footer-bottom { border-top: 1px solid var(--stellar-border); padding-top: 30px; margin-top: 40px; text-align: center; color: var(--stellar-text-secondary); }
.page-hero { height: 300px; display: flex; align-items: center; justify-content: center; background-color: var(--stellar-bg-secondary); position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%); z-index: 1; }
.page-hero-content { position: relative; z-index: 2; text-align: center; max-width: 800px; padding: 40px 20px; }
.page-hero-title { font-size: 3rem; font-weight: 700; color: var(--stellar.
Error message: JSON Parse error: Unterminated string

.page-hero { height: 300px; display: flex; align-items: center; justify-content: center; background-color: var(--stellar-bg-secondary); position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%); z-index: 1; }
.page-hero-content { position: relative; z-index: 2; text-align: center; max-width: 800px; padding: 40px 20px; }
.page-hero-title { font-size: 3rem; font-weight: 700; color: var(--stellar-primary); margin: 0; }
@media (max-width: 767px) { .page-hero { height: 200px; } .page-hero-title { font-size: 2rem; } }
.single-hero { height: 350px; display: flex; align-items: center; justify-content: center; background-color: var(--stellar-bg-secondary); position: relative; overflow: hidden; }
.single-hero::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%); z-index: 1; }
.single-hero-content { position: relative; z-index: 2; text-align: center; max-width: 900px; padding: 40px 20px; }
.single-hero-title { font-size: 2.5rem; font-weight: 700; color: var(--stellar-primary); margin: 0 0 15px 0; }
.single-hero-meta { color: var(--stellar-text-secondary); font-size: 14px; font-family: 'Poppins', sans-serif; }
.single-hero-meta a { color: var(--stellar-secondary); }
.single-hero-meta a:hover { color: var(--stellar-accent-hover); }
.single-content { background-color: var(--stellar-bg-primary); }
.single-content .container { max-width: 800px; }
.single-content h2 { font-size: 1.75rem; margin-top: 2rem; margin-bottom: 1rem; }
.single-content h3 { font-size: 1.5rem; margin-top: 1.5rem; margin-bottom: 1rem; }
.single-content p { margin-bottom: 1.5rem; }
.single-content img { margin: 2rem 0; border-radius: 5px; }
.single-content .separator { margin: 2rem 0; }
.single-content .separator p { margin: 0; }
.single-content a { color: var(--stellar-secondary); }
.single-content a:hover { color: var(--stellar-accent-hover); }
.post-grid .post-item { background-color: var(--stellar-bg-secondary); border: 2px solid transparent; transition: border-color 0.3s ease; }
.post-grid .post-item:hover { border-color: var(--stellar-secondary); }
.post-grid .post-image { position: relative; }
.post-grid .post-image img { width: 100%; height: 100%; object-fit: cover; }
.post-grid .post-content { padding: 25px; }
.post-grid .post-content h2 { font-size: 1.5rem; margin-bottom: 10px; }
.post-grid .post-content h2 a { color: var(--stellar-primary); }
.post-grid .post-content h2 a:hover { color: var(--stellar-secondary); }
.post-grid .post-meta { color: var(--stellar-text-secondary); font-size: 13px; font-family: 'Poppins', sans-serif; margin-bottom: 15px; }
.post-grid .post-meta a { color: var(--stellar-text-secondary); }
.post-grid .post-meta a:hover { color: var(--stellar-secondary); }
.post-grid .post-excerpt { color: var(--stellar-text-secondary); margin-bottom: 20px; }
.portfolio-grid .portfolio-item { background-color: var(--stellar-bg-secondary); border: 2px solid transparent; transition: border-color 0.3s ease; }
.portfolio-grid .portfolio-item:hover { border-color: var(--stellar-secondary); }
.portfolio-grid .portfolio-image { position: relative; }
.portfolio-grid .portfolio-image img { width: 100%; height: 250px; object-fit: cover; }
.portfolio-grid .portfolio-content { padding: 25px; }
.portfolio-grid .portfolio-content h3 { font-size: 1.25rem; margin-bottom: 10px; }
.portfolio-grid .portfolio-content h3 a { color: var(--stellar-primary); }
.portfolio-grid .portfolio-content h3 a:hover { color: var(--stellar-secondary); }
.portfolio-grid .portfolio-content p { color: var(--stellar-text-secondary); font-size: 14px; }
.contact-form input, .contact-form textarea { width: 100%; margin-bottom: 20px; padding: 14px; background-color: var(--stellar-form); border: none; border-radius: 0; color: var(--stellar-primary); font-family: 'Poppins', sans-serif; font-size: 16px; transition: all 0.3s ease; }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border: 1px solid var(--stellar-secondary); }
.contact-form label { display: block; margin-bottom: 8px; font-family: 'Poppins', sans-serif; font-size: 16px; font-weight: 400; line-height: 1.5; color: var(--stellar-primary); }
.contact-form .submit { transition: all 0.3s ease; text-transform: uppercase; font-size: 14px; font-family: 'Poppins', sans-serif; font-weight: 600; line-height: 1; letter-spacing: 0.1em; padding: 18px 32px; border: 2px solid var(--stellar-secondary); border-radius: 0; background-color: transparent; color: var(--stellar-primary); cursor: pointer; }
.contact-form .submit:hover { border-color: var(--stellar-accent-hover); }
.pagination { display: flex; justify-content: center; margin-top: 60px; gap: 20px; }
.pagination a, .pagination span { display: inline-block; padding: 15px 25px; border: 2px solid var(--stellar-border); color: var(--stellar-primary); font-family: 'Poppins', sans-serif; font-size: 14px; transition: all 0.3s ease; }
.pagination a:hover { border-color: var(--stellar-secondary); }
.pagination .current { background-color: var(--stellar-secondary); border-color: var(--stellar-secondary); color: var(--stellar-bg-primary); }
.comments { margin-top: 60px; }
.comments h3 { font-size: 1.5rem; margin-bottom: 30px; }
.comment-item { background-color: var(--stellar-bg-secondary); padding: 30px; margin-bottom: 20px; }
.comment-meta { display: flex; align-items: center; gap: 15px; margin-bottom: 15px; }
.comment-avatar { width: 50px; height: 50px; border-radius: 50%; background-color: var(--stellar-bg-tertiary); }
.comment-author { font-family: 'Poppins', sans-serif; font-weight: 600; color: var(--stellar-primary); }
.comment-date { color: var(--stellar-text-secondary); font-size: 13px; }
.comment-body { color: var(--stellar-text-secondary); }
@media (max-width: 767px) { .single-hero-title { font-size: 2rem; } }

/* Video Background Hero */
.wp-block-cover { position: relative; overflow: hidden; }
.wp-block-cover__video-background { position: absolute; top: 50%; left: 50%; min-width: 100%; min-height: 100%; width: auto; height: auto; transform: translate(-50%, -50%); z-index: 0; object-fit: cover; pointer-events: none; }
.wp-block-cover .wp-block-cover__inner-container { position: relative; z-index: 1; }
