/* Base Styles */
body {
    font-family: 'Segoe UI', Roboto, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fafafa;
    color: #262626;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styles */
.site-header {
    background-color: #fff;
    border-bottom: 1px solid #dbdbdb;
    padding: 15px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 25px;
    align-items: center;
}

.main-nav a {
    text-decoration: none;
    color: #262626;
    font-weight: 500;
    font-size: 16px;
}

.btn-register {
    background-color: #0095f6;
    color: white !important;
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 600;
}

/* Login Form Styles */
.login-container {
    max-width: 400px;
    margin: 50px auto;
    padding: 40px;
    background: #fff;
    border: 1px solid #dbdbdb;
    text-align: center;
}

.login-title {
    font-size: 24px;
    margin-bottom: 30px;
}

.form-control {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #dbdbdb;
    border-radius: 4px;
    background: #fafafa;
}

.btn-login {
    width: 100%;
    background-color: #0095f6;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    margin-top: 10px;
}

.divider {
    display: flex;
    align-items: center;
    margin: 20px 0;
    color: #8e8e8e;
    font-weight: 600;
}

.divider::before,
.divider::after {
    content: "";
    flex: 1;
    border-bottom: 1px solid #dbdbdb;
}

.divider::before {
    margin-right: 10px;
}

.divider::after {
    margin-left: 10px;
}

.facebook-login {
    color: #385185;
    font-weight: 600;
    text-decoration: none;
    display: block;
    margin: 15px 0;
}

.login-links {
    margin-top: 20px;
    font-size: 14px;
}

.login-links a {
    text-decoration: none;
    color: #00376b;
}

.separator {
    margin: 0 5px;
}

/* Footer Styles */
.site-footer {
    padding: 30px 0;
    text-align: center;
    font-size: 14px;
}

.footer-links {
    margin-bottom: 15px;
}

.footer-links a {
    text-decoration: none;
    color: #8e8e8e;
    margin: 0 10px;
}

.copyright {
    color: #8e8e8e;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
    }
    
    .main-nav ul {
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 15px;
    }
    
    .login-container {
        padding: 20px;
    }
}
/* ======================== */
/* PROFILE LAYOUT STYLES */
/* ======================== */

/* Main Container */
.profile-layout {
  display: flex;
  max-width: 1200px;
  margin: 2rem auto;
  gap: 2rem;
  padding: 0 1rem;
}

/* Left Side - Profile Section */
.profile-section {
  flex: 1;
  background: #ffffff;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  height: fit-content;
}

/* Right Side - Stories Section */
.stories-section {
  flex: 2;
  background: #ffffff;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Profile Header */
.profile-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 2rem;
}

.profile-avatar {
  width: 100px;
  height: 100px;
  background: #f0f0f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.profile-avatar i {
  font-size: 3rem;
  color: #666666;
}

.profile-title {
  color: #333333;
  margin-bottom: 0.5rem;
}

.profile-details h2 {
  margin: 0.5rem 0;
  color: #333333;
}

.profile-details p {
  margin: 0.5rem 0;
  color: #666666;
}

/* Profile Actions */
.profile-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  justify-content: center;
}

/* Stories Section */
.stories-title {
  color: #333333;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #eeeeee;
}

/* Story Cards */
.story-card {
  background: #f9f9f9;
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  border-left: 4px solid #3498db;
}

.story-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.story-header h3 {
  margin: 0;
  color: #333333;
}

.story-date {
  color: #666666;
  font-size: 0.9rem;
}

.story-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.9rem;
  color: #666666;
  margin-bottom: 1rem;
}

.story-status {
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.8rem;
}

.story-status.approved {
  background-color: #d4edda;
  color: #155724;
}

.story-status.pending {
  background-color: #fff3cd;
  color: #856404;
}

.story-content {
  line-height: 1.6;
  color: #444444;
}

.story-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

/* Buttons */
.btn {
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: #3498db;
  color: white;
}

.btn-primary:hover {
  background: #2980b9;
}

.btn-danger {
  background: #e74c3c;
  color: white;
}

.btn-danger:hover {
  background: #c0392b;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

/* Edit Form */
.edit-form {
  background: #f0f8ff;
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  border-left: 4px solid #2ecc71;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: bold;
  color: #333333;
}

.form-control {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #dddddd;
  border-radius: 4px;
  font-size: 1rem;
}

textarea.form-control {
  min-height: 150px;
}

.form-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.btn-success {
  background: #2ecc71;
  color: white;
}

.btn-success:hover {
  background: #27ae60;
}

.btn-secondary {
  background: #95a5a6;
  color: white;
}

.btn-secondary:hover {
  background: #7f8c8d;
}

/* Responsive Design */
@media (max-width: 768px) {
  .profile-layout {
    flex-direction: column;
  }
  
  .profile-header {
    flex-direction: column;
    text-align: center;
  }
  
  .profile-avatar {
    margin: 0 auto 1.5rem;
  }
  
  .profile-actions {
    justify-content: center;
  }
}

/* Error Message */
.error-message {
  color: #e74c3c;
  background-color: #fdecea;
  padding: 1rem;
  border-radius: 4px;
  margin-bottom: 1.5rem;
  border-left: 4px solid #e74c3c;
}

/* ===== Help Us Section Styling ===== */
#help {
    text-align: center;
    padding: 2rem 0;
}

#help h1 {
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

#help > p {
    color: #7f8c8d;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

/* Article Cards Styling */
#help article {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    padding: 2rem;
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

#help article:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

#help article h2 {
    color: #3498db;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

#help article p {
    color: #555;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Button Styling */
#help button {
    background-color: #3498db;
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 0.5rem;
}

#help button:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

/* Social Links Styling */
.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.social-links a {
    color: #3498db;
    background-color: rgba(52, 152, 219, 0.1);
    padding: 0.8rem 1.2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.social-links a:hover {
    background-color: #3498db;
    color: white;
    transform: translateY(-2px);
}

.social-links a i {
    font-size: 1.2rem;
}

/* Responsive Grid Layout */
@media (min-width: 768px) {
    #help {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        text-align: left;
    }
    
    #help > h1,
    #help > p {
        grid-column: 1 / -1;
        text-align: center;
    }
    
    #help article {
        margin-bottom: 0;
        text-align: left;
    }
    
    .social-links {
        justify-content: flex-start;
    }
}
#about {
    background-color: #fff;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    margin-top: 2rem;
}

#about h1 {
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    border-bottom: 2px solid #e1e5ee;
    padding-bottom: 1rem;
}

#about h2 {
    color: #2980b9;
    font-size: 2rem;
    margin: 2rem 0 1rem;
    border-left: 4px solid #3498db;
    padding-left: 1rem;
}

#about h3 {
    color: #34495e;
    font-size: 1.5rem;
    margin: 1.5rem 0 1rem;
}

#about p {
    margin: 1rem 0;
    color: #4a5568;
    font-size: 1.1rem;
}

/* List item styling */
#about p:has(✔), 
#about p:has(🔹) {
    position: relative;
    padding-left: 2rem;
    margin-left: 1rem;
}

#about p:has(✔)::before,
#about p:has(🔹)::before {
    content: "✓";
    color: #27ae60;
    position: absolute;
    left: 0;
    font-weight: bold;
}

#about p:has(🔹)::before {
    content: "◈";
    color: #3498db;
}

/* Timeline-like story section */
#about article {
    background: #f8fafc;
    border-radius: 8px;
    padding: 2rem;
    margin: 2rem 0;
    border-left: 3px solid #3498db;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }
    
    #about {
        padding: 1.5rem;
    }
    
    #about h1 {
        font-size: 2rem;
    }
    
    #about h2 {
        font-size: 1.7rem;
    }
}

