@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,600;9..144,700&family=Inter:wght@300;400;500;600&family=Cinzel:wght@400;500;600&display=swap');

/* =========================
   FONT SYSTEM
========================= */

body,
p,
li,
input,
textarea,
select {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.7;
    color: #e8e8e8;
}

/* Headings */
h1, h2, h3, h4, h5, h6,
.wp-block-heading {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    letter-spacing: 0.02em;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 0.6em;
}

/* Hero title optional */
.hero-title,
.site-title {
    font-family: 'Fraunces', serif;
    font-weight: 700;
    letter-spacing: 0.03em;
}

/* Buttons */
button, .wp-block-button, 
.wp-block-button__link,
input[type="submit"],
.menu-label,
.label,
.tagcloud a {
    font-family: 'Cinzel', serif;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* Navigation (optioneel) */
.main-navigation a,
.wp-block-navigation a {
    font-family: 'Cinzel', serif;
    font-size: 0.95rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* Quotes / poetic text */
blockquote {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 400;
    font-size: 1.15rem;
    opacity: 0.95;
}

/* Small meta text */
.post-meta,
.entry-meta,
small {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    opacity: 0.75;
}

body {
    background: #111;
    color: #e8e8e8;
}

.wp-block-button__link {
    border: 1px solid rgba(255,255,255,0.15);
    padding: 12px 22px;
    border-radius: 2px;
    background: rgba(255,255,255,0.02);
    transition: all .25s ease;
}

.wp-block-button__link:hover {
    transform: translateY(-2px);
    background: rgba(255,255,255,0.06);
    box-shadow: 0 0 18px rgba(140,110,180,.18);
}

@media (max-width: 768px) {
    .wp-block-navigation a {
        font-family: 'Inter', sans-serif;
        letter-spacing: 0.03em;
        text-transform: none;
    }
}


/* end of fonts*/

.site-content {
	background: none !important;
}

body.custom-background { background-size: 250px !important; }

.site-branding img {
	width: 150px;
}

.portal-card {
  position: relative;
  padding: 40px;
  border-radius: 16px;
  background: rgba(20, 20, 30, 0.6);
  border: 1px solid rgba(255,255,255,0.05);
  backdrop-filter: blur(6px);
  transition: all 0.4s ease;
  overflow: hidden;
}

.portal-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(139,92,246,0.2), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.portal-card:hover {
  transform: translateY(-6px) scale(1.01);
  border-color: rgba(139,92,246,0.4);
}

.portal-card:hover::before {
  opacity: 1;
}