/* ComCamp consolidated styles (base + theme) */

/* ===== Base Styles (from previous comcamp/styles.css) ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #f8f6f0 0%, #e8e0d0 100%);
    min-height: 100vh;
}

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

.header {
    text-align: center;
    margin-bottom: 40px;
    padding: 40px 0;
}

.main-title {
    font-size: 3rem;
    font-weight: 700;
    color: #b8a07a;
    margin-bottom: 16px;
    text-shadow: 2px 2px 4px rgba(184, 160, 122, 0.2);
}

.subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.policy-content {
    margin-bottom: 40px;
}

.policy-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(184, 160, 122, 0.15);
    border: 1px solid rgba(184, 160, 122, 0.2);
    overflow: hidden;
}

.policy-section {
    padding: 32px;
    border-bottom: 1px solid rgba(184, 160, 122, 0.1);
    transition: all 0.3s ease;
}

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

.policy-section:hover {
    background: rgba(184, 160, 122, 0.02);
}

.section-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    gap: 16px;
}

.section-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #b8a07a 0%, #d4c4a8 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 4px 12px rgba(184, 160, 122, 0.3);
    flex-shrink: 0;
}

.section-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #b8a07a;
    margin: 0;
}

.policy-section p {
    color: #555;
    line-height: 1.7;
    font-size: 1rem;
    margin-left: 56px;
}

.footer {
    text-align: center;
    padding: 30px;
}

.footer-content {
    background: white;
    border-radius: 15px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(184, 160, 122, 0.1);
    border: 1px solid rgba(184, 160, 122, 0.2);
}

.footer-content p {
    color: #666;
    margin-bottom: 8px;
}

.footer-content p:last-child {
    margin-bottom: 0;
}

.footer-content strong {
    color: #b8a07a;
}

@media (max-width: 768px) {
    .container { padding: 15px; }
    .main-title { font-size: 2.5rem; }
    .subtitle { font-size: 1.1rem; }
    .policy-section { padding: 24px 20px; }
    .section-header h2 { font-size: 1.3rem; }
    .policy-section p { margin-left: 0; margin-top: 16px; }
    .section-header { flex-direction: column; align-items: flex-start; gap: 12px; }
}

@media (max-width: 480px) {
    .main-title { font-size: 2rem; }
    .policy-section { padding: 20px 16px; }
    .section-header h2 { font-size: 1.2rem; }
    .policy-section p { font-size: 0.95rem; }
}

html { scroll-behavior: smooth; }
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: #b8a07a; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #a08f6a; }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px);} to { opacity: 1; transform: translateY(0);} }
.policy-section { animation: fadeInUp 0.6s ease forwards; }
.policy-card:hover { transform: translateY(-2px); box-shadow: 0 25px 50px rgba(184, 160, 122, 0.2); transition: all 0.3s ease; }
.section-number:hover { transform: scale(1.1); transition: transform 0.3s ease; }

/* ===== Theme Overrides (ComCamp #21507E) ===== */

/* Page background */
body { background: linear-gradient(135deg, #f1f6fb 0%, #e6eff7 100%); }

/* Header */
.main-title { color: #21507E; text-shadow: 2px 2px 4px rgba(33, 80, 126, 0.2); }
.subtitle { color: #4a4a4a; }

/* Card and sections */
.policy-card { box-shadow: 0 20px 40px rgba(33, 80, 126, 0.15); border: 1px solid rgba(33, 80, 126, 0.2); }
.policy-section { border-bottom: 1px solid rgba(33, 80, 126, 0.1); }
.policy-section:hover { background: rgba(33, 80, 126, 0.02); }
.section-header h2 { color: #21507E; }
.section-number { background: linear-gradient(135deg, #21507E 0%, #2B6AA7 100%); box-shadow: 0 4px 12px rgba(33, 80, 126, 0.3); }

/* Footer */
.footer-content { box-shadow: 0 10px 30px rgba(33, 80, 126, 0.1); border: 1px solid rgba(33, 80, 126, 0.2); }
.footer-content strong { color: #21507E; }

/* Links */
a { color: #21507E; }

/* Scrollbar accent */
::-webkit-scrollbar-thumb { background: #21507E; }
::-webkit-scrollbar-thumb:hover { background: #1b3f63; }

/* Hover accents */
.policy-card:hover { box-shadow: 0 25px 50px rgba(33, 80, 126, 0.2); }
.section-number:hover { transform: scale(1.1); }
