/* Kamp Fun - Shared Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #333;
}

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

/* Header */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

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

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: #4f46e5;
    text-decoration: none;
}

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

.btn {
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background: #4f46e5;
    color: white;
}

.btn-primary:hover {
    background: #3730a3;
    transform: translateY(-2px);
}

.btn-outline {
    border: 2px solid #4f46e5;
    color: #4f46e5;
    background: transparent;
}

.btn-outline:hover {
    background: #4f46e5;
    color: white;
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.2rem;
    border-radius: 12px;
}

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

.hero-small {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    padding: 4rem 0 2rem;
}

.hero-small h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.last-updated {
    font-size: 0.9rem;
    opacity: 0.8;
    font-style: italic;
}

.content-section {
    padding: 4rem 0;
    background: white;
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.content-main {
    max-width: none;
}

.content-main-full {
    max-width: none;
}

.content-sidebar {
    position: sticky;
    top: 120px;
}

.sidebar-card {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    border: 1px solid #e2e8f0;
}

.sidebar-card h3 {
    color: #1f2937;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.fact-list {
    list-style: none;
}

.fact-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.fact-list li:last-child {
    border-bottom: none;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    color: #6b7280;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #4f46e5;
}

/* Content Sections */
.intro-section {
    margin-bottom: 3rem;
    text-align: center;
}

.intro-section h2 {
    font-size: 2.2rem;
    color: #1f2937;
    margin-bottom: 1rem;
}

.intro-section p {
    font-size: 1.1rem;
    color: #6b7280;
    max-width: 800px;
    margin: 0 auto;
}

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

.value-card {
    text-align: center;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.value-card i {
    font-size: 2.5rem;
    color: #4f46e5;
    margin-bottom: 1rem;
}

.value-card h3 {
    color: #1f2937;
    margin-bottom: 1rem;
}

/* Process Grid */
.process-grid {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.process-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    background: #4f46e5;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h3 {
    color: #1f2937;
    margin-bottom: 0.5rem;
}

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

.requirement-category {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.category-icon {
    background: #4f46e5;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.requirement-category h3 {
    color: #1f2937;
    margin-bottom: 1rem;
}

.requirement-category ul {
    list-style: none;
}

.requirement-category li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.requirement-category li::before {
    content: '•';
    color: #4f46e5;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Verification Badge */
.verification-badge {
    background: #f0f9ff;
    padding: 3rem;
    border-radius: 16px;
    margin: 3rem 0;
    border: 1px solid #bfdbfe;
}

.badge-info {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    align-items: center;
}

.verification-badge-display {
    background: #4f46e5;
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: bold;
    white-space: nowrap;
}

.verification-badge-display i {
    font-size: 1.5rem;
}

/* Contact Methods */
.contact-methods {
    margin: 2rem 0;
}

.contact-method {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.method-icon {
    background: #4f46e5;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.method-info h4 {
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.method-info p {
    color: #4f46e5;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.method-info small {
    color: #6b7280;
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.contact-main h2 {
    color: #1f2937;
    margin-bottom: 1rem;
}

.contact-sidebar {
    position: sticky;
    top: 120px;
}

/* Forms */
.contact-form {
    margin-top: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #374151;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4f46e5;
}

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

/* Office Info */
.office-info {
    margin-top: 2rem;
}

.office-details {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.office-details p {
    margin-bottom: 1rem;
}

.office-details p:last-child {
    margin-bottom: 0;
}

/* Social Section */
.social-section {
    margin-top: 2rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    color: #6b7280;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-bottom: 0.5rem;
}

.social-link:hover {
    background: #f3f4f6;
    color: #4f46e5;
}

/* FAQ Section */
.faq-section {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid #e5e7eb;
}

.faq-section h2 {
    text-align: center;
    color: #1f2937;
    margin-bottom: 2rem;
}

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

.faq-item {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.faq-item h4 {
    color: #1f2937;
    margin-bottom: 1rem;
}

.faq-item p {
    color: #6b7280;
}

.faq-item a {
    color: #4f46e5;
    text-decoration: none;
}

.faq-item a:hover {
    text-decoration: underline;
}

/* Privacy/Terms Specific */
.privacy-content,
.terms-content {
    max-width: 900px;
    margin: 0 auto;
}

.privacy-summary,
.terms-summary {
    background: #f0f9ff;
    padding: 3rem;
    border-radius: 16px;
    margin-bottom: 3rem;
    border: 1px solid #bfdbfe;
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.summary-item {
    text-align: center;
}

.summary-item i {
    font-size: 2rem;
    color: #4f46e5;
    margin-bottom: 1rem;
}

.summary-item h3 {
    color: #1f2937;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.summary-item p {
    color: #6b7280;
    font-size: 0.9rem;
}

.privacy-sections,
.terms-sections {
    space-y: 3rem;
}

.privacy-section,
.terms-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e5e7eb;
}

.privacy-section:last-child,
.terms-section:last-child {
    border-bottom: none;
}

.privacy-section h2,
.terms-section h2 {
    color: #1f2937;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.privacy-section h3,
.terms-section h3 {
    color: #374151;
    margin: 1.5rem 0 1rem 0;
    font-size: 1.3rem;
}

.privacy-section ul,
.terms-section ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.privacy-section li,
.terms-section li {
    margin-bottom: 0.5rem;
    color: #4b5563;
}

.privacy-section ol,
.terms-section ol {
    margin: 1rem 0;
    padding-left: 2rem;
}

.privacy-section ol li,
.terms-section ol li {
    margin-bottom: 0.5rem;
    color: #4b5563;
}

.contact-info {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    margin-top: 2rem;
}

.contact-info .contact-method {
    background: white;
    margin-bottom: 1rem;
}

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

/* CTA Section */
.cta-section {
    background: #f0f9ff;
    padding: 3rem;
    border-radius: 16px;
    text-align: center;
    margin: 3rem 0;
    border: 1px solid #bfdbfe;
}

.cta-section h3 {
    color: #1f2937;
    margin-bottom: 1rem;
}

.cta-section p {
    color: #6b7280;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
footer {
    background: #111827;
    color: white;
    padding: 3rem 0 1rem;
    text-align: center;
}

.footer-content {
    margin-bottom: 2rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .content-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .content-sidebar {
        position: static;
    }
    
    .hero-small h1 {
        font-size: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .nav-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .summary-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid,
    .requirements-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .badge-info {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .verification-badge-display {
        justify-content: center;
    }
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Form Messages */
.form-message {
    margin-top: 1rem;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    text-align: center;
    animation: fadeInUp 0.3s ease;
}

.form-help {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: #6b7280;
    font-style: italic;
}

.form-message-success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #10b981;
}

.form-message-error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #ef4444;
}

.form-message-warning {
    background: #fef3c7;
    color: #92400e;
    border: 1px solid #f59e0b;
}

.form-message-info {
    background: #dbeafe;
    color: #1e40af;
    border: 1px solid #3b82f6;
}