/* Myron Wright - Landing Page Styles */
/* Hero: Grid Collage Layout (L3) */

/* Hero Section - Grid Collage */
.hero-section {
    min-height: 90vh;
    padding: 60px 0;
    display: flex;
    align-items: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
    height: 70vh;
    position: relative;
}

.hero-grid-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

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

.hero-grid-item:nth-child(1) {
    grid-row: 1 / 3;
}

.hero-grid-item:nth-child(2) {
    grid-row: 1;
}

.hero-grid-item:nth-child(3) {
    grid-row: 2;
}

.hero-grid-item:nth-child(4) {
    grid-row: 1 / 3;
}

/* Hero Content Overlay */
.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
    background: rgba(250, 248, 245, 0.95);
    padding: 50px 60px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    max-width: 500px;
}

.hero-subtitle {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--secondary);
    margin-bottom: 20px;
    font-weight: 500;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background: #fff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.feature-item {
    text-align: center;
    padding: 30px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: var(--background);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
}

.feature-title {
    font-family: var(--font-heading);
    font-size: 18px;
    margin-bottom: 10px;
}

.feature-text {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

/* Story Section */
.story-section {
    padding: 120px 0;
    background: var(--background);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.story-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

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

.story-content h2 {
    font-size: 38px;
    margin-bottom: 25px;
}

.story-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.story-signature {
    margin-top: 30px;
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--secondary);
}

/* Products Section */
.products-section {
    padding: 100px 0;
    background: #fff;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.products-cta {
    text-align: center;
    margin-top: 50px;
}

/* Process Section */
.process-section {
    padding: 100px 0;
    background: var(--primary);
    color: #fff;
}

.process-section .section-title h2,
.process-section .section-title p {
    color: #fff;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.process-item {
    text-align: center;
    padding: 30px;
}

.process-number {
    font-family: var(--font-heading);
    font-size: 72px;
    font-weight: 700;
    color: var(--secondary);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 20px;
}

.process-title {
    font-family: var(--font-heading);
    font-size: 22px;
    margin-bottom: 15px;
    color: #fff;
}

.process-text {
    font-size: 15px;
    color: rgba(255,255,255,0.7);
    margin: 0;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: var(--background);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 4px 20px var(--shadow);
}

.testimonial-stars {
    color: #f1c40f;
    margin-bottom: 20px;
    font-size: 18px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--background);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--primary);
}

.testimonial-name {
    font-weight: 600;
    color: var(--primary);
}

.testimonial-location {
    font-size: 13px;
    color: var(--text-light);
}

/* Blog Section */
.blog-section {
    padding: 100px 0;
    background: #fff;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px var(--shadow);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px var(--shadow);
}

.blog-image {
    aspect-ratio: 16/10;
    overflow: hidden;
}

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

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

.blog-content {
    padding: 25px;
}

.blog-date {
    font-size: 12px;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.blog-title {
    font-family: var(--font-heading);
    font-size: 20px;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-excerpt {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 1200px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        height: auto;
    }
    
    .hero-grid-item:nth-child(1),
    .hero-grid-item:nth-child(4) {
        grid-row: auto;
        aspect-ratio: 3/4;
    }
    
    .hero-content {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        margin: 30px auto;
    }
}

@media (max-width: 1024px) {
    .features-grid,
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .products-grid,
    .testimonials-grid,
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .story-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 28px;
    }
    
    .hero-content {
        padding: 30px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .features-grid,
    .process-grid,
    .products-grid,
    .testimonials-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .process-number {
        font-size: 48px;
    }
}
