* {
    margin: 0;
    padding: 0;
    box-sizing: border-box; 
}




body {
    background-color: #e5e0d3; 
    font-family: 'Inter', sans-serif;
    color: #121212;
    width: 100%;
}




.page-wrapper {
    width: 100%;
    min-height: 100vh;
    padding: 40px 5%; 
}
 

.main-nav {
    border-top: 1px solid #121212;
    border-bottom: 4px double #121212;
    display: flex;
    justify-content: space-around;
    padding: 14px 0;
    font-weight: 300;
    font-size: 17px;
    letter-spacing: 0.5px;
    max-width: 1400px;
    margin: 0 auto;
}




.main-nav a {
    color: #121212;
    text-decoration: none;
    transition: opacity 0.2s;
}




.main-nav a:hover {
    opacity: 0.6;
}




.hero-layout {
    display: grid;
    grid-template-columns: 1.3fr 2.3fr 0.4fr;
    column-gap: 40px;
    row-gap: 30px;
    margin: 40px auto 0 auto;
    max-width: 1400px; 
}





.cell-title {
    grid-column: 1 / 3;
}




.giant-heading {
    font-family: 'Archivo Black', sans-serif; 
    font-size: 76px;
    text-transform: uppercase;
    line-height: 0.85;
    letter-spacing: -3px;
}





.cell-socials {
    grid-column: 3;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
    padding-top: 10px;
}




.cell-socials a {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 20px;
    transition: opacity 0.2s ease;
}




.cell-socials a:hover {
    opacity: 0.6;
}




.vertical-dash {
    width: 1px;
    height: 40px;
    background-color: #1a1a1a;
    margin-right: 8px;
}





.cell-lorem {
    grid-column: 1;
    font-size: 17px;
    line-height: 1.5;
    text-align: justify;
    font-weight: 400;
}





.cell-hero-img {
    grid-column: 2 / 4;
    width: 100%;
}




.cell-hero-img img {
    width: 100%;
    height: auto;
    display: block;
    filter: grayscale(100%) contrast(115%);
}





.about-layout {
    margin: 60px auto 0 auto;
    border-top: 1px solid #121212;
    padding-top: 20px;
    display: grid;
    grid-template-columns: 1.3fr 2.7fr;
    column-gap: 40px;
    max-width: 1400px;
}




.about-label h3 {
    font-family: 'Archivo Black', sans-serif;
    font-size: 24px;
    text-transform: uppercase;
    line-height: 1.1;
}




.about-description {
    font-size: 17px;
    line-height: 1.5;
}




.sammlung-carousel-section {
    margin: 60px auto 0 auto;
    width: 100%;
    max-width: 1400px;
    border-top: 1px solid #121212;
    padding-top: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 25px;
}


.carousel-viewport {
    width: 100%;
    height: 500px; 
    position: relative;
    overflow: hidden;
}


.carousel-tape {
    display: flex;
    height: 100%;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}


.carousel-slide {
    flex: 0 0 44%; 
    height: 100%;
    padding: 0 15px; 
    opacity: 0.4; 
    transition: opacity 0.4s ease, transform 0.4s ease;
    transform: scale(0.92); 
}

.carousel-slide.visible-active {
    opacity: 1;
    transform: scale(1); 
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    background-color: #dad5c6;
    box-shadow: 0 4px 20px rgba(18, 18, 18, 0.08);
    display: block;
}


.overlay-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(229, 224, 211, 0.85); 
    color: #121212;
    font-size: 22px;
    width: 50px;
    height: 50px;
    cursor: pointer;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20; 
    transition: all 0.2s ease;
}


.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

.overlay-btn:hover {
    background-color: #121212;
    color: #e5e0d3;
}


.carousel-info-card {
    display: grid;
    grid-template-columns: 1fr 200px; 
    column-gap: 40px;
    align-items: center;
    background-color: #e5e0d3;
    padding: 25px 40px;
    border: 1px solid #121212;
}

.carousel-info-card h3 {
    font-family: 'Archivo Black', sans-serif;
    font-size: 22px;
    text-transform: uppercase;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.carousel-info-card p {
    font-size: 17px;
    line-height: 1.5;
}


.carousel-controls-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
}

.carousel-dots {
    display: flex;
    gap: 6px;
}

.carousel-dot {
    width: 7px;
    height: 7px;
    border: 1px solid #121212;
    border-radius: 50%;
    background-color: transparent;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.carousel-dot.active {
    background-color: #121212;
}

/* Мобильная адаптивность */
@media (max-width: 768px) {
    .carousel-viewport {
        height: 340px; 
    }
    .carousel-slide {
        flex: 0 0 80%; 
    }
    .overlay-btn {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    .prev-btn { left: 10px; }
    .next-btn { right: 10px; }
    
    .carousel-info-card {
        grid-template-columns: 1fr;
        row-gap: 15px;
        padding: 20px;
    }
    .carousel-controls-wrapper {
        align-items: center;
    }
}


.geschichte-layout,
.psychologie-layout {
    margin: 80px auto 0 auto;
    border-top: 1px solid #121212;
    padding-top: 30px;
    display: grid;
    grid-template-columns: 1.3fr 2.7fr;
    column-gap: 40px;
    max-width: 1400px;
}


.geschichte-label,
.psychologie-label {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    width: 100%;
}


.geschichte-label h3,
.psychologie-label h3 {
    font-family: 'Archivo Black', sans-serif;
    font-size: 24px;
    text-transform: uppercase;
    line-height: 1.1;
    letter-spacing: -0.5px;
}


.geschichte-description,
.psychologie-description {
    font-size: 17px;
    line-height: 1.6;
    text-align: justify;
}




.instagram-image-link {
    position: relative;
    display: block;
    width: 100%;
    max-width: 400px; 
    height: 300px;
    overflow: hidden;
    border: 1px solid #121212;
}


.instagram-image-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(120%);
    transition: transform 0.4s ease, filter 0.4s ease;
}



.instagram-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(18, 18, 18, 0.4); 
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: #e5e0d3;
    transition: background-color 0.3s ease;
    padding: 20px;
    text-align: center;
}


.instagram-overlay i {
    font-size: 28px;
}


.instagram-overlay span {
    font-size: 17px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
}



.instagram-image-link:hover img {
    transform: scale(1.05);
    filter: grayscale(100%) contrast(130%) brightness(80%);
}


.instagram-image-link:hover .instagram-overlay {
    background-color: rgba(18, 18, 18, 0.7); 
}





.quote-divider {
    max-width: 1400px;
    margin: 80px auto 40px auto;
    text-align: center;
    padding: 0 10%;
}


.quote-divider p {
    font-family: 'Bad Script', cursive;
    font-size: 38px;
    line-height: 1.2;
    color: #252525;
}
.quote-author {
    display: block;     
    font-size: 20px;     
    font-family: 'Bad Script', cursive;
    margin-top: 8px;     
    color: #524848;      
}




.vergleich-section {
    margin: 100px auto 0 auto;
    border-top: 4px double #121212;
    padding-top: 40px;
    max-width: 1400px;
}


.vergleich-header {
    margin-bottom: 40px;
}


.vergleich-header h3 {
    font-family: 'Archivo Black', sans-serif;
    font-size: 32px;
    text-transform: uppercase;
    margin-bottom: 12px;
    letter-spacing: -1px;
    line-height: 1.1;
}


.vergleich-header p {
    font-size: 17px;
    line-height: 1.5;
    color: #2b2b2b;
}


.vergleich-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 60px;
    row-gap: 40px;
}


.vergleich-col h4 {
    font-family: 'Archivo Black', sans-serif;
    font-size: 17px;
    text-transform: uppercase;
    margin-bottom: 15px;
    border-bottom: 1px solid #121212;
    padding-bottom: 6px;
    letter-spacing: -0.5px;
}


.vergleich-col p {
    font-size: 17px;
    line-height: 1.6;
    text-align: justify;
}



.video-preview-margin {
    margin-top: 25px;
    max-width: 100%; 
    height: 240px;
}





@media (max-width: 768px) {
    .geschichte-layout,
    .psychologie-layout,
    .vergleich-grid {
        grid-template-columns: 1fr;
    }
   
    .instagram-image-link {
        max-width: 100%;
    }
   
    .quote-divider p {
        font-size: 28px;
    }
}
.site-footer {
    margin: 40px auto 0 auto;
    max-width: 1400px;
    border-top: 4px double #121212;
    padding: 20px 0;
    text-align: center;
    font-size: 17px;
}
	
