@import url("https://fonts.googleapis.com/css2?family=Red+Hat+Display:wght@300;400;600;700;900&display=swap");

* {
    box-sizing: border-box;
}

body {
    font-family: "Red Hat Display", sans-serif;
    background-color: #fefefe;
    color: rgb(32, 32, 32);
    line-height: 1.6;
    margin: 0;
}

.container {
    margin: 0 auto;
    padding-left: 40px;
    padding-right: 40px;
    margin-bottom: 40px;
}

/* ========================================== NAVIGATIONSLEISTE ==================================== */
.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    color: #2d6fff;
    margin-top: 1px;
    margin-bottom: 30px;
}

.logo img {
    display: block;
    width: 40px;
    height: 40px;
    margin-top: 30px;
}

.nav-right {
    display: flex;
    gap: 35px;
    list-style: none;
    padding: 0;
    margin: 0;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 8px;
}

/* keine Sternchen  */
.nav-right li::after {
    content: none;
}

.nav-right li a {
    text-decoration: none;
    color: inherit;
    font-weight: 400;
}

.nav-right li a.active {
    font-weight: 900;
}
/*RESPONSIVE DESIGN STARTSEITE UND NAVIGATIONSLEISTE*/
/* Burger Menü */
.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
    font-size: 30px;
    cursor: pointer;
    color: #2d6fff;
    margin-right: 20px;
}

/* Sternchen anzeigen */
@media (min-width: 770px) {
    #nav-toggle:not(:checked) ~ .nav-right li:not(:last-child)::after {
        content: "*";
        margin-left: 25px;
        color: #2d6fff;
    }
}
/* Mobile Menu*/
@media (max-width: 768px) {
    .nav-toggle-label {
        display: block;
    }

    .nav-right {
        display: none;
        position: absolute;
        top: 55px;
        right: 59px;
        flex-direction: column;
        gap: 0.5px;
        padding: 8px;
        text-align: right;
        z-index: 1000;
        font-size: 13px;
        background-color: rgba(255, 255, 255, 0.9);
    }

    /* Menü sichtbar, wenn Burger aktiv */
    .nav-toggle:checked + .nav-toggle-label + .nav-right {
        display: flex;
    }

    /* keine Sternchen im Burger-Menü */
    .nav-right li::after {
        content: none !important;
    }
    .main {
        padding: 72px 20px 72px 40px;
        text-align: left;
        margin-top: 100px;
    }

    .main-heading {
        font-size: clamp(35px, 13vw, 120px);
        line-height: 1.2;
    }

    .word-theresa {
        text-align: left;
    }

    .sub-info {
        font-size: clamp(14px, 4vw, 18px);
        font-style: italic;
        margin-top: 10px;
    }
}

/* ============================================= STARTSEITE ======================================= */
.main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 20px 40px 40px;
    text-align: center;
}

.main-heading {
    font-size: clamp(50px, 14vw, 148px);
    font-weight: 600;
    line-height: 1.1;
    color: #2d6fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    mask-repeat: no-repeat;
    margin-bottom: 10px;
    padding: 0;
    margin-top: 60px;
}

a {
    text-decoration: none;
    color: inherit;
}
.sub-info {
    font-size: clamp(16px, 4vw, 22px);
    font-weight: 500;
    color: rgb(192, 190, 190);
    font-style: italic;
    margin-top: 0;
}

/* ANIMATION STARTSEITE */
.word-helo,
.word-theresa,
.word-wolters {
    display: inline-block;
    transition: transform 0.3s ease;
    cursor: pointer;
}
.word-helo:hover,
.word-theresa:hover,
.word-wolters:hover {
    transform: translateY(-8px);
}
/**/

/* ============================================ ABOUT ME ========================================= */

/* FOTO-GALLERIE*/
.gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 45px;
    gap: 15px;
}
.gallery img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* TEXT */
.theresa {
    font-size: clamp(36px, 10vw, 110px);
    font-weight: 400;
    line-height: 1.1;
    text-align: left;
    margin: 20px auto 30px;
    color: #2d6fff;
}
.about {
    max-width: 480px;
    margin: 0 auto 30px;
    font-size: clamp(18px, 2.5vw, 16px);
    line-height: 1.6;
    color: rgb(32, 32, 32);
}
.tw {
    display: flex;
    justify-content: center;
}
.tw img {
    width: 120px;
    height: auto;
}
.creative-projects {
    text-decoration: underline;
}

/* RESPONSIVE MEDIA: ABOUT ME */
@media (max-width: 768px) {
    .gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
        margin-bottom: 5px;
    }
    .gallery img {
        width: 100%;
        margin: 0;
    }
    .main {
        margin-top: 10px;
    }
    .theresa {
        margin-top: 8px;
        margin-bottom: 10px;
        font-size: 50px;
        text-align-last: center;
    }
    .about {
        margin-top: 0;
        margin-bottom: 20px;
        color: rgb(32, 32, 32);
        max-width: 400px;
    }
}

/* ============================================ CONTACT =========================================== */
.contact-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    max-width: 900px;
    margin: 100px auto;
    padding: 0 20px;
}
.contact-image img {
    width: 350px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.contact-text h1 {
    font-size: 56px;
    color: #2d6fff;
}
.contact-text p {
    font-size: 20px;
    line-height: 1.5;
    max-width: 400px;
    color: #2d6fff;
}
.label {
    font-size: 15px;
    color: rgb(192, 190, 190);
    text-transform: uppercase;
}
.contact-link {
    color: #2d6fff;
    text-decoration: none;
}
.contact-link:hover {
    text-decoration: underline;
}
/*Impressum*/
.impressum {
    position: fixed;
    bottom: 20px;
    margin-top: 50px;
    left: 1rem;
    padding: 20px;
    font-size: 11px;
    color: rgb(192, 190, 190);
    max-width: 250px;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        margin: 50px auto;
    }

    .contact-image img {
        width: 100%;
        max-width: 350px;
        height: auto;
    }

    .contact-text h1 {
        font-size: 36px;
        margin-top: 1px;
    }

    .contact-text p {
        font-size: 18px;
        max-width: 100%;
        padding: 0 10px;
    }
    .impressum {
        position: static;
        margin: 100px auto 0 auto;
        text-align: center;
        max-width: 90%;
        padding: 1rem;
    }
}

/* ================================== CREATIVE REMINDERS ======================================= */

/*Layout*/
.background-image {
    background-image: url("Portfolio/background-muster.png");
    background-position: center top;
    background-repeat: no-repeat;
    background-size: 800px auto;
    position: relative;
    z-index: 0;
    margin-top: -53px;
}
.hero-section {
    position: relative;
    z-index: 1;
    padding: 10px 20px;
    margin-top: 45px;
}
.reminders-header {
    text-align: center;
    margin-top: 139px;
}
.intro-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
    margin: 70px auto;
    max-width: 750px;
    text-align: left;
}

/*Typografie*/
.small-heading {
    font-weight: 600;
    margin: 0;
    font-size: clamp(24px, 6vw, 40px);
    color: rgb(32, 32, 32);
}
.big-heading {
    font-size: clamp(40px, 12vw, 90px);
    font-weight: 600;
    color: rgb(32, 32, 32);
    margin: 0;
    line-height: 0.9;
}
.intro-left,
.intro-right {
    font-size: clamp(18px, 2.5vw, 16px);
    line-height: 1.7;
    margin-top: clamp(30px, 10vw, 100px);
    color: rgb(32, 32, 32);
}

/* Reminder */
.reminder {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    max-width: 450px;
    margin-top: 51px;
    text-align: left;
}
.number {
    font-size: 36px;
    font-weight: 700;
    color: #2d6fff;
    min-width: 40px;
}
.reminder-text h3 {
    margin: 0 0 5px 0;
    font-size: 18px;
    font-weight: 600;
    color: rgb(32, 32, 32);
}
.reminder-text p {
    margin: 0;
    font-size: clamp(18px, 2.5vw, 16px);
    line-height: 1.6;
    color: rgb(32, 32, 32);
}
.reminders-section {
    max-width: 450px;
    margin: 0 auto;
}
.luecke {
    font-size: 200px;
    text-align: center;
    color: #2d6fff;
    margin-top: 110px;
}

/* RESPONSIVE DESIGN: REMINDER*/

@media (max-width: 768px) {
    .intro-split {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 90%;
        margin: 40px auto;
    }
    .reminders-header {
        margin-top: 38px;
    }

    .intro-left,
    .intro-right {
        font-size: 15px;
        margin-top: 0;
    }

    .reminder {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
        padding: 0 20px;
    }

    .number {
        font-size: 28px;
    }

    .reminder-text h3 {
        font-size: 16px;
    }

    .reminder-text p {
        font-size: 14px;
    }
    .background-image {
        background-image: url("Portfolio/background-muster.png");
        background-position: center top;
        background-size: 400px auto;
        margin-top: -28px;
    }
}

/* ======================================= PORTFOLIO ============================================ */

/* PORTFOLIO STARTSEITE*/
.portfolio-page {
    max-width: 600px;
    margin: 0 auto;
    padding: 60px 0;
    text-align: center;
    background-color: #fefefe;
}

.portfolio-categories {
    margin: 0 auto;
    font-size: clamp(16px, 4vw, 28px);
    line-height: 1.6;
    text-align: center;
    text-justify: inter-word;
    hyphens: auto;
    word-break: break-word;
}
.portfolio-categories a {
    color: rgb(32, 32, 32);
    text-decoration: none;
    transition: color 0.3s ease;
}
.portfolio-categories a:hover {
    color: #2d6fff;
}

.portfolio-categories span {
    color: rgb(32, 32, 32);
    margin: 5px;
}

.portfolio-title {
    font-size: clamp(36px, 10vw, 110px);
    color: #2d6fff;
    font-weight: 400;
    margin-bottom: 10px;
}

/* BACK TO PORTFOLIO BUTTON*/
.back-to-portfolio {
    font-size: 15px;
    color: #2d6fff;
    margin-top: 30px;
    text-align: center;
    margin-bottom: 30px;
}

/*PORTFOLIO-LAYOUT*/
/*Typografie*/
.work-text {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 600px;
    flex: 1;
}
.work-title {
    font-size: 18px;
    font-weight: 500;
    color: rgb(32, 32, 32);
    text-transform: uppercase;
}
.work-description {
    font-size: 18px;
    font-weight: 50;
    color: rgb(149, 149, 149);
    text-transform: uppercase;
}
.work-date {
    font-size: 13px;
    font-weight: 100;
    color: rgb(32, 32, 32);
}

/*mehrere Fotos Layout*/
.layout-vertikal {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 50px;
    margin: 50px auto;
}
.photo-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}
.photo-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}
.photo-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
}
.photo-grid-4 img,
.photo-grid-3 img,
.photo-grid-2 img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/*Soundtrack of a problem*/
.hover-zoom a img {
    transition: transform 0.3s ease;
}

.hover-zoom a:hover img {
    transform: scale(1.05);
}
.click-hint {
    display: none;
    font-size: 10px;
    color: Red;
    font-weight: 300;
    text-transform: uppercase;
    margin-top: -50px;
}

/*einzelne Fotos Layout*/
.layout-horizontal {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 60px;
    margin: 100px auto;
    flex-wrap: wrap;
}
.layout-horizontal img {
    width: 50%;
    object-fit: cover;
}
/*ILLU*/
.photo-booth-img {
    max-width: 400px;
    width: 100%;
    height: auto;
    margin-left: 20px;
}
/* P-FOTOGRAFIE*/
.photo-grid-fotografie {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-bottom: 91px;
    gap: 10px;
}
.photo-grid-fotografie img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.photography-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.fotoapparat img {
    width: 200px;
    height: auto;
}

.photography-text {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 600px;
    flex: 1;
}

.photography-title {
    font-size: 18px;
    font-weight: 500;
    color: rgb(32, 32, 32);
    text-transform: uppercase;
}

.photography-description {
    font-size: 18px;
    font-weight: 100;
    color: rgb(149, 149, 149);
    text-transform: uppercase;
}

@media (max-width: 1024px) {
    .photo-grid-fotografie {
        grid-template-columns: repeat(2, 1fr);
        gap: 5px;
    }
}

@media (max-width: 600px) {
    .photo-grid-fotografie {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .photography-container {
        flex-direction: column;
        text-align: center;
    }

    .photography-text {
        max-width: 100%;
        text-align: center;
        align-items: center;
    }

    .photography-title,
    .photography-description {
        font-size: 15px;
    }

    .fotoapparat img {
        width: 150px;
        margin-bottom: 20px;
    }
}

/*P-SCETCHBOOK*/
.content {
    text-align: center;
}
.content img {
    width: 100%;
    max-width: 900px;
    height: auto;
    margin-top: 100px;
    margin-bottom: 3px;
}
input[type="radio"] {
    display: none;
}
.page {
    display: none;
}
#seite1:checked ~ .content #page1,
#seite2:checked ~ .content #page2,
#seite3:checked ~ .content #page3,
#seite4:checked ~ .content #page4,
#seite5:checked ~ .content #page5,
#seite6:checked ~ .content #page6,
#seite7:checked ~ .content #page7,
#seite8:checked ~ .content #page8,
#seite9:checked ~ .content #page9 {
    display: block;
}

/* PORTFOLIO RESPONSIVE DESIGN*/
@media (max-width: 1024px) {
    .photo-grid-4 .photo-grid-fotografie {
        grid-template-columns: repeat(2, 1fr);
    }

    .photo-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .photo-grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .photo-grid-4,
    .photo-grid-3,
    .photo-grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }
    .click-hint {
        display: flex;
    }
}

/* Einzelbilder mit Text rechts daneben */
@media (max-width: 768px) {
    .layout-horizontal {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    .layout-horizontal img {
        width: 100%;
    }

    .work-text {
        max-width: 100%;
    }
    .work-title {
        font-size: 15px;
    }
    .work-description {
        font-size: 15px;
    }
    .work-date {
        font-size: 12px;
    }
    .back-to-portfolio {
        font-size: 12px;
    }
}
