/* Film & Foto Page Specific Styles */

/* Intro Section */
.intro-section {
    background-color: var(--bg-color);
}

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

.intro-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.intro-text p:last-child {
    margin-bottom: 0;
}

.intro-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.intro-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.section-intro {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Pricing Section */
.pricing-section {
    background-color: var(--bg-color);
}

.pricing-section > .container > #pricing-heading {
    display: table;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    background-color: transparent;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    padding: 2.5rem;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    background-color: var(--card-bg);
    position: relative;
    transition: transform 0.3s ease, background-color 0.3s ease;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    background-color: var(--card-bg-hover);
    transform: translateY(-5px);
}

.pricing-header {
    margin-bottom: 2rem;
    text-align: center;
}

.pricing-header h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.price-from {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-color);
    line-height: 1;
}

.price-period {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}

.pricing-features {
    list-style: none;
    flex-grow: 1;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.75rem 0;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border-color);
    position: relative;
    padding-left: 1.5rem;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--button-bg);
    font-weight: 600;
}

.pricing-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 1rem;
    font-style: italic;
    text-align: center;
}

/* Projects Section */
.projects-section {
    background-color: var(--bg-color);
}

.projects-section > .container > #projects-heading {
    display: table;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    background-color: transparent;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.project-card {
    padding: 2.5rem;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    background-color: var(--card-bg);
    position: relative;
    transition: transform 0.3s ease, background-color 0.3s ease;
    display: flex;
    flex-direction: column;
}

.project-card:hover {
    background-color: var(--card-bg-hover);
    transform: translateY(-5px);
}

.project-header {
    margin-bottom: 2rem;
    text-align: center;
}

.project-header h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.project-features {
    list-style: none;
    flex-grow: 1;
    margin-bottom: 1rem;
}

.project-card .pricing-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 1rem;
    font-style: italic;
    text-align: center;
}

.project-features li {
    padding: 0.75rem 0;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border-color);
    position: relative;
    padding-left: 1.5rem;
}

.project-features li:last-child {
    border-bottom: none;
}

.project-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--button-bg);
    font-weight: 600;
}

.projects-note {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.projects-note p {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* FAQ Section */
.faq-section {
    background-color: var(--bg-color);
}

.faq-list {
    max-width: 800px;
    margin-top: 3rem;
    text-align: left;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
}

.faq-item:last-child {
    border-bottom: none;
}

/* Native details element styling */
details.faq-item {
    display: block;
    outline: none;
}

details.faq-item:focus {
    outline: none;
}

details.faq-item:focus-visible {
    outline: none;
}

/* Summary element */
.faq-question {
    width: 100%;
    padding: 1.5rem 0;
    background: none;
    border: none;
    color: var(--text-color);
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 500;
    font-family: inherit;
    transition: color 0.3s ease;
    list-style: none;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}

.faq-question:active {
    background: none;
    outline: none;
}

/* Remove default marker in webkit browsers */
.faq-question::-webkit-details-marker {
    display: none;
}

/* Remove default marker in Firefox */
.faq-question::marker {
    display: none;
    content: "";
}

.faq-question:hover {
    color: var(--button-bg);
}

.faq-question:focus {
    outline: none;
}

.faq-question:focus-visible {
    outline: none;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--text-muted);
    transition: transform 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

/* Icon rotation when details is open */
details.faq-item[open] .faq-icon {
    transform: rotate(45deg);
    color: var(--button-bg);
}

.faq-answer {
    padding: 0 0 1.5rem 0;
    text-align: left;
}

.faq-answer p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 1rem;
    text-align: left;
}

/* CTA Section */
.cta-section {
    background-color: var(--bg-color);
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .pricing-grid,
    .projects-grid {
        grid-template-columns: 1fr;
    }

    .price-amount {
        font-size: 2.5rem;
    }

    .pricing-card,
    .project-card {
        padding: 2rem;
    }

    .intro-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .intro-text p {
        font-size: 1.1rem;
    }

    .price {
        flex-direction: column;
        align-items: center;
        gap: 0.25rem;
    }

    .price-from {
        font-size: 0.9rem;
    }
}

