* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #0b0b0b;
    color: #f5f5f5;
    font-family: 'Cormorant Garamond', serif;
    height: 100vh;
    overflow: hidden;
}

/* Subtiler Luxus-Effekt */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at top, rgba(255,255,255,0.04), transparent 40%);
    pointer-events: none;
}

.hero {
    width: 100%;
    height: 100vh;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    gap: 60px;
}

.logo {
    width: 380px;
    max-width: 60vw;
    opacity: 0.95;
}

.nav-links {
    display: flex;
    gap: 42px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: rgba(255,255,255,0.75);

    font-size: 1.15rem;
    font-weight: 300;
    letter-spacing: 1px;

    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;

    width: 0%;
    height: 1px;

    background: rgba(255,255,255,0.85);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: #ffffff;
}

.nav-links a:hover::after {
    width: 100%;
}

@media (max-width: 768px) {

    .hero {
        gap: 45px;
        padding: 20px;
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 18px;
    }

    .nav-links a {
        font-size: 1.05rem;
    }

    .logo {
        width: 140px;
    }
}

/* =========================
   ABOUT PAGE
========================= */

.about-page {
    background: #0b0b0b;
    color: #f5f5f5;
    min-height: 100vh;
    overflow-y: auto;
}

.top-nav {
    width: 100%;
    padding: 30px 60px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    position: fixed;
    top: 0;
    left: 0;

    background: rgba(11, 11, 11, 0.75);
    backdrop-filter: blur(10px);
    z-index: 1000;
}

.small-logo img {
    width: 65px;
    height: auto;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.small-logo img:hover {
    opacity: 1;
}

.about-container {
    width: 100%;
    display: flex;
    justify-content: center;

    padding:
        180px 30px
        120px;
}

.about-content {
    width: 100%;
    max-width: 900px;
}

.about-content h1 {
    font-size: 4rem;
    font-weight: 400;
    margin-bottom: 50px;

    letter-spacing: 2px;
}

.about-content p {
    font-size: 1.35rem;
    line-height: 2.1rem;
    font-weight: 300;

    color: rgba(255,255,255,0.82);

    margin-bottom: 32px;
}

.about-content blockquote {
    font-size: 2rem;
    font-style: italic;
    font-weight: 400;

    margin:
        50px 0;

    padding-left: 25px;

    border-left: 1px solid rgba(255,255,255,0.3);

    color: #ffffff;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

    .top-nav {
        flex-direction: column;
        gap: 25px;

        padding: 25px 20px;
    }

    .nav-links {
        flex-direction: column;
        gap: 14px;
    }

    .about-container {
        padding-top: 240px;
    }

    .about-content h1 {
        font-size: 2.5rem;
    }

    .about-content p {
        font-size: 1.1rem;
        line-height: 1.9rem;
    }

    .about-content blockquote {
        font-size: 1.5rem;
    }
}

.reference-table {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;

    border-collapse: separate;
    border-spacing: 0 30px;
}

.reference-table tr {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(8px);

    border-radius: 12px;
    overflow: hidden;
}

.reference-table td {
    padding: 25px;
    vertical-align: middle;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 300;
}

.reference-table td:first-child {
    width: 55%;
}

.reference-table img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
    opacity: 0.95;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.reference-table img:hover {
    transform: scale(1.02);
    opacity: 1;
}

.reference-table td:last-child {
    width: 45%;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.reference-table a {
    color: inherit;
    text-decoration: none;
    font-weight: inherit;
}

.reference-table a:hover {
    color: inherit;
    text-decoration: underline;
}