/* Designer Pages - Modern Style */

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #000000;
    color: #ffffff;
    overflow-x: hidden;
}

/* Navigation */
.designer-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-back {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: opacity 0.3s;
}

.nav-back:hover {
    opacity: 0.6;
}

.nav-brand {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: opacity 0.3s;
}

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

/* Hero Section */
.designer-hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    margin-top: 0;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: grayscale(100%);
    transition: filter 0.5s ease;
}

/* 특정 디자이너 페이지의 이미지 위치 조정 */
.hero-image-adjust img {
    object-position: center top; /* 이미지 상단 부분을 보이게 */
}

.hero-image-container:hover img {
    filter: grayscale(0%);
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 4rem 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
}

.designer-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 100;
    letter-spacing: 5px;
    margin-bottom: 1rem;
}

.designer-tagline {
    font-size: 1.2rem;
    opacity: 0.8;
    letter-spacing: 1px;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background: #ffffff;
    color: #000000;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
}

.lead {
    font-size: 1.3rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.about-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #333333;
}

.designer-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

.info-item {
    display: flex;
    flex-direction: column;
}

.info-item .label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888888;
    margin-bottom: 0.5rem;
}

.info-item .value {
    font-size: 1.1rem;
    font-weight: 300;
}

.about-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-height: 600px;
}

/* Collection Section */
.collection-section {
    padding: 5rem 0;
    background: #000000;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 100;
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: 2px;
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-auto-rows: 400px;
    gap: 1rem;
}

.collection-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.collection-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.collection-item.tall {
    grid-row: span 2;
}

.collection-item.wide {
    grid-column: span 2;
}

.collection-item.extra-large {
    grid-column: span 2;
    grid-row: span 2;
}

.collection-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.collection-item:hover img {
    transform: scale(1.05);
}

.item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.collection-item:hover .item-overlay {
    transform: translateY(0);
}

.item-overlay span {
    color: #ffffff;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: #ffffff;
    color: #000000;
    text-align: center;
}

.contact-section h2 {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 2rem;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 3rem;
}

.contact-link {
    color: #000000;
    text-decoration: none;
    font-size: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.contact-link:hover {
    border-bottom: 1px solid #000000;
}

/* Footer */
.designer-footer {
    padding: 2rem;
    text-align: center;
    background: #000000;
    color: #666666;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .collection-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 350px;
    }
    
    .collection-item.large,
    .collection-item.wide,
    .collection-item.extra-large {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .designer-title {
        font-size: 3rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-image {
        order: -1;
    }
    
    .about-image img {
        height: 400px;
    }
    
    .designer-info {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .collection-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 300px;
    }
    
    .collection-item.large,
    .collection-item.wide,
    .collection-item.tall,
    .collection-item.extra-large {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .designer-nav {
        padding: 1rem;
    }
    
    .designer-title {
        font-size: 2rem;
        letter-spacing: 2px;
    }
    
    .designer-tagline {
        font-size: 1rem;
    }
    
    .about-text h2 {
        font-size: 1.8rem;
    }
    
    .lead {
        font-size: 1.1rem;
    }
}