/* Community Guidelines Page - Specific Styles */

/* Page Body */
body {
    background-color: #f5f5f5 !important;
    color: var(--text-light);
}

/* Main Content */
.main-content {
    background-color: #f5f5f5;
    padding-top: 40px;
    padding-bottom: 0px;
    min-height: calc(100vh - 140px);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, rgba(15, 15, 35, 0.95), rgba(26, 26, 46, 0.95));
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    height: 400px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    display: block;
}

/* Guidelines Cards */
.guidelines-cards {
    padding: 80px 0;
}

.guidelines-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.guidelines-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.guidelines-card-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.guidelines-card-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    box-shadow: 0 4px 15px rgba(255, 153, 0, 0.3);
}

.guidelines-card-icon i {
    color: white;
    font-size: 24px;
}

.guidelines-card-title {
    font-size: 2rem;
    font-weight: 700;
    color: #212529;
    margin: 0;
}

.guidelines-list {
    list-style: none;
    padding: 0;
}

.guideline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.guideline-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.guideline-item-icon {
    width: 24px;
    height: 24px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.guideline-item-icon i {
    color: white;
    font-size: 12px;
}

.guideline-item-content h4 {
    color: #212529;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.guideline-item-content p {
    color: #6c757d;
    margin: 0;
    line-height: 1.5;
}

/* Core Values Section */
.core-values {
    background: white;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.value-item {
    text-align: center;
    padding: 30px 20px;
    border-radius: 15px;
    background: #f8f9fa;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.value-item:hover {
    background: #e9ecef;
    transform: translateY(-3px);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 4px 15px rgba(255, 153, 0, 0.3);
}

.value-icon i {
    color: white;
    font-size: 32px;
}

.value-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 10px;
}

.value-description {
    color: #6c757d;
    line-height: 1.5;
}

/* Info/Warning/Success Boxes (Page-specific variations) */
.info-box {
    background: linear-gradient(135deg, #d1ecf1 0%, #bee5eb 100%);
    border: 1px solid #17a2b8;
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
    display: flex;
    align-items: flex-start;
}

.info-box-icon {
    color: #0c5460;
    font-size: 24px;
    margin-right: 15px;
    flex-shrink: 0;
}

.info-box-content h5 {
    color: #0c5460;
    font-weight: 600;
    margin-bottom: 8px;
}

.info-box-content p {
    color: #0c5460;
    margin: 0;
}

/* Warning Boxes */
.warning-box {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border: 1px solid #ffc107;
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
    display: flex;
    align-items: flex-start;
}

.warning-box-icon {
    color: #856404;
    font-size: 24px;
    margin-right: 15px;
    flex-shrink: 0;
}

.warning-box-content h5 {
    color: #856404;
    font-weight: 600;
    margin-bottom: 8px;
}

.warning-box-content p {
    color: #856404;
    margin: 0;
}

/* Success Boxes */
.success-box {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border: 1px solid #28a745;
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
    display: flex;
    align-items: flex-start;
}

.success-box-icon {
    color: #155724;
    font-size: 24px;
    margin-right: 15px;
    flex-shrink: 0;
}

.success-box-content h5 {
    color: #155724;
    font-weight: 600;
    margin-bottom: 8px;
}

.success-box-content p {
    color: #155724;
    margin: 0;
}

/* Image Styling */
.guidelines-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    margin: 20px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .guidelines-card {
        padding: 30px 20px;
    }
    
    .guidelines-card-title {
        font-size: 1.5rem;
    }
    
    .header-content {
        padding: 0 15px;
    }

    .logo-text {
        display: none;
    }

    .signin-btn {
        padding: 8px 16px;
        font-size: 0.9rem;
        gap: 4px;
    }
}

