/* =============================================
   PAGES COMMON STYLES
   Shared CSS for page headers, policy pages, 
   blog listing, FAQ, and separator elements.
   ============================================= */

/* Page Hero & Premium Styling */
.page-header {
    background: #fdf5f8;
    padding: 80px 0 60px;
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(232, 162, 192, 0.1) 0%, transparent 70%);
}

.page-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: #333;
    margin-bottom: 20px;
    position: relative;
}

.page-subtitle {
    font-family: 'Inter', sans-serif;
    color: #777;
    font-size: 1.1rem;
    font-weight: 300;
}

.separator-pink {
    width: 60px;
    height: 3px;
    background: #e8a2c0;
    margin: 20px auto;
    border-radius: 2px;
}

/* Policy Content */
.policy-content {
    font-family: 'Inter', sans-serif;
    color: #555;
    line-height: 1.8;
}

.policy-section {
    margin-bottom: 40px;
}

.policy-section h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.policy-section h4::before {
    content: '';
    width: 20px;
    height: 1px;
    background: #e8a2c0;
}

.policy-note {
    background: #fdf5f8;
    border-left: 3px solid #e8a2c0;
    padding: 20px;
    border-radius: 0 8px 8px 0;
    margin-top: 40px;
    font-size: 0.95rem;
    color: #555;
}

ul.policy-list {
    list-style: none;
    padding-left: 0;
    margin-top: 15px;
}

ul.policy-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}

ul.policy-list li::before {
    content: '•';
    color: #e8a2c0;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -5px;
}

/* Blog Cards (Blog Listing Page) */
.blog-card {
    border: none;
    background: transparent;
    transition: all 0.4s ease;
}

.blog-image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.blog-image-wrapper img {
    transition: transform 0.6s ease;
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.blog-card:hover .blog-image-wrapper img {
    transform: scale(1.05);
}

.blog-date {
    font-size: 0.8rem;
    color: #e8a2c0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.blog-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.blog-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-title a:hover {
    color: #d489ad;
}

.blog-excerpt {
    color: #777;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.btn-read-more {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-read-more i {
    color: #e8a2c0;
    transition: transform 0.3s ease;
}

.btn-read-more:hover {
    color: #d489ad;
}

.btn-read-more:hover i {
    transform: translateX(5px);
}

/* FAQ Accordion Overrides */
.accordion-item {
    border: none;
    margin-bottom: 15px;
    background: transparent;
}

.accordion-button {
    background: white;
    border: 1px solid #f0f0f0;
    border-radius: 8px !important;
    padding: 20px 25px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: #333;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background: #fdf5f8;
    color: #d489ad;
    border-color: #e8a2c0;
    box-shadow: 0 5px 15px rgba(232, 162, 192, 0.1);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: #e8a2c0;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23333'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23d489ad'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 20px 25px;
    background: white;
    border: 1px solid #f0f0f0;
    border-top: none;
    border-radius: 0 0 8px 8px;
    color: #666;
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 768px) {
    .page-title { font-size: 2.5rem; }
}
