/* Lighting Ideas Page Specific Styles */

.lighting-main {
    background: white;
}

/* Hero Section */
.lighting-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 100px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    padding-left: 40px;
}

.lighting-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.lighting-hero .lead {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.95;
    line-height: 1.6;
}

.hero-video {
    padding-right: 40px;
}

.hero-video video {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

/* Lighting Categories */
.lighting-categories {
    padding: 80px 0;
    background: #f8f9fa;
}

.lighting-categories h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #333;
    font-weight: 700;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.category-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.category-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.card-content {
    padding: 30px;
}

.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
    font-weight: 600;
}

.card-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.lighting-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.lighting-features li {
    padding: 8px 0;
    color: #666;
    position: relative;
    padding-left: 20px;
    line-height: 1.5;
}

.lighting-features li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: #667eea;
}

.learn-more {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.learn-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102,126,234,0.3);
    color: white;
    text-decoration: none;
}

/* Deep Dive Sections */
.lighting-deep-dive {
    padding: 80px 0;
    background: white;
}

.lighting-deep-dive.alt-bg {
    background: #f8f9fa;
}

.lighting-deep-dive h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #333;
    font-weight: 700;
}

.expert-insight {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.expert-insight blockquote {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
    border-left: 4px solid #667eea;
    margin: 0;
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #333;
}

.expert-insight cite {
    display: block;
    margin-top: 20px;
    font-style: normal;
    font-weight: 600;
    color: #667eea;
}

.expert-insight cite a {
    color: #667eea;
    text-decoration: none;
}

.expert-insight cite a:hover {
    text-decoration: underline;
}

/* Technique Grid */
.technique-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.technique-item {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.technique-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    background: white;
}

.technique-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
    font-weight: 600;
}

.technique-item p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.pro-tip {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    padding: 15px 20px;
    border-radius: 10px;
    font-size: 0.9rem;
    line-height: 1.5;
}

.pro-tip strong {
    display: block;
    margin-bottom: 5px;
    font-weight: 700;
}

/* Party Lighting Content */
.party-lighting-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.lighting-video {
    position: relative;
}

.lighting-video video {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.party-techniques h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #333;
    font-weight: 600;
}

.technique-list {
    display: grid;
    gap: 25px;
}

.technique {
    background: white;
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #667eea;
    transition: all 0.3s ease;
}

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

.technique h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #333;
    font-weight: 600;
}

.technique p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.professional-note {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    padding: 25px;
    border-radius: 12px;
    margin-top: 30px;
    text-align: center;
}

.professional-note p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
}

.professional-note strong {
    display: block;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

/* Wedding Lighting Content */
.wedding-timeline {
    margin-top: 50px;
}

.wedding-timeline h3 {
    font-size: 2rem;
    margin-bottom: 40px;
    text-align: center;
    color: #333;
    font-weight: 600;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 40px;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.timeline-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.timeline-marker {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    flex-shrink: 0;
}

.timeline-content h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #333;
    font-weight: 600;
}

.timeline-content p {
    color: #666;
    line-height: 1.7;
    margin: 0;
    font-size: 1.1rem;
}

.wedding-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.wedding-moment {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.wedding-moment:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.wedding-moment img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.moment-details {
    padding: 25px;
}

.moment-details h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #333;
    font-weight: 600;
}

.moment-details p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.lighting-specs {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #666;
}

/* Massachusetts Focus */
.ma-focus {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fff8 0%, #e8f5e8 100%);
}

.ma-focus h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #333;
    font-weight: 700;
}

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

.ma-content p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 30px;
}

.ma-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.ma-highlight {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.ma-highlight:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.ma-highlight h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
    font-weight: 600;
}

.ma-highlight p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* CTA Section */
.lighting-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.lighting-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.lighting-cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-primary {
    background: white;
    color: #667eea;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255,255,255,0.3);
    color: #667eea;
    text-decoration: none;
}

.cta-secondary {
    background: transparent;
    color: white;
    padding: 15px 30px;
    border: 2px solid white;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-secondary:hover {
    background: white;
    color: #667eea;
    transform: translateY(-3px);
    text-decoration: none;
}

/* Lighting Resources Section */
.lighting-resources {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.lighting-resources h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #333;
    font-weight: 700;
}

.resource-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.resource-item {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.resource-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.resource-item h3 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.resource-item p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 1rem;
}

.resource-link {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.resource-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
    text-decoration: none;
    color: white;
}

/* Wedding Expert Tip */
.wedding-expert-tip {
    background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 100%);
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid #f57c00;
    margin: 40px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.wedding-expert-tip h3 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.wedding-expert-tip p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
    font-size: 1rem;
}

.wedding-expert-tip p:last-child {
    margin-bottom: 0;
}

/* DIY vs Professional Section */
.diy-vs-professional {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.diy-vs-professional h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #333;
    font-weight: 700;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.comparison-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.comparison-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
}

.diy-card:before {
    background: linear-gradient(45deg, #38a169, #68d391);
}

.professional-card:before {
    background: linear-gradient(45deg, #667eea, #764ba2);
}

.comparison-card h3 {
    color: #333;
    font-size: 1.8rem;
    margin-bottom: 30px;
    font-weight: 600;
    text-align: center;
}

.good-for,
.considerations,
.benefits {
    margin-bottom: 30px;
}

.good-for h4,
.considerations h4,
.benefits h4 {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.good-for ul,
.considerations ul,
.benefits ul {
    list-style: none;
    padding: 0;
}

.good-for li,
.considerations li,
.benefits li {
    padding: 8px 0;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    position: relative;
    padding-left: 25px;
}

.good-for li:before {
    content: "✓";
    color: #38a169;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 8px;
}

.considerations li:before {
    content: "⚠";
    color: #f56500;
    position: absolute;
    left: 0;
    top: 8px;
}

.benefits li:before {
    content: "★";
    color: #667eea;
    position: absolute;
    left: 0;
    top: 8px;
}

.professional-recommendation {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    border-top: 5px solid #667eea;
}

.professional-recommendation h3 {
    color: #333;
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.professional-recommendation p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .lighting-hero {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 60px 0;
        text-align: center;
    }
    
    .hero-content,
    .hero-video {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .lighting-hero h1 {
        font-size: 2.5rem;
    }
    
    .lighting-hero .lead {
        font-size: 1.1rem;
    }
    
    .category-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .technique-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .party-lighting-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .wedding-showcase {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .ma-highlights {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .resource-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .resource-item {
        padding: 30px 20px;
    }
    
    .lighting-resources h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .lighting-hero h1 {
        font-size: 2rem;
    }
    
    .lighting-categories h2,
    .lighting-deep-dive h2,
    .ma-focus h2,
    .lighting-cta h2 {
        font-size: 2rem;
    }
    
    .card-content,
    .technique-item,
    .moment-details {
        padding: 20px;
    }
    
    .expert-insight blockquote {
        padding: 25px;
    }
    
    .pro-tip,
    .professional-note {
        padding: 20px;
    }
}
