/* FranklinYule - Landing Page Styles */

/* Hero Section */
.fy-hero {
    background: var(--fy-ivory);
}

.fy-hero-wr {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 90vh;
}

.fy-hero-img {
    position: relative;
    overflow: hidden;
}

.fy-hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fy-hero-cn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
    background: linear-gradient(135deg, var(--fy-navy) 0%, #2c4a7c 100%);
    color: white;
}

.fy-hero-tt {
    font-family: var(--fy-font-display);
    font-size: 4rem;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.fy-hero-sb {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 450px;
}

/* Section Wrapper */
.fy-sc-wr {
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.fy-sc-tt {
    font-family: var(--fy-font-display);
    font-size: 2.5rem;
    color: var(--fy-navy);
    text-align: center;
    margin-bottom: 1rem;
}

.fy-sc-sb {
    text-align: center;
    color: var(--fy-gray);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Categories */
.fy-cat {
    background: white;
}

.fy-cat-gr {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.fy-cat-it {
    text-decoration: none;
    text-align: center;
}

.fy-cat-im {
    aspect-ratio: 1;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 1rem;
    border: 3px solid transparent;
    transition: border-color 0.3s;
}

.fy-cat-it:hover .fy-cat-im {
    border-color: var(--fy-gold);
}

.fy-cat-im img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fy-cat-nm {
    font-family: var(--fy-font-display);
    font-size: 1.2rem;
    color: var(--fy-navy);
}

/* Featured Products */
.fy-ft-pr {
    background: var(--fy-ivory);
}

.fy-pr-gr {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.fy-pr-cd {
    background: white;
    transition: transform 0.3s, box-shadow 0.3s;
}

.fy-pr-cd:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(26, 54, 93, 0.1);
}

.fy-pr-lk {
    text-decoration: none;
    display: block;
}

.fy-pr-im {
    aspect-ratio: 4/5;
    overflow: hidden;
}

.fy-pr-im img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.fy-pr-cd:hover .fy-pr-im img {
    transform: scale(1.05);
}

.fy-pr-nm {
    font-family: var(--fy-font-display);
    font-size: 1.1rem;
    color: var(--fy-navy);
    padding: 1.5rem 1.5rem 0.5rem;
}

.fy-pr-pr {
    font-size: 1rem;
    color: var(--fy-gold);
    font-weight: 600;
    padding: 0 1.5rem 1.5rem;
}

/* Craftsmanship */
.fy-craft {
    background: white;
}

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

.fy-craft-im img {
    width: 100%;
    border-radius: 4px;
}

.fy-craft-cn p {
    color: var(--fy-gray);
    line-height: 1.9;
    margin-bottom: 2rem;
}

/* Lookbook */
.fy-look {
    background: var(--fy-navy);
}

.fy-look .fy-sc-tt {
    color: white;
}

.fy-look-gr {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 1rem;
    margin-top: 3rem;
}

.fy-look-it {
    overflow: hidden;
    border-radius: 4px;
}

.fy-look-it img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.fy-look-it:hover img {
    transform: scale(1.05);
}

.fy-look-lg {
    grid-row: span 2;
}

/* New Arrivals */
.fy-new {
    background: linear-gradient(135deg, var(--fy-gold) 0%, #d4af37 100%);
    text-align: center;
}

.fy-new .fy-sc-tt,
.fy-new .fy-sc-sb {
    color: white;
}

.fy-new .fy-btn {
    background: white;
    color: var(--fy-navy);
}

.fy-new .fy-btn:hover {
    background: var(--fy-navy);
    color: white;
}

/* Newsletter */
.fy-news {
    background: var(--fy-ivory);
}

.fy-news-fm {
    display: flex;
    max-width: 500px;
    margin: 2rem auto 0;
    gap: 1rem;
}

.fy-news-fm input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 1px solid rgba(26, 54, 93, 0.2);
    font-size: 1rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .fy-hero-wr {
        grid-template-columns: 1fr;
    }
    
    .fy-hero-img {
        height: 50vh;
    }
    
    .fy-hero-cn {
        padding: 3rem 2rem;
    }
    
    .fy-hero-tt {
        font-size: 3rem;
    }
    
    .fy-cat-gr {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .fy-pr-gr {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .fy-craft-wr {
        grid-template-columns: 1fr;
    }
    
    .fy-look-gr {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, 200px);
    }
    
    .fy-look-lg {
        grid-row: span 2;
    }
}

@media (max-width: 480px) {
    .fy-hero-tt {
        font-size: 2.5rem;
    }
    
    .fy-cat-gr,
    .fy-pr-gr {
        grid-template-columns: 1fr;
    }
    
    .fy-news-fm {
        flex-direction: column;
    }
}