
:root {
    --site-max-width: 1300px;

    --border-radius-s: 8px;
    --border-radius-m: 30px;
    --border-radius-circle: 50%;

    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 800;

    --font-size-s: 0.9rem;
    --font-size-n: 1rem;
    --font-size-m: 1.12rem;
    --font-size-l: 2.2rem;

    --white-color: #fff;
    --dark-color: #252525;
    --light-pink-color: #faf4f5;
    --primary-color: #6a9a9d;
    --light-grey-color: #f0f4f4;

}


/*Styling for whole Site*/
html {
  scroll-behavior: smooth;
}

ul {
    list-style: none;
}
a {
    text-decoration: none;
}
button {
    cursor: pointer;
    border: none;
    background: none;
}
img{
    width: 100%;
}

.section-content {
    margin: auto;
    padding: 0 20px;
    max-width: var(--site-max-width);
}

/*Styling for navbar*/
header {
    background: var(--primary-color);
    border-radius: var(--border-radius-s);
}

header .navbar {
    display: flex;
    padding: 5px;
    padding-right: 50px;
    align-items: center;
    justify-content: space-between;
}

.navbar .nav-logo {
    display: flex;
    align-items: center;
    padding: 5px;
}
.navbar .nav-logo .nav-logo-img {
    width: 150px;
    aspect-ratio: 1;
    margin-bottom: 15px;
    object-fit: contain;
}

.navbar .nav-menu {
    display: flex;
    gap: 15px;
}

.navbar .nav-menu .nav-link {
    padding: 10px 18px;
    background: var(--primary-color);
    color: var(--white-color);
    border-radius: var(--border-radius-m);
    font-size: var(--font-size-s);
    transition: 0.3s ease;
}
.navbar .nav-menu .nav-link:hover {
    color: var(--primary-color);
    background: var(--white-color);
}

/* design section styling*/
.design-section {
    color: var(--primary-color);
    background: var(--light-grey-color);
    padding: 50px 0 100px;
    border-radius: var(--border-radius-s);
}

.design-section .section-title {
    text-align: center;
    padding: 10px 0 15px;
    font-size: var(--font-size-l);
}

.design-section .design-list .design-item .name {
    margin: 12px 0;
    font-size: var(--font-size-m);
    font-weight: var(--font-weight-semibold);
}

.design-section .design-list .design-item .text {
    font-size: var(--font-size-n);
}

.design-section .design-list {
    display: flex;
    flex-wrap: wrap;
    gap: 110px;
    align-items: center;
    justify-content: center;
}

.design-section .design-list .design-item {
    display: flex;
    align-items: center;
    text-align: center;
    flex-direction: column;
    justify-content: space-between;
    width: calc(100% / 1.9 - 110px);
}

.design-section .design-list .design-item .image-wrapper {
    max-width: 80%;
    aspect-ratio: 1;
    margin-bottom: 15px;
    object-fit: contain;
}
/* Image wrapper */
/* Container für die Überlagerung */
.image-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* Beide Bilder nehmen denselben Platz ein */
.design-image {
  width: 100%;
  display: block;
  transition: opacity 0.3s ease-in-out;
}

/* Das Hover-Bild liegt exakt über dem Standardbild und ist zuerst unsichtbar */
.hover-img {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;

}

/* Beim Hovern auf die Kachel erscheint das zweite Bild */
.design-item:hover .hover-img {
  opacity: 1;
}

/* Optional: Hauptbild leicht ausblenden (nützlich bei transparenten PNGs) */
.design-item:hover .default-img {
  opacity: 0;
}

/* shirt section styling*/
.shirt-section {
    color: var(--light-grey-color);
    background: var(--primary-color);
    padding: 50px 0 100px;
    border-radius: var(--border-radius-s);
}

.shirt-section .section-title {
    text-align: center;
    padding: 10px 0 15px;
    font-size: var(--font-size-l);
}

.shirt-section .shirt-list {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.shirt-section .shirt-list .shirt-item {
    overflow: hidden;
    width: calc(100% / 4 - 32px);
    border-radius: var(--border-radius-s);
}

.shirt-section .shirt-item .shirt-image {
    width: 100%;
    height: 100%;
    cursor: zoom-in;
    transition: 0.3s ease;
}

.shirt-section .shirt-item:hover .shirt-image {
    transform: scale(1.3);
}

/* hoodie section styling*/
.hoodie-section {
    color: var(--primary-color);
    background: var(--light-grey-color);
    padding: 50px 0 100px;
    border-radius: var(--border-radius-s);
}
.hoodie-section .section-title {
    text-align: center;
    padding: 10px 0 15px;
    font-size: var(--font-size-l);
}

.hoodie-section .hoodie-list {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.hoodie-section .hoodie-list .hoodie-item {
    overflow: hidden;
    width: calc(100% / 4 - 32px);
    border-radius: var(--border-radius-s);
}

.hoodie-section .hoodie-item .hoodie-image {
    width: 100%;
    height: 100%;
    cursor: zoom-in;
    transition: 0.3s ease;
}

.hoodie-section .hoodie-item:hover .hoodie-image {
    transform: scale(1.3);
}

/* contact section styling*/
.contact-section {
    color: var(--light-grey-color);
    background: var(--primary-color);
    padding: 10px 0 20px;
    border-radius: var(--border-radius-s);
}

.contact-section .section-title {
    text-align: center;
    padding: 10px 0 15px;
    font-size: var(--font-size-l);
}




/* Change for smaller screens */
@media (max-width: 768px) {
    header .navbar {
        flex-direction: column;
    }

    .navbar .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }

    .navbar .nav-menu .nav-link {
        padding: 8px 12px;
    }
}