/* CSS Styling for:

1. page-sitemap.php
2. page-cookiespolicy.php
3. page-privatepolicy.php
4. page-faqs.php

*/

/* FAQ Page Styles */

.site-main {
    background-color: #f7efec;
}

/* Hero Section */
.hero-section.faqs {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 600px;
    background-color: #f7efec;
    padding: 120px 60px 80px 60px;
}

.hero-content.faqs {
    text-align: center;
    max-width: 800px;
}

.hero-pretitle.faqs {
    font-family: "Yellowtail", cursive;
    font-size: 34px;
    color: #744c3e;
    margin: 0 0 20px 0;
    line-height: 1;
}

.hero-title.faqs {
    font-size: 48px;
    font-weight: 400;
    color: #2f2f2f;
    text-transform: uppercase;
    margin: 0 0 20px 0;
    line-height: 1;
    border-bottom: 1px solid #744c3e;
    padding-bottom: 20px;
}

.hero-paragraph.faqs {
    font-size: 18px;
    font-weight: 400;
    color: var(--color-text);
    line-height: 1.6;
    margin: 20px 0 0 0;
}

/* FAQ Section */
.faq-section {
    padding: 80px 60px 0px 60px;
    background-color: #f7efec;
}

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

/* FAQ Items */
.faq-item {
    position: relative;
    margin-bottom: 20px;
    border-bottom: 1px solid #e0d5d1;
    padding-bottom: 20px;
}

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

/* Checkbox hidden but functional */
.faq-checkbox {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 2;
    cursor: pointer;
}

/* FAQ Question */
.faq-question {
    font-size: 22px;
    font-weight: 400;
    color: #2f2f2f;
    margin: 0 0 15px 0;
    line-height: 1.3;
    position: relative;
    padding-left: 40px;
}

.faq-question label {
    cursor: pointer;
    display: block;
    width: 100%;
    position: relative;
    transition: color 0.3s ease;
}

.faq-question label:hover {
    color: #744c3e;
}

/* Arrow indicator */
.faq-question label::before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    top: 50%;
    left: -30px;
    border-left: 8px solid #744c3e;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    margin-top: -6px;
    transition: all 0.3s ease;
}

/* FAQ Answer */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding-left: 40px;
}

.faq-answer p {
    font-size: 16px;
    font-weight: 400;
    color: var(--color-text);
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

/* Expanded state */
.faq-checkbox:checked~.faq-question label::before {
    border-left: 8px solid transparent;
    border-top: 8px solid #744c3e;
    border-right: 8px solid transparent;
    border-bottom: none;
    margin-left: -4px;
    margin-top: -8px;
}

.faq-checkbox:checked~.faq-answer {
    max-height: 200px;
    padding-top: 10px;
    padding-bottom: 20px;
}

/* CTA Section */
.faq-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 60px 40px 90px 40px;
    background: linear-gradient(0deg, #f7efec00 10%, #f7efec6a 20%, #f7efec 40%);
    border-radius: 12px;
    gap: 10px
}

.faq-cta p {
    font-size: 24px;
    font-weight: 400;
    color: #744c3e;
    margin: 0 0 30px 0;
    font-family: "Yellowtail", cursive;
}

.cta-buttons {
    display: flex;
    gap: 20px;
}

.faq-cta-button {
    background-color: #b3897b;
    color: #fff;
    padding: 11px 28px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.faq-cta-button:hover {
    background-color: #8c6b5f;
    color: #fff;
}

/* Reveal Animations */
[data-reveal] {
    opacity: 0.001;
    transform: translateY(12px);
    transition-property: opacity, transform;
    transition-duration: 600ms;
    transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
    will-change: transform, opacity;
}

[data-reveal="fade"] {
    transform: none;
}

[data-reveal].is-visible {
    opacity: 1;
}

[data-reveal]:not([data-reveal="fade"]).is-visible {
    transform: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section.faqs {
        padding: 100px 30px 60px 30px;
        min-height: 500px;
    }

    .hero-pretitle.faqs {
        font-size: 28px;
    }

    .hero-title.faqs {
        font-size: 36px;
    }

    .hero-paragraph.faqs {
        font-size: 16px;
    }

    .faq-section {
        padding: 60px 30px 0px 30px;
    }

    .faq-question {
        font-size: 18px;
        padding-left: 35px;
    }

    .faq-question label::before {
        border-left-width: 6px;
        border-top-width: 5px;
        border-bottom-width: 5px;
        margin-top: -5px;
    }

    .faq-checkbox:checked~.faq-question label::before {
        border-left-width: 6px;
        border-top-width: 6px;
        border-right-width: 6px;
        margin-left: -3px;
        margin-top: -6px;
    }

    .faq-answer {
        padding-left: 35px;
    }

    .faq-answer p {
        font-size: 15px;
    }

    .faq-cta {
        margin-top: 40px;
        padding: 30px 20px;
    }

    .faq-cta p {
        font-size: 20px;
        margin-bottom: 25px;
    }

    .faq-cta-button {
        padding: 12px 30px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .hero-section.faqs {
        padding: 80px 20px 50px 20px;
    }

    .hero-pretitle.faqs {
        font-size: 24px;
    }

    .hero-title.faqs {
        font-size: 30px;
    }

    .faq-section {
        padding: 40px 20px;
    }

    .faq-question {
        font-size: 16px;
        padding-left: 30px;
    }

    .faq-question label::before {
        border-left-width: 5px;
        border-top-width: 4px;
        border-bottom-width: 4px;
        margin-top: -4px;
    }

    .faq-checkbox:checked~.faq-question label::before {
        border-left-width: 5px;
        border-top-width: 5px;
        border-right-width: 5px;
        margin-left: -2.5px;
        margin-top: -5px;
    }

    .faq-answer {
        padding-left: 30px;
    }

    .faq-answer p {
        font-size: 14px;
    }

    .faq-cta p {
        font-size: 18px;
    }

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

/* Policy Page Styles */
.policy-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e0d5d1;
}

.policy-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.policy-title {
    font-size: 28px;
    font-weight: 400;
    color: #2f2f2f;
    margin: 0 0 20px 0;
    line-height: 1.3;
    text-transform: uppercase;
    border-bottom: 2px solid #744c3e;
    padding-bottom: 10px;
}

.policy-paragraph {
    font-size: 16px;
    font-weight: 400;
    color: var(--color-text);
    line-height: 1.6;
    margin: 0 0 20px 0;
}

.policy-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.policy-list li {
    font-size: 16px;
    font-weight: 400;
    color: var(--color-text);
    line-height: 1.6;
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

.policy-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: #744c3e;
    font-weight: bold;
    font-size: 18px;
}

.contact-info {
    background-color: #f7efec;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #744c3e;
    margin-top: 20px;
}

.contact-info p {
    font-size: 16px;
    font-weight: 400;
    color: var(--color-text);
    line-height: 1.6;
    margin: 0 0 10px 0;
}

.contact-info p:last-child {
    margin-bottom: 0;
}

.contact-info a {
    color: #744c3e;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #b3897b;
    text-decoration: underline;
}

.last-updated {
    text-align: center;
    font-style: italic;
    color: #666;
    font-size: 14px;
    margin-top: 40px;
    padding-top: 20px;
}

/* Responsive Design for Policy Page */
@media (max-width: 768px) {
    .policy-title {
        font-size: 24px;
    }

    .policy-paragraph {
        font-size: 15px;
    }

    .policy-list li {
        font-size: 15px;
        padding-left: 15px;
    }

    .contact-info {
        padding: 15px;
    }

    .contact-info p {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .policy-section {
        margin-bottom: 30px;
        padding-bottom: 20px;
    }

    .policy-title {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .policy-paragraph {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .policy-list li {
        font-size: 14px;
        margin-bottom: 10px;
        padding-left: 12px;
    }

    .policy-list li::before {
        font-size: 16px;
    }

    .contact-info {
        padding: 12px;
        margin-top: 15px;
    }

    .contact-info p {
        font-size: 14px;
    }

    .last-updated {
        font-size: 13px;
        margin-top: 30px;
        padding-top: 15px;
    }
}

/* Sitemap Page Styles */
.sitemap-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e0d5d1;
}

.sitemap-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.sitemap-title {
    font-size: 28px;
    font-weight: 400;
    color: #2f2f2f;
    margin: 0 0 20px 0;
    line-height: 1.3;
    text-transform: uppercase;
    border-bottom: 2px solid #744c3e;
    padding-bottom: 10px;
}

.sitemap-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sitemap-list li {
    font-size: 16px;
    font-weight: 400;
    color: var(--color-text);
    line-height: 1.6;
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

.sitemap-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: #744c3e;
    font-weight: bold;
    font-size: 18px;
}

.sitemap-list a {
    color: #744c3e;
    text-decoration: none;
    transition: color 0.3s ease;
}

.sitemap-list a:hover {
    color: #b3897b;
    text-decoration: underline;
}

.sitemap-list a.coming-soon {
    color: #999;
    cursor: not-allowed;
}

.sitemap-list a.coming-soon:hover {
    color: #999;
    text-decoration: none;
    cursor: not-allowed;
}

/* Responsive Design for Sitemap */
@media (max-width: 768px) {
    .sitemap-title {
        font-size: 24px;
    }

    .sitemap-list li {
        font-size: 15px;
        padding-left: 15px;
    }
}

@media (max-width: 480px) {
    .sitemap-section {
        margin-bottom: 30px;
        padding-bottom: 20px;
    }

    .sitemap-title {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .sitemap-list li {
        font-size: 14px;
        margin-bottom: 10px;
        padding-left: 12px;
    }

    .sitemap-list li::before {
        font-size: 16px;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .faq-checkbox:checked~.faq-answer {
        transition: none;
    }

    .faq-question label::before {
        transition: none;
    }

    .faq-question label {
        transition: none;
    }

    .faq-cta-button {
        transition: none;
    }

    .contact-info a {
        transition: none;
    }

    .sitemap-list a {
        transition: none;
    }

    [data-reveal],
    [data-reveal].is-visible {
        transition: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}