/* Junior Fashion Week - 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;
    line-height: 1.6;
}

/* Navigation */
.junior-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.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.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.1rem;
    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;
}

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

/* Hero Section */
.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 0;
    overflow: hidden;
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 100%);
}

.hero-container {
    position: relative;
    width: 100%;
    max-width: 1400px;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: clamp(3rem, 10vw, 7rem);
    font-weight: 100;
    letter-spacing: 8px;
    line-height: 0.9;
    margin-bottom: 2rem;
}

.hero-title span {
    display: block;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.hero-title span:nth-child(1) { animation-delay: 0.2s; }
.hero-title span:nth-child(2) { animation-delay: 0.4s; }
.hero-title span:nth-child(3) { animation-delay: 0.6s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    opacity: 0.8;
    letter-spacing: 2px;
    margin-bottom: 2rem;
}

.hero-details {
    margin-top: 3rem;
}

.hero-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.info-label {
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.6;
}

.info-divider {
    opacity: 0.3;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 600px;
}

.floating-images {
    position: relative;
    width: 100%;
    height: 100%;
}

.float-img {
    position: absolute;
    border-radius: 0;
    overflow: hidden;
    filter: grayscale(100%);
    transition: all 0.6s ease;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    object-fit: cover;
    object-position: center top;
}

.float-img:hover {
    filter: grayscale(0%);
    transform: scale(1.05);
    z-index: 10;
}

.float-1 {
    width: 250px;
    height: 350px;
    top: 0;
    left: 0;
    animation: float1 20s ease-in-out infinite;
}

.float-2 {
    width: 300px;
    height: 200px;
    top: 200px;
    right: 50px;
    animation: float2 25s ease-in-out infinite;
}

.float-3 {
    width: 200px;
    height: 300px;
    bottom: 0;
    left: 150px;
    animation: float3 22s ease-in-out infinite;
}

.float-4 {
    width: 220px;
    height: 280px;
    top: 50px;
    right: 200px;
    animation: float1 18s ease-in-out infinite;
}

.float-5 {
    width: 180px;
    height: 240px;
    bottom: 80px;
    right: 100px;
    animation: float2 20s ease-in-out infinite;
}

.float-6 {
    width: 260px;
    height: 180px;
    top: 280px;
    left: 250px;
    animation: float3 24s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

@keyframes float2 {
    0%, 100% { transform: translateY(0) rotate(2deg); }
    50% { transform: translateY(-30px) rotate(-2deg); }
}

@keyframes float3 {
    0%, 100% { transform: translateY(0) rotate(-1deg); }
    50% { transform: translateY(-25px) rotate(1deg); }
}

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

.about-content {
    max-width: 1200px;
    margin: 0 auto;
}

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

.lead {
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 3rem;
    opacity: 0.7;
    font-weight: 300;
}

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

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

.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.highlight-card {
    padding: 2rem;
    background: #f8f8f8;
    border-left: 3px solid #000000;
    transition: all 0.3s ease;
}

.highlight-card:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.highlight-card h3 {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 0.8rem;
    color: #000000;
}

.highlight-card p {
    font-size: 0.9rem;
    color: #666666;
    line-height: 1.5;
}

/* Gallery Section */
.gallery-section {
    padding: 6rem 0;
    background: #000000;
}

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

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

.gallery-item.vertical {
    grid-row: span 2;
}

.gallery-item.horizontal {
    grid-column: span 2;
}

.gallery-item.square {
    grid-row: span 1;
}

.gallery-item.full {
    grid-column: span 3;
    grid-row: span 2;
}

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

.gallery-item:hover img {
    transform: scale(1.1);
    filter: grayscale(0%);
}

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

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

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

/* Details Section */
.details-section {
    padding: 6rem 0;
    background: #111111;
}

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

.detail-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 0;
    transition: all 0.3s ease;
}

.detail-card.wide {
    grid-column: span 2;
}

.detail-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.detail-card h3 {
    font-size: 1.3rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    color: #ffffff;
}

.detail-content {
    color: rgba(255, 255, 255, 0.8);
}

.date-highlight {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.sub-info {
    font-size: 0.9rem;
    opacity: 0.7;
}

.detail-content ul {
    list-style: none;
    padding: 0;
}

.detail-content li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.detail-content li:last-child {
    border-bottom: none;
}

.document-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.doc-item {
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.doc-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.email-info {
    font-size: 1.1rem;
    line-height: 1.8;
}

.email-info strong {
    color: #ffffff;
    font-weight: 400;
}

.email-format {
    display: block;
    font-size: 0.9rem;
    opacity: 0.7;
    margin-top: 0.5rem;
}

.note {
    margin-top: 1rem;
    font-size: 0.95rem;
    opacity: 0.8;
}

/* Apply Section */
.apply-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
}

.apply-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.apply-content h2 {
    font-size: 3rem;
    font-weight: 100;
    margin-bottom: 1rem;
    letter-spacing: 3px;
}

.apply-content p {
    font-size: 1.2rem;
    opacity: 0.8;
    margin-bottom: 3rem;
}

.apply-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.download-btn,
.email-btn {
    display: inline-block;
    padding: 1.2rem 3rem;
    border: 2px solid #ffffff;
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.download-btn::before,
.email-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #ffffff;
    transition: width 0.3s ease;
    z-index: -1;
}

.download-btn:hover,
.email-btn:hover {
    color: #000000;
}

.download-btn:hover::before,
.email-btn:hover::before {
    width: 100%;
}

/* Footer */
.junior-footer {
    padding: 3rem 0;
    background: #000000;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.junior-footer p {
    text-align: center;
    color: #666666;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 300px;
    }
    
    .gallery-item.full {
        grid-column: span 2;
    }
    
    .detail-card.wide {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-visual {
        display: none;
    }
    
    .hero-title {
        font-size: 3rem;
        letter-spacing: 4px;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-highlights {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
    }
    
    .gallery-item.horizontal,
    .gallery-item.full {
        grid-column: span 1;
    }
    
    .gallery-item.vertical,
    .gallery-item.full {
        grid-row: span 1;
    }
    
    .details-grid {
        grid-template-columns: 1fr;
    }
    
    .apply-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .download-btn,
    .email-btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .junior-nav {
        padding: 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
        letter-spacing: 2px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .lead {
        font-size: 1.1rem;
    }
    
    .apply-content h2 {
        font-size: 2rem;
    }
}