
/* GLOBAL */
html {font-size: 16px;}
body {
    margin: 0;
    width: 100dvw;
    height: 100dvh;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    font-family: var(--font-main);
    background-color: #F0EBE6;
    color: var(--color-text)
}
* {
  cursor: none;
}
#cursor {
  position: fixed;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: white;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: left 0.05s ease, top 0.05s ease;
  mix-blend-mode: difference;
}
#wrapper {
    width: 90%;
    max-width: 1600px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
:root {
  --color-text: #292828;
  --font-main: "Zalando Sans", sans-serif;
  --font-alt: "Playfair Display", serif;
}


/* GLOBAL (TEXT) */
h1 {
    font-size: clamp(1rem, 10.8vw, 198px);
    font-weight:600;
    margin: 0;
}
.dsp-h-a {
    display: none;
}
p {
    margin: 0;
}
a:hover {
  opacity: 0.5;
  transition: opacity 0.3s ease;
}


/* TOP DIV (HEADLINE AND AUTHOR) */
.altfont {
    font-family: var(--font-alt);
    font-size: 1.4rem;
    font-style: italic;
    margin: 0;
}
.top {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.topsub {
    display: flex;
    margin: 0;
    gap: 0.3em;
}


/* BOTTOM DIV (MENU, SOCIALS, INFO) */
.bottom {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}
hr {
    width: 100%;
    border: none;
    border-top: 1px dashed #292828; 
}
.navpro {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
}
.navpro a {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--color-text);
    text-decoration: none;
}
.navsocials{
    position: absolute;
    display: flex;
    gap: 3rem;
    left: 50%;
    transform: translateX(-50%);
}
.dsp-about-b {
    display: none;
}
.dsp-rights-b {
    display: none;
    text-align: end;
}
.dsp-rights-c {
    display: none;
}
.bottomsub a, .bottomsub p {
    font-size: 1rem;
    font-weight: 400;
    color: var(--color-text);
    text-decoration: none;
}
.bottomsub {
    position: relative;
    display: flex;
    flex-direction: row;
    width: 100%;
    align-items: center;
    justify-content: space-between;
}




/* ── Mid-size: ~768px - ~1,200px ── */
@media (max-width: 78em) {
/*body {background-color: red;}*/
.navpro {
    display: grid;
    grid-template-columns: auto auto auto;
    align-content: center;
    row-gap: 2rem;
}
.dsp-about-a {
    display: none;
}
.dsp-about-b {
    display: block;
}
.navsocials{
    position: static;
    display: grid;
    grid-template-columns: auto auto auto;
    row-gap: 1rem;
    column-gap: 6rem;
    left: 0;
    transform: translateX(0);
}
.about-rights {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: end;
    height: 100%;
}
}


/* ── Tablet: ~768px and below ── */
@media (max-width: 48em) {
/*body {background-color: green;}*/
.dsp-h-a {
    display: block;
}
.dsp-h-b {
    display: none;
}
#cursor {
  display: none;
}
h1 {
    font-size: clamp(1rem, 19vw, 198px);
    font-weight:600;
    margin: 0;
    line-height: 1em;
    margin-top: 0.1em;
    margin-bottom: 0.0em;
}
.top {
    align-items: start;
}
.topsub {
    gap: 2.5em;
}
.navpro {
    margin-right: auto;
    width: auto;
    display: grid;
    grid-template-columns: auto auto;
    column-gap: 4rem;
}
.navsocials{
    grid-template-columns: auto auto;
    row-gap: 2rem;
    column-gap: 2rem;
}
.dsp-rights-b {
    display: block;
    text-align: start;
}
.dsp-rights-a {
    display: none;
}
.about-rights {
    align-items: start;
}
.bottomsub {
    margin-right: auto;
    width: auto;
    align-items: start;
    gap: 7.5rem;
}
}


/* ── Mobile: ~480px and below ── */
@media (max-width: 31em) {
/*body {background-color: blue;}*/
.navpro {
    display: flex;
    flex-direction: column;
    align-items: baseline;
    gap: 1.25rem;
}
h1 {
    margin-top: 0.3em;
    margin-bottom: 0.1em;
}
.navpro a {
    font-size: 1rem;
}
.bottomsub {
    margin-right: none;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
}
.bottomsub a, .bottomsub p {
    font-size: 0.8rem;
}
.navsocials{
    row-gap: 1.5rem;
    column-gap: 1.5rem;
}
.dsp-rights-b {
    text-align: end;
}
.about-rights {
    align-items: end;
}
}


/* ── Mini: ~360px and below ── */
@media (max-width: 20em) {
/*body {background-color: purple;}*/
h1 {
    font-size: clamp(1rem, 19.2vw, 198px);
}
.topsub {
    width: 100%;
    justify-content: space-between;
    gap: 0em;
}
.navpro a {
    font-weight: 500;
    color: var(--color-text);
    text-decoration: none;
}
.navsocials{
    width: 100%;
    row-gap: 1rem;
    column-gap: 0.0rem;
}
.bottomsub {
    flex-direction: column;
    width: 100%;
}
.about-rights {
    display: flex;
    flex-direction: row;
    justify-content: start;
    width: 100%;
    gap: 20px;
}
.dsp-rights-b {
    display: none;
}
.dsp-rights-a {
    display: none;
}
.dsp-rights-c {
    display: block;
}
}