/* @version 1.0.0 */
/* StanleyLynch - Landing Page Styles */

/* Banner Section */
.banner {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e8e 50%, #ffb4b4 100%);
}

.banner-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at top right, rgba(255,255,255,0.3) 0%, transparent 50%);
    pointer-events: none;
}

.banner-container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.banner-content {
    color: #fff;
}

.banner-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.banner-subtitle {
    font-size: 1.25rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.banner-cta {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #2d3436;
    color: #fff;
    font-weight: 600;
    border-radius: 50px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.banner-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.banner-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner-image {
    max-height: 500px;
    width: auto;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.2));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Section Common Styles */
.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: -0.02em;
}

.section-subtitle {
    text-align: center;
    color: #636e72;
    margin-top: -2rem;
    margin-bottom: 3rem;
}

/* Featured Section */
.featured {
    padding: 6rem 0;
    background: #fff;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.product-card {
    position: relative;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

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

.card-link {
    display: block;
}

.card-image {
    position: relative;
    overflow: hidden;
    background: #f7f7f7;
}

.card-large .card-image {
    aspect-ratio: 1;
}

.card-small .card-image {
    aspect-ratio: 4/5;
}

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

.product-card:hover .card-image img {
    transform: scale(1.05);
}

.card-info {
    padding: 1.5rem;
}

.card-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-price {
    font-size: 1.125rem;
    font-weight: 700;
    color: #ff6b6b;
}

/* Stats Section */
.stats {
    padding: 5rem 0;
    background: #2d3436;
    color: #fff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 2rem;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: #ff6b6b;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Story Section */
.story {
    padding: 6rem 0;
    background: #f7f7f7;
}

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

.story-text {
    max-width: 500px;
}

.story-text .section-title {
    text-align: left;
    margin-bottom: 2rem;
}

.story-text p {
    margin-bottom: 1.5rem;
    color: #636e72;
    line-height: 1.8;
}

.text-link {
    display: inline-block;
    font-weight: 600;
    color: #ff6b6b;
    border-bottom: 2px solid #ff6b6b;
    padding-bottom: 2px;
    transition: color 0.3s ease;
}

.text-link:hover {
    color: #ff8e8e;
}

.story-image {
    border-radius: 12px;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: auto;
}

/* New Arrivals Section */
.new-arrivals {
    padding: 6rem 0;
    background: #fff;
}

.products-scroll {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding-bottom: 1rem;
    scrollbar-width: thin;
    scrollbar-color: #ff6b6b #f7f7f7;
}

.products-scroll::-webkit-scrollbar {
    height: 6px;
}

.products-scroll::-webkit-scrollbar-track {
    background: #f7f7f7;
    border-radius: 3px;
}

.products-scroll::-webkit-scrollbar-thumb {
    background: #ff6b6b;
    border-radius: 3px;
}

.card-compact {
    flex: 0 0 280px;
}

.card-compact .card-image {
    aspect-ratio: 1;
}

/* Pairings Section */
.pairings {
    padding: 6rem 0;
    background: #f7f7f7;
}

.pairings-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.pairing-item {
    text-align: center;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.pairing-item:hover {
    transform: translateY(-8px);
}

.pairing-item img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.pairing-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 1.5rem 0 0.5rem;
}

.pairing-item p {
    color: #636e72;
    padding: 0 1.5rem 1.5rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .banner-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .banner-visual {
        order: -1;
    }
    
    .banner-image {
        max-height: 300px;
    }
    
    .featured-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .card-large {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .story-text .section-title {
        text-align: center;
    }
    
    .pairings-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .featured-grid {
        grid-template-columns: 1fr;
    }
    
    .card-large {
        grid-column: span 1;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}
