/* Hero Section - Black background with primary color text */
.hero {
    background: #000000;
    height: 95vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 2rem;
}

/* Breadcrumb Navigation */
.breadcrumb {
    background-color: #faf9f7;
    padding: 1rem 2rem;
    border-bottom: 1px solid #e0e0e0;
}

.breadcrumb .container {
    max-width: 1400px;
    margin: 0 auto;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.breadcrumb-item {
    font-size: 0.95rem;
    color: #666666;
}

.breadcrumb-item a {
    color: #666666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: orangered;
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: #000000;
    font-weight: 500;
}

.breadcrumb-separator {
    margin: 0 0.75rem;
    color: #999999;
    font-size: 1.1rem;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 6rem;
    color: orangered;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 100;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .breadcrumb {
        padding: 0.75rem 1rem;
    }
    
    .breadcrumb-item {
        font-size: 0.875rem;
    }
    
    .breadcrumb-separator {
        margin: 0 0.5rem;
    }
}

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

/* SEO Content Section */
.seo-section {
    background-color: #ffffff;
    padding: 5rem 2rem;
    border-top: 2px solid #000000;
    border-bottom: 2px solid #000000;
}

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

.seo-card {
    background-color: #faf9f7;
    border: 2px solid #000000;
    border-radius: 12px;
    padding: 3rem;
    transform: rotate(-1deg);
    transition: transform 0.3s ease;
    box-shadow: 5px 5px 0px rgba(0, 0, 0, 0.1);
}

.seo-card:hover {
    transform: rotate(0deg);
}

.seo-card h2 {
    color: orangered;
    font-size: 2.5rem;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 300;
    margin-bottom: 2rem;
    text-align: center;
}

.seo-card p {
    color: #333333;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.seo-card p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .seo-section {
        padding: 3rem 1rem;
    }
    
    .seo-card {
        padding: 2rem 1.5rem;
        transform: rotate(0deg);
    }
    
    .seo-card h2 {
        font-size: 1.875rem;
    }
    
    .seo-card p {
        font-size: 1rem;
    }
}

/* Themes Grid Section */
.themes-section {
    background-color: #faf9f7;
    padding: 5rem 2rem;
}

.themes-section .section-title {
    text-align: center;
    font-size: 2.5rem;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 300;
    color: #000000;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: #666666;
    font-size: 1.1rem;
}

.themes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

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

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

.theme-card .card-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

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

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

.trending-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ff1493;
    color: #ffffff;
    padding: 0.4rem 0.8rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 20px;
}

.theme-card .card-content {
    padding: 1.5rem;
}

.theme-card h3 {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1.25rem;
    font-weight: 400;
    color: #000000;
    margin-bottom: 0.75rem;
}

.theme-card p {
    color: #666666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.theme-card .card-link {
    display: inline-block;
    color: orangered;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.theme-card .card-link:hover {
    color: #000000;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .themes-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .themes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .theme-card .card-image {
        height: 180px;
    }
}

@media (max-width: 600px) {
    .themes-section {
        padding: 3rem 1rem;
    }
    
    .themes-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .theme-card .card-image {
        height: 200px;
    }
    
    .themes-section .section-title {
        font-size: 1.875rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
}

/* Testimonials Section */
.testimonials-section {
    background-color: #ffffff;
    padding: 5rem 2rem;
    border-top: 2px solid #000000;
}

.testimonials-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-section .section-title {
    text-align: center;
    font-size: 2.5rem;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 300;
    color: #000000;
    margin-bottom: 1rem;
}

.testimonials-section .section-subtitle {
    text-align: center;
    color: #666666;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

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

.testimonial-card {
    background: #faf9f7;
    border: 2px solid #000000;
    border-radius: 12px;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 3px 3px 0px rgba(0, 0, 0, 0.1);
}

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: 5px 5px 0px rgba(0, 0, 0, 0.15);
}

.testimonial-card:nth-child(1) {
    transform: rotate(-1deg);
}

.testimonial-card:nth-child(2) {
    transform: rotate(0.5deg);
}

.testimonial-card:nth-child(3) {
    transform: rotate(-0.5deg);
}

.testimonial-card:hover {
    transform: rotate(0deg) translateY(-3px);
}

.testimonial-card .stars {
    color: orangered;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.testimonial-card blockquote {
    margin: 0;
    padding: 0;
}

.testimonial-card blockquote p {
    color: #333333;
    font-size: 1rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    padding-top: 1rem;
    border-top: 1px solid #e0e0e0;
}

.testimonial-author strong {
    display: block;
    color: #000000;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.testimonial-author span {
    color: #666666;
    font-size: 0.9rem;
}

/* Responsive Testimonials */
@media (max-width: 900px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial-card:nth-child(1),
    .testimonial-card:nth-child(2),
    .testimonial-card:nth-child(3) {
        transform: rotate(0deg);
    }
}

@media (max-width: 600px) {
    .testimonials-section {
        padding: 3rem 1rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonials-section .section-title {
        font-size: 1.875rem;
    }
    
    .testimonials-section .section-subtitle {
        font-size: 1rem;
    }
    
    .testimonial-card blockquote p {
        font-size: 0.95rem;
    }
}

/* FAQ Section */
.faq-section {
    background-color: #faf9f7;
    padding: 5rem 2rem;
    border-top: 2px solid #000000;
}

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

.faq-section .section-title {
    text-align: center;
    font-size: 2.5rem;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 300;
    color: #000000;
    margin-bottom: 1rem;
}

.faq-section .section-subtitle {
    text-align: center;
    color: #666666;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: #ffffff;
    border: 2px solid #000000;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.faq-item:hover {
    transform: translateX(5px);
}

/* Hide the checkbox */
.faq-toggle {
    display: none;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 500;
    color: #000000;
    background: #ffffff;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #faf9f7;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: orangered;
    transition: transform 0.3s ease;
    display: inline-block;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: #ffffff;
}

.faq-answer p {
    padding: 0 1.5rem;
    margin: 0;
    color: #333333;
    line-height: 1.7;
}

/* When checkbox is checked, show answer and rotate icon */
.faq-toggle:checked ~ .faq-answer {
    max-height: 500px;
    padding: 0 0 1.5rem 0;
}

.faq-toggle:checked ~ .faq-question .faq-icon {
    transform: rotate(45deg);
}

/* Responsive FAQ */
@media (max-width: 768px) {
    .faq-section {
        padding: 3rem 1rem;
    }
    
    .faq-question {
        font-size: 1rem;
        padding: 1.25rem;
    }
    
    .faq-answer p {
        padding: 0 1.25rem;
        font-size: 0.95rem;
    }
    
    .faq-section .section-title {
        font-size: 1.875rem;
    }
    
    .faq-section .section-subtitle {
        font-size: 1rem;
    }
}