/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Accessibility Button */
.accessibility-button {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    background: #6366f1;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.accessibility-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    padding: 100px 20px 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 600px;
    gap: 40px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #ffffff;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #e0e0e0;
    font-weight: 600;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #c0c0c0;
    line-height: 1.8;
}

.hero-image {
    flex: 1;
    max-width: 500px;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #6366f1, #4f46e5);
    color: white;
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.6);
}

/* Categories Section */
.categories-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.categories-section h2 {
    font-size: 2.8rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
    color: #1a1a2e;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.category-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e5e7eb;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.category-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a2e;
}

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

.category-link {
    color: #6366f1;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.category-link:hover {
    color: #4f46e5;
}

/* Gallery Section */
.gallery-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.gallery-section h2 {
    font-size: 2.8rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
    color: #1a1a2e;
}

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

.gallery-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.gallery-content {
    padding: 25px;
}

.gallery-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a2e;
}

.gallery-description {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.7;
}

.gallery-meaning {
    color: #6366f1;
    font-size: 0.95rem;
    line-height: 1.6;
    padding-top: 15px;
    border-top: 1px solid #e5e7eb;
}

.gallery-meaning strong {
    color: #1a1a2e;
}

/* SEO Content Section */
.seo-content-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.seo-content-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 30px;
    color: #1a1a2e;
}

.seo-content {
    max-width: 900px;
    margin: 0 auto;
}

.seo-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #333;
}

.seo-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #1a1a2e;
}

.seo-content ul {
    margin-left: 30px;
    margin-bottom: 25px;
}

.seo-content li {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 12px;
    color: #333;
}

.seo-content strong {
    color: #1a1a2e;
    font-weight: 700;
}

/* FAQ Section */
.faq-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.faq-section h2 {
    font-size: 2.8rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a2e;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #f8f9fa;
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 12px;
    border-left: 4px solid #6366f1;
}

.faq-question {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a2e;
}

.faq-answer {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #666;
}

/* Placement Inspiration Section */
.placement-inspiration-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.placement-inspiration-section h2 {
    font-size: 2.8rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
    color: #1a1a2e;
}

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

.placement-inspiration-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.placement-inspiration-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.placement-inspiration-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: #e9ecef;
}

.placement-inspiration-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.placement-inspiration-content {
    padding: 25px;
}

.placement-inspiration-content h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1a1a2e;
}

.placement-inspiration-tag {
    display: inline-block;
    background: linear-gradient(135deg, #6366f1, #4f46e5);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.placement-inspiration-description {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #333;
}

.placement-inspiration-details {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 10px;
    color: #666;
}

.placement-inspiration-details strong {
    color: #1a1a2e;
    font-weight: 700;
}

/* CTA Section */
.cta-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
}

.cta-content-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.cta-text {
    flex: 1;
    text-align: left;
}

.cta-section h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #ffffff;
    text-align: left;
}

.cta-text > p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #e0e0e0;
    line-height: 1.8;
}

.cta-image {
    flex: 1;
    max-width: 500px;
}

.cta-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.cta-image:hover img {
    transform: scale(1.02);
}

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

.cta-button.primary {
    background: linear-gradient(135deg, #6366f1, #4f46e5);
    color: white;
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.cta-button.secondary:hover {
    background: white;
    color: #1a1a2e;
}

.newsletter-signup {
    max-width: 600px;
    margin: 40px 0 0 0;
    padding: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    text-align: left;
}

.newsletter-signup h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #ffffff;
}

.newsletter-signup p {
    margin-bottom: 25px;
    color: #e0e0e0;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
}

.newsletter-form button {
    padding: 12px 30px;
    background: #6366f1;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.newsletter-form button:hover {
    background: #4f46e5;
}

/* Footer */
.footer {
    background-color: #1a1a2e;
    color: white;
    padding: 60px 20px 30px;
}

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

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #c0c0c0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #c0c0c0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-section {
        flex-direction: column;
        padding: 60px 20px 40px;
        min-height: auto;
    }

    .hero-section h1 {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-image {
        max-width: 100%;
        margin-top: 30px;
    }

    .categories-section h2,
    .gallery-section h2,
    .faq-section h2,
    .placement-inspiration-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .placement-inspiration-image {
        height: 200px;
    }

    .cta-content-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .cta-text {
        text-align: center;
    }

    .cta-section h2 {
        font-size: 2rem;
        text-align: center;
    }

    .newsletter-signup {
        margin: 40px auto 0;
        text-align: center;
    }

    .cta-image {
        max-width: 100%;
    }

    .categories-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-button {
        width: 100%;
        text-align: center;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
    }

    .seo-content-section h2 {
        font-size: 1.8rem;
    }

    .seo-content h3 {
        font-size: 1.4rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .hero-section h1 {
        font-size: 1.8rem;
    }

    .section-intro {
        font-size: 1rem;
    }

    .category-card,
    .gallery-item,
    .faq-item {
        padding: 20px;
    }
}
