/* Parent Spot Specific Styles */

/* Info Cards Layout */
.info-section {
    padding: 60px 0;
    background: #f8fafc;
}

.info-section:nth-child(even) {
    background: #ffffff;
}

.info-header {
    text-align: center;
    margin-bottom: 50px;
}

.info-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
}

.info-header p {
    font-size: 18px;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

/* Document-style Cards */
.document-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.document-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.document-card:hover {
    border-color: #059669;
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.15);
}

.document-icon {
    width: 48px;
    height: 48px;
    background: #f0fdf4;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 16px;
}

.document-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 8px;
}

.document-card p {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 16px;
}

.download-btn {
    background: #059669;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s ease;
}

.download-btn:hover {
    background: #047857;
}

/* List-style Content */
.info-content {
    max-width: 800px;
    margin: 0 auto;
}

.policy-list {
    list-style: none;
    padding: 0;
}

.policy-item {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.policy-item:hover {
    border-color: #059669;
    transform: translateY(-2px);
}

.policy-item h4 {
    font-size: 16px;
    font-weight: 600;
    color: #059669;
    margin-bottom: 8px;
}

.policy-item p {
    color: #4b5563;
    margin: 0;
    line-height: 1.6;
}

/* Table Styles */
.info-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    margin-bottom: 24px;
}

.info-table th {
    background: #059669;
    color: white;
    padding: 16px;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
}

.info-table td {
    padding: 16px;
    border-bottom: 1px solid #e5e7eb;
    font-size: 14px;
    color: #4b5563;
}

.info-table tr:last-child td {
    border-bottom: none;
}

.info-table tr:nth-child(even) {
    background: #f9fafb;
}

/* Notice Boxes */
.notice-box {
    background: #fef3c7;
    border: 1px solid #f59e0b;
    border-radius: 8px;
    padding: 20px;
    margin: 24px 0;
}

.notice-box.important {
    background: #fee2e2;
    border-color: #dc2626;
}

.notice-box.success {
    background: #d1fae5;
    border-color: #059669;
}

.notice-box h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1f2937;
}

.notice-box p {
    margin: 0;
    color: #4b5563;
    line-height: 1.5;
}

/* Cost Tables */
.cost-table {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 24px;
}

.cost-table-header {
    background: linear-gradient(135deg, #059669, #047857);
    color: white;
    padding: 20px;
    text-align: center;
}

.cost-table-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
}

.cost-table-body {
    padding: 0;
}

.cost-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    border-bottom: 1px solid #e5e7eb;
}

.cost-row:last-child {
    border-bottom: none;
}

.cost-row:nth-child(even) {
    background: #f9fafb;
}

.cost-item {
    font-weight: 500;
    color: #1f2937;
}

.cost-price {
    font-weight: 600;
    color: #059669;
    font-size: 16px;
}

/* Sport Houses Grid */
.houses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.house-card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.house-card:hover {
    transform: translateY(-4px);
}

.house-card.ruby {
    border-top: 4px solid #dc2626;
}

.house-card.emerald {
    border-top: 4px solid #059669;
}

.house-card.sapphire {
    border-top: 4px solid #2563eb;
}

.house-card.topaz {
    border-top: 4px solid #f59e0b;
}

.house-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 16px;
}

.house-card.ruby .house-icon {
    background: #fee2e2;
    color: #dc2626;
}

.house-card.emerald .house-icon {
    background: #d1fae5;
    color: #059669;
}

.house-card.sapphire .house-icon {
    background: #dbeafe;
    color: #2563eb;
}

.house-card.topaz .house-icon {
    background: #fef3c7;
    color: #f59e0b;
}

.house-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1f2937;
}

.house-card p {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.5;
}

/* Quick Navigation */
.quick-nav {
    background: #1f2937;
    padding: 20px 0;
    position: sticky;
    top: 80px;
    z-index: 50;
}

.quick-nav-content {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.quick-nav-link {
    color: #d1d5db;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.quick-nav-link:hover {
    background: #374151;
    color: white;
}

.quick-nav-link.active {
    background: #059669;
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .document-grid {
        grid-template-columns: 1fr;
    }
    
    .houses-grid {
        grid-template-columns: 1fr;
    }
    
    .cost-row {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .quick-nav-content {
        gap: 12px;
    }
    
    .quick-nav-link {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .info-table {
        font-size: 12px;
    }
    
    .info-table th,
    .info-table td {
        padding: 12px 8px;
    }
}