/**
 * Content Pages Styles
 * About, Contact, Reviews pages
 * Uses jewelry brand colors from jewelry-main.css
 */

/* Hero Sections */
.jewelry-content-hero {
    background: linear-gradient(135deg, var(--jewelry-primary) 0%, var(--jewelry-secondary) 100%);
    color: var(--jewelry-white);
    padding: 6em 0 4em;
    text-align: center;
}

.jewelry-content-hero h1 {
    font-family: var(--jewelry-font-heading);
    font-size: 3em;
    font-weight: 300;
    margin-bottom: 0.5em;
    letter-spacing: 0.02em;
}

.jewelry-content-hero p {
    font-size: 1.25em;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
    opacity: 0.95;
}

/* Content Sections */
.jewelry-content-section {
    padding: 5em 0;
}

.jewelry-content-section:nth-child(even) {
    background: var(--jewelry-bg-light);
}

.jewelry-content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2em;
}

/* Section Headings */
.jewelry-section-title {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 0.5em;
    color: var(--jewelry-primary);
    font-weight: 300;
    font-family: var(--jewelry-font-heading);
}

.jewelry-section-subtitle {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2em;
    font-size: 1.1em;
    color: var(--jewelry-text-light);
}

/* Grid Layouts */
.jewelry-content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3em;
    margin-top: 3em;
}

.jewelry-content-grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4em;
    align-items: center;
    margin-top: 3em;
}

/* Cards */
.jewelry-content-card {
    text-align: center;
    padding: 2em;
}

.jewelry-content-card-icon {
    font-size: 3em;
    margin-bottom: 0.5em;
}

.jewelry-content-card h3 {
    font-size: 1.5em;
    margin-bottom: 0.75em;
    color: var(--jewelry-primary);
    font-family: var(--jewelry-font-heading);
}

.jewelry-content-card p {
    line-height: 1.8;
    color: var(--jewelry-text-light);
}

/* Value Items */
.jewelry-value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2em;
    margin-top: 3em;
}

.jewelry-value-item {
    padding: 2em;
    background: var(--jewelry-white);
    border-radius: 8px;
    box-shadow: var(--jewelry-shadow-sm);
    transition: var(--jewelry-transition);
}

.jewelry-value-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--jewelry-shadow-md);
}

.jewelry-value-icon {
    font-size: 2.5em;
    margin-bottom: 0.5em;
}

.jewelry-value-item h3 {
    font-size: 1.3em;
    margin-bottom: 0.5em;
    color: var(--jewelry-primary);
    font-family: var(--jewelry-font-heading);
}

.jewelry-value-item p {
    line-height: 1.7;
    color: var(--jewelry-text-light);
}

/* Story Section */
.jewelry-story-text h2 {
    font-size: 2.5em;
    margin-bottom: 0.75em;
    color: var(--jewelry-primary);
    font-weight: 300;
    font-family: var(--jewelry-font-heading);
}

.jewelry-story-text p {
    line-height: 1.9;
    color: var(--jewelry-text-light);
    margin-bottom: 1.5em;
    font-size: 1.1em;
}

.jewelry-story-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--jewelry-shadow-lg);
}

.jewelry-story-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Contact Page Styles */
.jewelry-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4em;
    margin-bottom: 4em;
}

.jewelry-contact-info h2 {
    font-size: 2em;
    margin-bottom: 1em;
    color: var(--jewelry-primary);
    font-weight: 300;
    font-family: var(--jewelry-font-heading);
}

.jewelry-contact-method {
    margin-bottom: 2em;
    padding: 1.5em;
    background: var(--jewelry-bg-light);
    border-radius: 8px;
}

.jewelry-contact-method-icon {
    font-size: 2em;
    margin-bottom: 0.5em;
}

.jewelry-contact-method h3 {
    font-size: 1.3em;
    margin-bottom: 0.5em;
    color: var(--jewelry-primary);
    font-family: var(--jewelry-font-heading);
}

.jewelry-contact-method p {
    line-height: 1.7;
    color: var(--jewelry-text-light);
    margin-bottom: 0.5em;
}

.jewelry-contact-method a {
    color: var(--jewelry-primary);
    text-decoration: none;
    font-weight: 600;
}

.jewelry-contact-method a:hover {
    text-decoration: underline;
}

/* Contact Form */
.jewelry-contact-form {
    background: var(--jewelry-white);
    padding: 2em;
    border-radius: 8px;
    box-shadow: var(--jewelry-shadow-md);
}

.jewelry-contact-form h2 {
    font-size: 2em;
    margin-bottom: 1em;
    color: var(--jewelry-primary);
    font-weight: 300;
    font-family: var(--jewelry-font-heading);
}

.jewelry-form-group {
    margin-bottom: 1.5em;
}

.jewelry-form-group label {
    display: block;
    margin-bottom: 0.5em;
    color: var(--jewelry-primary);
    font-weight: 600;
}

.jewelry-form-group input,
.jewelry-form-group textarea,
.jewelry-form-group select {
    width: 100%;
    padding: 0.75em;
    border: 1px solid var(--jewelry-border);
    border-radius: 4px;
    font-size: 1em;
    font-family: var(--jewelry-font-primary);
    transition: var(--jewelry-transition);
}

.jewelry-form-group input:focus,
.jewelry-form-group textarea:focus,
.jewelry-form-group select:focus {
    outline: none;
    border-color: var(--jewelry-primary);
}

.jewelry-form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.jewelry-form-submit {
    background: var(--jewelry-primary);
    color: var(--jewelry-white);
    padding: 1em 2.5em;
    border: none;
    border-radius: 4px;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    transition: var(--jewelry-transition);
}

.jewelry-form-submit:hover {
    background: var(--jewelry-text);
    transform: translateY(-2px);
}

/* Reviews Page Styles */
.jewelry-reviews-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2em;
    margin-bottom: 4em;
    text-align: center;
}

.jewelry-stat-card {
    padding: 2em;
    background: var(--jewelry-bg-light);
    border-radius: 8px;
}

.jewelry-stat-number {
    font-size: 3em;
    font-weight: 700;
    color: var(--jewelry-primary);
    margin-bottom: 0.25em;
    font-family: var(--jewelry-font-heading);
}

.jewelry-stat-label {
    font-size: 1.1em;
    color: var(--jewelry-text-light);
}

.jewelry-reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2em;
    margin-bottom: 4em;
}

.jewelry-review-card {
    background: var(--jewelry-white);
    padding: 2em;
    border-radius: 8px;
    box-shadow: var(--jewelry-shadow-sm);
    transition: var(--jewelry-transition);
}

.jewelry-review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--jewelry-shadow-md);
}

.jewelry-review-stars {
    color: var(--jewelry-accent);
    font-size: 1.2em;
    margin-bottom: 1em;
}

.jewelry-review-text {
    line-height: 1.8;
    color: var(--jewelry-text-light);
    margin-bottom: 1.5em;
    font-style: italic;
}

.jewelry-review-author {
    display: flex;
    align-items: center;
    gap: 1em;
}

.jewelry-review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--jewelry-primary) 0%, var(--jewelry-accent) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--jewelry-white);
    font-weight: 700;
    font-size: 1.2em;
}

.jewelry-review-author-info h4 {
    margin: 0 0 0.25em 0;
    color: var(--jewelry-primary);
    font-weight: 600;
    font-family: var(--jewelry-font-heading);
}

.jewelry-review-author-info p {
    margin: 0;
    color: var(--jewelry-text-light);
    font-size: 0.9em;
}

/* Trust Section */
.jewelry-trust-section {
    background: var(--jewelry-bg-light);
    padding: 4em 2em;
    text-align: center;
    border-radius: 8px;
    margin-bottom: 4em;
}

.jewelry-trust-section h2 {
    font-size: 2em;
    margin-bottom: 1em;
    color: var(--jewelry-primary);
    font-weight: 300;
    font-family: var(--jewelry-font-heading);
}

.jewelry-trust-badges {
    display: flex;
    justify-content: center;
    gap: 3em;
    flex-wrap: wrap;
    margin-top: 2em;
}

.jewelry-trust-badge {
    text-align: center;
}

.jewelry-trust-icon {
    font-size: 3em;
    margin-bottom: 0.5em;
}

.jewelry-trust-badge h3 {
    font-size: 1.2em;
    color: var(--jewelry-primary);
    margin-bottom: 0.25em;
    font-family: var(--jewelry-font-heading);
}

.jewelry-trust-badge p {
    color: var(--jewelry-text-light);
    font-size: 0.95em;
}

/* FAQ Section */
.jewelry-faq-section {
    background: var(--jewelry-bg-light);
    padding: 4em 0;
    text-align: center;
}

.jewelry-faq-section h2 {
    font-size: 2em;
    margin-bottom: 0.5em;
    color: var(--jewelry-primary);
    font-family: var(--jewelry-font-heading);
}

.jewelry-faq-section p {
    font-size: 1.1em;
    color: var(--jewelry-text-light);
    margin-bottom: 2em;
}

.jewelry-faq-section a {
    background: var(--jewelry-primary);
    color: var(--jewelry-white);
    padding: 1em 2.5em;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: var(--jewelry-transition);
}

.jewelry-faq-section a:hover {
    background: var(--jewelry-text);
    transform: translateY(-2px);
}

/* CTA Section */
.jewelry-cta-section {
    background: linear-gradient(135deg, var(--jewelry-primary) 0%, var(--jewelry-secondary) 100%);
    color: var(--jewelry-white);
    padding: 4em 2em;
    text-align: center;
    border-radius: 8px;
}

.jewelry-cta-section h2 {
    font-size: 2.5em;
    margin-bottom: 0.5em;
    font-weight: 300;
    font-family: var(--jewelry-font-heading);
}

.jewelry-cta-section p {
    font-size: 1.2em;
    margin-bottom: 2em;
    opacity: 0.95;
}

.jewelry-cta-button {
    background: var(--jewelry-white);
    color: var(--jewelry-primary);
    padding: 1em 2.5em;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: var(--jewelry-transition);
}

.jewelry-cta-button:hover {
    transform: scale(1.05);
}

.jewelry-cta-buttons {
    display: flex;
    gap: 1.5em;
    justify-content: center;
    flex-wrap: wrap;
}

.jewelry-cta-button-secondary {
    background: transparent;
    color: var(--jewelry-white);
    padding: 1em 2.5em;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--jewelry-white);
    transition: var(--jewelry-transition);
    display: inline-block;
}

.jewelry-cta-button-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .jewelry-content-hero h1 {
        font-size: 2em;
    }

    .jewelry-content-grid-2col,
    .jewelry-contact-grid {
        grid-template-columns: 1fr;
        gap: 2em;
    }

    .jewelry-content-section {
        padding: 3em 0;
    }

    .jewelry-reviews-grid {
        grid-template-columns: 1fr;
    }

    .jewelry-section-title {
        font-size: 2em;
    }
}

/* ============================================
   INTERNAL LINKS
   ============================================ */
.jewelry-link-arrow {
    display: inline-block;
    color: var(--jewelry-primary);
    text-decoration: none;
    font-weight: 600;
    margin-top: 12px;
    transition: var(--jewelry-transition);
}

.jewelry-link-arrow:hover {
    color: var(--jewelry-secondary);
    transform: translateX(4px);
}

