* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "acumin-variable", sans-serif;
    color: #000000;
}

body {
    background-image: url('IMG_0731.jpg');
    background-size: 120%;
    background-position: center;
    background-attachment: fixed;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(185, 250, 71, 0.7);
    z-index: -1;
}

.article-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.article-header {
    text-align: center;
    margin-bottom: 4rem;
    padding: 3rem 0;
    border-bottom: 3px solid #f72179;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(247, 33, 121, 0.2);
    position: relative;
    overflow: hidden;
}

.chapter-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: #f72179;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    text-shadow: 0 0 20px rgba(247, 33, 121, 0.5);
    position: relative;
    z-index: 1;
}

.chapter-subtitle {
    font-size: 1.3rem;
    color: #000000;
    font-style: italic;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.article-content {
    margin-bottom: 4rem;
}

.text-section {
    margin-bottom: 3rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(247, 33, 121, 0.2);
}

.text-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: justify;
    color: #000000;
    line-height: 1.8;
}

.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.image-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: white;
}

.image-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.image-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
    opacity: 1;
    visibility: visible;
}

.image-item:hover img {
    transform: scale(1.08);
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(247, 33, 121, 0.9));
    color: white;
    padding: 1.5rem;
    font-size: 0.9rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    font-weight: 500;
}

.image-item:hover .image-caption {
    opacity: 1;
}

/* Full width shoe section */
.full-width-shoe {
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    margin-top: 3rem;
    margin-bottom: 3rem;
    overflow: hidden;
}

.full-width-shoe img {
    width: 100%;
    height: 60vh;
    object-fit: cover;
    object-position: center;
    display: block;
    opacity: 1;
    visibility: visible;
}

.shoe-caption {
    position: absolute;
    bottom: 20px;
    right: 20px;
    color: white;
    font-size: 1rem;
    max-width: 300px;
    text-align: right;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.chapter-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    border-top: 1px solid rgba(247, 33, 121, 0.3);
    margin-top: 3rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.nav-link {
    color: #f72179;
    text-decoration: none;
    font-weight: 700;
    padding: 1rem 2rem;
    border: 2px solid #f72179;
    border-radius: 30px;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: rgba(247, 33, 121, 0.1);
    position: relative;
    overflow: hidden;
}

.nav-link:hover {
    background-color: #f72179;
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(247, 33, 121, 0.5);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Responsive design */
@media (max-width: 768px) {
    .article-container {
        padding: 1rem;
    }
    
    .chapter-title {
        font-size: 2rem;
    }
    
    .chapter-subtitle {
        font-size: 1rem;
    }
    
    .image-gallery {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .chapter-navigation {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-link {
        width: 100%;
        text-align: center;
    }
    
    .text-section {
        padding: 2rem;
    }
    
    .full-width-shoe img {
        height: 40vh;
    }
    
    .shoe-caption {
        bottom: 15px;
        right: 15px;
        font-size: 0.9rem;
        max-width: 250px;
    }
}

/* Scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Special hover effects for tactile theme */
.image-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(247, 33, 121, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 1;
}

.image-item:hover::before {
    opacity: 1;
}
