/* GLOBAL */
body {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    letter-spacing: -0.01em;
}

h1, h2, h3,
.content h1,
.menu-content a,
.site-name {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
    letter-spacing: -0.03em;
    line-height: 1.05;
}

.content h1 {
    font-weight: 700;
}

.stat h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 300;
}


.content h1 {
    font-family: 'Space Grotesk', serif;
    font-weight: 400;
}

.content h1 strong,
.content h1 em {
    font-style: italic;
    font-weight: 600;
    color: var(--accent);
}


.site-name {
    font-family: 'Syne', sans-serif;
    font-size: 36px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.site-name-brand {
    background: linear-gradient(90deg, #999999, #0b3b94,#da0000 );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}



.site-name-sub {
    font-weight: 400;
    color: #555;
    font-size: 14px;
    letter-spacing: 0.01em;
}



html {
    scroll-behavior: smooth;
}

:root {
    --accent: #7a9b8e;
}


/* NAV */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    height: 70px;
    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(12px);
    color: #111;
    z-index: 9999; /* 🔥 höher als alles */
    
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ❌ WRAPPER ENTFERNT */
/* .sections-wrapper { height: 400vh; } */

/* ✅ SECTION (NEU – KEIN STICKY MEHR) */
.section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: #f5f5f3;
    display: flex;
    align-items: center;
}



/* optional visuelle Trennung */
.section + .section {
    border-top: 60px solid #7389a1;
}


/* PARALLAX (SOFTER) */
.parallax-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0; 
    pointer-events: none;

    transform: scale(1.1);
    opacity: 1;
}

#section1 {
    background: #f5f5f3; /* dein heller Ton */
}


/* BACKGROUNDS */
#section1 .parallax-bg { position: absolute;
    inset: 0;

    background-image: url("static/me2.jpg");
    background-size: cover;
    background-position: center;

    
    z-index: 1; }
#section2 .parallax-bg { background-image: url("static/bg.jpg"); }
#section3 .parallax-bg { background-image: url("static/bg.jpg"); }
#section4 .parallax-bg { background-image: url("static/bar2.jpg"); }
#section5 .parallax-bg { background-color: black; }

/* DARK OVERLAY */
.parallax-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.4);
    display: none
}

/* CONTENT */
.content {
    position: relative;
    z-index: 2;

    padding: 140px 80px;
    max-width: 1200px;
    margin: 0 auto;
}

/* TYPO */
.content h1 {
    font-size: 34px;
    margin: 0 0 20px 0;
}

.content p {
    font-size: 22px;
    opacity: 0.8;
    line-height: 1.6;
    color: #555;
}

.fade-in {
    opacity: 0;
    transform: translateY(60px);
    transition: 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}


.menu-button {
    position: fixed;   /* 🔥 DAS fehlt */
    top: 10px;
    left: 20px;

    font-size: 28px;
    color: #111;
    cursor: pointer;            

    background: rgba(255,255,255,0.6);
    padding: 10px 14px;
    border-radius: 8px;
    backdrop-filter: blur(8px);

    z-index: 10001; /* über nav + allem */
}




/* =========================
   CARD STRUCTURE
========================= */

.card-wrapper {
    height: 100%;
    transition: transform 0.4s ease;
}

.card {
    position: relative;
    height: 100%;
    border-radius: 15px;
    overflow: hidden;

    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    outline: 2px solid red;

}

/* =========================
   IMAGE
========================= */

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* =========================
   TEXT OVERLAY
========================= */

.card h3 {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 2;

    margin: 0;
    font-size: 22px;
    color: white;
}

/* dunkler Verlauf */
.card::after {
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(
        to top,
        rgba(0,0,0,0.7),
        rgba(0,0,0,0.2),
        transparent
    );
}

/* =========================
   LINK RESET
========================= */

.card-link {
    text-decoration: none;
    color: inherit;
    background: red;
    display: block;
    height: 100%;
}

/* =========================
   HOVER EFFECT
========================= */

.card-link:hover .card-wrapper {
    transform: scale(1.08);
}

/* OVERLAY */
.menu-overlay {
    position: fixed;
    inset: 0;

    display: flex;
    justify-content: center;
    align-items: center;

    background: rgba(0,0,0,0.9);
    backdrop-filter: blur(12px);

    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease;

    z-index: 9999; /* ✅ nur EIN Wert */
}


/* ACTIVE */
.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* MENU CONTENT */
.menu-content {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%; 
    transform: translate(-50%, -50%);
    z-index: 1000000;
    
}

/* LINKS */
.menu-content a {
    display: block;
    font-size: 40px;
    color: white;
    text-decoration: none;
    margin: 20px 0;

    opacity: 1;
    transform: translateY(20px);
    transition: 0.4s ease;
}

/* FADE IN */
.menu-overlay.active .menu-content a {
    opacity: 1;
    transform: translateY(0);
}

.menu-overlay.active a:nth-child(1) { transition-delay: 0.1s; }
.menu-overlay.active a:nth-child(2) { transition-delay: 0.2s; }
.menu-overlay.active a:nth-child(3) { transition-delay: 0.3s; }
.menu-overlay.active a:nth-child(4) { transition-delay: 0.4s; }

.menu-content a:hover {
     color: var(--accent);  
    transform: scale(1.05);
}

/* HERO (NEU – Anna Style) */
.hero {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.hero-strip {
    position: relative;

    width: 100%;
    height: 220px; /* 🔥 DAS ist entscheidend */

    background-image: url("static/vr.png"); /* dein Streifenbild */
    background-size: cover;
    background-position: center;

    margin: 100px 0;
}


.hero-portrait {
    position: absolute;

    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    width: 480px;
    height: 480px;

    object-fit: cover;
    border-radius: 50%;

    border: 6px solid #f5f5f3; /* passt zu deinem Background */

    z-index: 2;
}

.hero-socials {
    position: absolute;
    top: calc(50% + 290px); /* unter dem Bild */

    left: 50%;
    transform: translateX(-50%);

    display: flex;
    gap: 20px;
}


.hero-socials img {
    width: 50px;
    height: 50px;
}

/* einzelne Icons */
.hero-socials a {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 32px;
    height: 32px;

    border-radius: 50%;
    background: #111;
    color: white;
    text-decoration: none;

    font-size: 14px;
    transition: 0.3s;
}

.content.hero {
    margin: 0;           /* ❌ kein zentrieren mehr */
    padding-left: 0px;  /* Abstand zum Rand */
}


.hero-text {
    background: #eeeef3;
    padding: 60px;

    width: 100%;      /* 🔥 steuert wie weit er geht */
    max-width: none; /* ❌ wichtig! */

    border: 1px solid #e5e5e0;
}

/* Hover */
.hero-socials a:hover {
    background: #7a9b8e; /* dein Accent */
}

/* IMAGE GRID */
.hero-images {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 250px 250px;
    gap: 20px;
    
}

.hero-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}



/* großes Bild */
.img-large {
    grid-row: span 2;
}

/* TEXT */
.hero-text {
    max-width: 700px;
    
}
/* Hero-Text: kleiner + Blocksatz */
.hero-text p {
    font-size: 16px;        /* vorher 22px – jetzt kleiner */
    line-height: 1.6;
    text-align: justify;    /* ✅ Blocksatz */
    hyphens: auto;          /* ✅ automatische Silbentrennung */
    color: #444;
    max-width: 720px;       /* optional – damit Zeilen nicht zu breit werden */
}


.hero-text h1 {
    font-size: 72px;
    line-height: 1.1;
}

/* STATS */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.stat h1 {
    font-size: 120px;
    font-weight: 300;
    margin: 0;
    transition: transform 0.3s;
}

.stat:hover h1 {
    transform: scale(1.25);
}

.stat h3 {
    font-size: 20px;
    margin: 10px 0;
}

.stat p {
    font-size: 16px;
    color: #aaa;
}

/* BUTTON */
.cta-button {
    padding: 12px 24px;
    border: 1px solid #111;
    border-radius: 30px;
    text-decoration: none;
    color: #111;
}

.cta-button:hover {
    background: #111;
    color: white;
}

/* GALLERY */
.gallery {
    overflow: hidden;
    width: 100%;
    margin-top: 60px;
}

.gallery-track {
    display: flex;
    gap: 40px;
    width: max-content;
    animation: scrollGallery 30s linear infinite;
}

.gallery img {
    width: 400px;
    height: 260px;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.4s ease;
}

.gallery img:hover {
    transform: scale(1.25);
}

@keyframes scrollGallery {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* LIGHTBOX */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
}

.lightbox .close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 40px;
    color: white;
    cursor: pointer;
}



/* =========================
Kacheln
========================= */



.tiles {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;

    margin-top: 60px;
}

/* einzelne Kachel */
.tile {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 2px;
    height: 350px;
    text-decoration: none;
    color: white;
}

/* Bild */
.tile img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.4s ease;
}

/* Text */
.tile span {
    position: absolute;
    bottom: 20px;
    left: 20px;

    font-size: 20px;
    z-index: 2;
}

/* Overlay */
.tile::after {
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(
        to top,
        rgba(0,0,0,0.6),
        transparent
    );
}

/* Hover */
.tile:hover img {
    transform: scale(1.08);
}


.contact {
    max-width: 900px;
}

/* Karte */
.contact-card {
    background: #f0f0ed;
    padding: 50px;

    border: 1px solid #e5e5e0;

    margin-top: 40px;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* einzelne Bereiche */
.contact-item h3 {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #777;
    margin-bottom: 10px;
}

.contact-item p {
    font-size: 18px;
    color: #111;
    margin: 0;
}

/* Links */
.contact-item a {
    color: #111;
    text-decoration: none;
    border-bottom: 1px solid #ccc;
}

.contact-item a:hover {
    color: var(--accent);
    border-color: var(--accent);
}

/* =========================
   REVEAL ANIMATION (Anna Puzio Style)
========================= */

.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 1s ease, transform 1s cubic-bezier(0.25, 1, 0.3, 1);
    will-change: transform, opacity;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Varianten */
.reveal-left {
    opacity: 0;
    transform: translateX(-80px);
    transition: opacity 1s ease, transform 1s cubic-bezier(0.25, 1, 0.3, 1);
}
.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(80px);
    transition: opacity 1s ease, transform 1s cubic-bezier(0.25, 1, 0.3, 1);
}
.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-zoom {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 1s ease, transform 1s cubic-bezier(0.25, 1, 0.3, 1);
}
.reveal-zoom.visible {
    opacity: 1;
    transform: scale(1);
}

/* Staggered Delays */
.delay-1 { transition-delay: 1.1s; }
.delay-2 { transition-delay: 5.25s; }
.delay-3 { transition-delay: 100.4s; }
.delay-4 { transition-delay: 0.55s; }
.delay-5 { transition-delay: 0.7s; }

/* =========================
   HERO PORTRAIT – Flieg von rechts rein
   (behält translate(-50%, -50%) Zentrierung!)
========================= */

.hero-portrait {
    opacity: 0;
    /* Start: rechts außerhalb, aber vertikal schon zentriert */
    transform: translate(calc(-50% + 300px), -50%);
    transition: opacity 1.2s ease,
                transform 1.2s cubic-bezier(0.25, 1, 0.3, 1);
}

.hero-portrait.visible {
    opacity: 1;
    /* Ziel: exakt mittig */
    transform: translate(-50%, -50%);
}


/* =========================
   ABOUT SECTION
========================= */

#section-about {
    background: #f5f5f3;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 120px 20px;
}

.content.about {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

/* Textbox */
.about-box {
    background: #ffffff;
    border: 1px solid #e5e5e0;
    border-radius: 4px;

    padding: 70px 80px;
    max-width: 820px;

    box-shadow: 0 20px 60px rgba(0,0,0,0.06);

    text-align: justify;
    hyphens: auto;
}

.about-box h2 {
    font-size: 42px;
    margin: 0 0 30px 0;
    text-align: center;
    letter-spacing: -0.02em;
    color: #111;
}

.about-box h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent);
    margin: 18px auto 0;
    border-radius: 2px;
}

.about-box p {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin: 0 0 20px 0;
}

.about-box p:last-child {
    margin-bottom: 0;
}

.about-box strong {
    color: #111;
    font-weight: 600;
}

.about-box em {
    color: var(--accent);
    font-style: italic;
}

/* Responsive */
@media (max-width: 768px) {
    .about-box {
        padding: 40px 28px;
    }
    .about-box h2 {
        font-size: 32px;
    }
    .about-box p {
        font-size: 15px;
    }
}


/* =========================
   MOSAIC SECTION
========================= */

#section-mosaic {
    background: #f5f5f3;
}

.mosaic {
    display: grid;

    /* 4 Spalten, jede gleich breit */
    grid-template-columns: repeat(4, 1fr);

    /* 4 Reihen, jede 200px hoch */
    grid-auto-rows: 200px;

    gap: 12px;
    margin-top: 60px;
}

/* Einzelne Kacheln */
.mosaic-tile {
    position: relative;
    overflow: hidden;
    display: block;
    text-decoration: none;
    color: white;
    border-radius: 2px;
}

.mosaic-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

/* Dunkler Verlauf */
.mosaic-tile::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.55),
        rgba(0,0,0,0.1) 50%,
        transparent
    );
    transition: opacity 0.4s ease;
}



/* Caption */
.mosaic-caption {
    opacity: 0;
    transform: translateY(10px);
    transition: 0.4s ease;
}

.mosaic-tile:hover .mosaic-caption {
    opacity: 1;
    transform: translateY(0);
}


/* Hover */
.mosaic-tile:hover img {
    transform: scale(1.08);
}

.mosaic-tile:hover::after {
    background: linear-gradient(
        to top,
        rgba(20, 0, 18, 0.85),
        rgb(182, 1, 143)
    );
}


/* =========================
   GRÖSSEN-VARIANTEN
========================= */

/* Große Kachel: 2 Spalten x 2 Reihen */
.tile-xl {
    grid-column: span 2;
    grid-row: span 2;
}

/* Breite Kachel: 2 Spalten x 1 Reihe */
.tile-wide {
    grid-column: span 2;
    grid-row: span 1;
}

/* Hohe Kachel: 1 Spalte x 2 Reihen */
.tile-tall {
    grid-column: span 1;
    grid-row: span 2;
}

/* Kleine Kachel: 1 Spalte x 1 Reihe */
.tile-s {
    grid-column: span 1;
    grid-row: span 1;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {
    .mosaic {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 180px;
    }

    .tile-xl,
    .tile-wide {
        grid-column: span 2;
    }

    .tile-tall {
        grid-column: span 1;
        grid-row: span 2;
    }
}


/*/* =========================
   MOSAIC – 2 REIHEN
========================= */

.mosaic {
    display: grid;

    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);

    gap: 12px;

    /* ✅ sorgt für schönes Verhältnis */
    aspect-ratio: 2 / 1;

    width: 100%;
    max-width: 1100px;
    margin: 60px auto 0;
}

/* =========================
   REIHE 1 – zwei GROSSE, gleich groß
========================= */

.m1 { grid-area: 1 / 1 / 2 / 3; }   /* links (2 Spalten) */
.m2 { grid-area: 1 / 3 / 2 / 5; }   /* rechts (2 Spalten) */

/* =========================
   REIHE 2 – bleibt wie vorher
========================= */

.m4 { grid-area: 2 / 1 / 3 / 3; }   /* breit links (2 Spalten) */
.m5 { grid-area: 2 / 3 / 3 / 4; }   /* klein */
.m6 { grid-area: 2 / 4 / 3 / 5; }   /* klein */






/* =========================
   TILE STYLING
========================= */

.mosaic-tile {
    position: relative;
    overflow: hidden;
    display: block;
    text-decoration: none;
    color: white;
    border-radius: 2px;
}

.mosaic-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.mosaic-tile::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.55),
        rgba(0,0,0,0.1) 50%,
        transparent
    );
    transition: opacity 0.4s ease;
}

.mosaic-caption {
    position: absolute;
    bottom: 14px;
    left: 16px;
    z-index: 2;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.mosaic-tile:hover img {
    transform: scale(1.08);
}

.mosaic-tile:hover::after {
    opacity: 0.7;
}

.reveal,
.reveal-left,
.reveal-right,
.reveal-zoom {
    transition: 
        opacity 0.8s cubic-bezier(0.25, 1, 0.3, 1),
        transform 0.8s cubic-bezier(0.25, 1, 0.3, 1);
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 700px) {
    .mosaic {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(6, 1fr);
        aspect-ratio: 16 / 9;
    }

    /* Reset aller Grid-Areas für Mobile */
    .m1 { grid-area: 1 / 1 / 3 / 3; } /* groß oben */
    .m2 { grid-area: 1 / 1 / 3 / 3; }
    .m3 { grid-area: 3 / 2 / 4 / 3; }
    .m4 { grid-area: 4 / 1 / 5 / 3; } /* breit */
    .m5 { grid-area: 5 / 1 / 6 / 2; }
    .m6 { grid-area: 5 / 2 / 6 / 3; }
    .m7 { grid-area: 6 / 1 / 7 / 2; }
    .m8 { grid-area: 6 / 2 / 7 / 3; }
    .m9 { grid-area: 7 / 1 / 8 / 3; } /* braucht 7 Reihen mobile */
}


.footer {
    background: #111;
    color: #aaa;
    padding: 40px 80px;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer p {
    margin: 0;
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent);
}


.content.legal {
    max-width: 800px;
    padding: 160px 40px 80px;
}

.content.legal h1 {
    font-size: 48px;
    margin-bottom: 40px;
}

.content.legal h3 {
    font-size: 20px;
    margin-top: 40px;
    margin-bottom: 10px;
    color: #111;
}

.content.legal p {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 15px;
}

.content.legal a {
    color: var(--accent);
}


/* =========================
   PUBLICATIONS SCROLL
========================= */

.publications {
    position: relative;
    height: 120px;
    overflow: hidden;
    margin-top: 60px;
    text-align: center;
    mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent);
}

.pub-track {
    display: flex;
    flex-direction: column;
    gap: 60px;

    animation: scrollPubs 20s linear infinite;
}

.pub-item {
    font-size: 18px;
    color: #333;
    opacity: 0.8;
    transition: 0.4s ease;
    opacity: 0.6;
}


.pub-item:hover {
    opacity: 1;
    transform: translateX(10px);
    color: #111;
}

.publications:hover .pub-track {
    animation-play-state: paused;
}


/* Animation */
@keyframes scrollPubs {
    0% {
        transform: translateY(0%);
    }
    100% {
        transform: translateY(-100%);
    }
}


@media (max-width: 768px) {

    /* CONTENT */
    .content {
        padding: 100px 20px;
    }

    /* HERO TEXT */
    .hero-text {
        padding: 30px;
    }

    .hero-text h1 {
        font-size: 32px;
    }

    .hero-text p {
        font-size: 15px;
    }

    /* HERO IMAGE */
    .hero-portrait {
        width: 220px;
        height: 220px;
    }

    .hero-strip {
        height: 140px;
        margin: 60px 0;
    }

    /* SOCIALS */
    .hero-socials {
        top: calc(50% + 140px);
    }

    /* STATS */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .stat h1 {
        font-size: 60px;
    }

    /* TILES */
    .tiles {
        grid-template-columns: 1fr;
    }

    /* CONTACT */
    .contact-card {
        grid-template-columns: 1fr;
        padding: 30px;
    }

    /* NAV TEXT */
    .site-name {
        font-size: 22px;
        flex-direction: column;
        gap: 2px;
    }

    .site-name-sub {
        font-size: 12px;
    }
}
