/* Auxiliary Pages Stylesheet */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.6;
    color: #2D5016;
    background-color: #F5F1E8;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4 {
    line-height: 1.2;
    font-weight: 400;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.3rem; }

p {
    line-height: 1.6;
    margin-bottom: 1rem;
}

a {
    color: #C5351C;
    text-decoration: none;
}

a:hover {
    color: #2D5016;
}

/* Header */
.header {
    background: linear-gradient(135deg, #F5F1E8 0%, rgba(245,241,232,0.95) 100%);
    padding: 2rem 0;
    border-bottom: 1px solid rgba(45, 80, 22, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    filter: drop-shadow(0 2px 4px rgba(45, 80, 22, 0.1));
}

.brand-name {
    color: #2D5016;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.nav {
    display: flex;
    gap: 1rem;
}

.nav-link {
    color: #2D5016;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.nav-link:hover {
    background-color: rgba(45, 80, 22, 0.1);
    color: #2D5016;
}

/* Main Content */
.main-content {
    min-height: calc(100vh - 200px);
}

/* Page Hero */
.page-hero {
    background: linear-gradient(to bottom, rgba(245,241,232,0.8), rgba(245,241,232,0.95));
    padding: 4rem 0;
    text-align: center;
}

.page-title {
    margin-bottom: 1rem;
    color: #2D5016;
}

.page-subtitle {
    font-size: 1.2rem;
    color: #666;
    font-style: italic;
}

/* Content Sections */
.content-section {
    padding: 4rem 0;
}

.content-section.alt-bg {
    background: rgba(45, 80, 22, 0.03);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: #2D5016;
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.content-grid.reverse {
    direction: rtl;
}

.content-grid.reverse > * {
    direction: ltr;
}

.content-text h3 {
    margin-bottom: 1.5rem;
    color: #2D5016;
}

.content-text p {
    color: #666;
}

.content-text em {
    font-style: italic;
    color: #C5351C;
}

/* Image Placeholders */
.about-image {
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(45, 80, 22, 0.12);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.value-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 8px;
    border: 1px solid rgba(45, 80, 22, 0.1);
}

.value-icon {
    margin-bottom: 1rem;
}

.value-card h4 {
    margin-bottom: 1rem;
    color: #2D5016;
}

.value-card p {
    color: #666;
    margin: 0;
}

/* Content Container for Empty Pages */
.content-container {
    max-width: 800px;
    margin: 0 auto;
}

.content-placeholder {
    padding: 3rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 8px;
    border: 2px dashed #C5351C;
    text-align: center;
}

.content-placeholder p {
    color: #666;
    font-style: italic;
    margin: 0;
}

/* Policy Content */
.policy-content {
    max-width: 800px;
    margin: 0 auto;
}

.policy-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 8px;
    border-left: 4px solid #2D5016;
}

.policy-section h3 {
    color: #2D5016;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.policy-section h4 {
    color: #2D5016;
    margin: 1.5rem 0 1rem 0;
    font-size: 1.1rem;
}

.policy-section p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.policy-section ul {
    color: #666;
    margin: 1rem 0;
    padding-left: 2rem;
}

.policy-section ul li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.contact-details {
    background: rgba(45, 80, 22, 0.05);
    padding: 1.5rem;
    border-radius: 6px;
    margin: 1rem 0;
}

.contact-details p {
    margin-bottom: 0.5rem;
}

.contact-details a {
    color: #C5351C;
    font-weight: 500;
}

/* SVG Illustrations */
.svg-illustration {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 300px;
    background: rgba(245, 241, 232, 0.3);
    border-radius: 8px;
    border: 1px solid rgba(45, 80, 22, 0.1);
}

.svg-illustration svg {
    max-width: 100%;
    height: auto;
}

/* Cookie Customization Panel */
.cookie-customization {
    background: rgba(45, 80, 22, 0.95);
    border-top: 1px solid rgba(245, 241, 232, 0.2);
    padding: 1.5rem 0;
}

.cookie-custom-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.cookie-custom-content h4 {
    color: #F5F1E8;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.cookie-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.cookie-category {
    background: rgba(245, 241, 232, 0.1);
    padding: 1rem;
    border-radius: 4px;
    border: 1px solid rgba(245, 241, 232, 0.2);
}

.cookie-label {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    cursor: pointer;
}

.cookie-label input[type="checkbox"] {
    margin-right: 0.5rem;
}

.cookie-category-name {
    color: #F5F1E8;
    font-weight: 500;
    font-size: 0.95rem;
}

.cookie-category-desc {
    color: rgba(245, 241, 232, 0.8);
    font-size: 0.85rem;
    line-height: 1.3;
}

.cookie-custom-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.cookie-btn-customize {
    background: transparent;
    color: #F5F1E8;
    border: 1px solid rgba(245, 241, 232, 0.5);
}

.cookie-btn-customize:hover {
    background: rgba(245, 241, 232, 0.1);
}

/* Footer */
.footer {
    background: #2D5016;
    color: #F5F1E8;
    padding: 3rem 0 1rem 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand .logo-section {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-brand .logo path {
    fill: #F5F1E8;
}

.footer-brand .logo circle {
    fill: #C5351C;
}

.footer-brand .brand-name {
    color: #F5F1E8;
    font-size: 1.2rem;
}

.footer-brand p {
    color: rgba(245, 241, 232, 0.8);
    margin: 0;
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
}

.link-group h4 {
    margin-bottom: 1rem;
    color: #F5F1E8;
}

.link-group ul {
    list-style: none;
}

.link-group ul li {
    margin-bottom: 0.5rem;
}

.link-group ul li a {
    color: rgba(245, 241, 232, 0.8);
}

.link-group ul li a:hover {
    color: #C5351C;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(245, 241, 232, 0.2);
}

.footer-bottom p {
    color: rgba(245, 241, 232, 0.7);
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.8rem; }
    h3 { font-size: 1.5rem; }
    
    .header {
        padding: 1.5rem 0;
    }
    
    .header-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .logo-section {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .page-hero {
        padding: 3rem 0;
    }
    
    .content-section {
        padding: 3rem 0;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .cookie-categories {
        grid-template-columns: 1fr;
    }
    
    .cookie-custom-actions {
        flex-direction: column;
        align-items: center;
    }
}