/* La Clase Page Specific Styles */

/* Header Navigation for La Clase Page */
.header-navigation-la-clase {
    width: 100%;
    height: 62px;
    padding: 20px 20px 30px 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background-color: rgba(245, 241, 232, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: background-color 0.3s ease;
}

.nav-logo {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    color: black;
    text-transform: uppercase;
    text-decoration: none;
    white-space: pre;
    letter-spacing: 0;
}

.nav-links {
    display: flex;
    gap: 10px;
    align-items: center;
}

.nav-link {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    color: black;
    text-transform: uppercase;
    text-decoration: none;
    white-space: pre;
    padding: 3px 5px;
    letter-spacing: 0;
    transition: opacity 0.2s;
}

.nav-link:hover {
    opacity: 0.7;
}

.nav-link.active {
    font-weight: 500;
}

/* Main Content */
.la-clase-main {
    width: 100%;
    padding: 0 20px 20px 20px;
    margin-top: 102px;
}

.la-clase-content {
    width: 100%;
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

/* Image Container */
.la-clase-image-container {
    position: relative;
    width: 688px;
    height: 796px;
    overflow: hidden;
    flex-shrink: 0;
}

.la-clase-image {
    width: 100%;
    height: 115.12%;
    object-fit: cover;
    object-position: center;
    pointer-events: none;
    position: absolute;
    left: 0;
    top: -19.62%;
}

/* Text Container */
.la-clase-text-container {
    display: flex;
    flex-direction: column;
    width: 334px;
    height: 596px;
    flex-shrink: 0;
    padding-right: 100px;
}

.la-clase-text-container h1 {
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.15;
    color: black;
    margin: 0 0 8px 0;
    letter-spacing: -0.24px;
}

.la-clase-text-container .subtitle {
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.15;
    color: black;
    margin: 0 0 20px 0;
    letter-spacing: -0.24px;
}

.la-clase-text {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.15;
    color: black;
    letter-spacing: -0.24px;
    width: 100%;
    max-width: 377px;
}

.la-clase-text p {
    margin: 0 0 0 0;
    line-height: 1.15;
}

/* Desktop Layout (1280px and above) */
@media (min-width: 1280px) {
    .la-clase-main {
        max-width: 1280px;
        margin: 102px auto 0;
    }
    
    .la-clase-content {
        display: flex;
        gap: 50px;
        align-items: flex-start;
    }
    
    .la-clase-image-container {
        width: 688px;
        height: 796px;
    }
    
    .la-clase-text-container {
        width: 334px;
        height: 596px;
        padding-right: 100px;
    }
    
    .la-clase-text {
        width: 377px;
    }
    
    .header-navigation-la-clase {
        max-width: 1280px;
        left: 50%;
        transform: translateX(-50%);
    }
}

/* Tablet Layout (768px to 1279px) */
@media (min-width: 768px) and (max-width: 1279px) {
    .la-clase-main {
        max-width: 800px;
        margin: 102px auto 0;
        padding: 0 35px 20px 35px;
    }
    
    .la-clase-content {
        display: flex;
        gap: 30px;
        align-items: flex-start;
    }
    
    .la-clase-image-container {
        width: 469px;
        height: 543px;
    }
    
    .la-clase-text-container {
        width: 225px;
        height: 596px;
        padding-right: 0;
    }
    
    .la-clase-text {
        width: 225px;
    }
    
    .header-navigation-la-clase {
        max-width: 800px;
        left: 50%;
        transform: translateX(-50%);
    }
}

/* Mobile Layout (up to 767px) */
@media (max-width: 767px) {
    .la-clase-main {
        max-width: 375px;
        margin: 202px auto 0;
        padding: 0 20px 20px 20px;
    }
    
    .la-clase-content {
        display: flex;
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
    
    .la-clase-image-container {
        width: 473px;
        height: 356px;
        margin-left: -49px;
        margin-top: 0;
    }
    
    .la-clase-text-container {
        width: 340px;
        height: auto;
        padding-right: 0;
        margin-top: 38.5px;
    }
    
    .la-clase-text {
        width: 100%;
        max-width: 337px;
    }
    
    .header-navigation-la-clase {
        max-width: 100%;
        margin: 0;
        flex-direction: row;
        height: auto;
        min-height: auto;
        align-items: flex-start;
        gap: 0;
        padding: 20px;
        justify-content: space-between;
    }
    
    .nav-links {
        flex-direction: column;
        align-items: flex-end;
        gap: 8px;
        width: auto;
    }
    
    .nav-link {
        text-align: right;
    }
}

/* Small Mobile (very small screens) */
@media (max-width: 374px) {
    .la-clase-main {
        max-width: 100%;
        padding: 0 10px 20px 10px;
    }
    
    .la-clase-image-container {
        width: calc(100% + 98px);
        max-width: 473px;
        height: auto;
        aspect-ratio: 473 / 356;
        margin-left: -49px;
    }
    
    .la-clase-text-container {
        width: 100%;
    }
    
    .la-clase-text {
        width: 100%;
        font-size: 11px;
    }
    
    .header-navigation-la-clase {
        max-width: 100%;
        padding: 20px 10px 30px 10px;
    }
}
