/* Main body styling */

body {
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #1c1f4c;
  background-color: #fff; /* subtle ivory for warm feel */
  letter-spacing: 0.02em; /* slight spacing for legibility */
  -webkit-font-smoothing: antialiased; /* better rendering on macOS */
  -moz-osx-font-smoothing: grayscale; /* smoother fonts on Firefox/Mac */
}

h1, h2, h3, .hero-title, .section-title {
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  color: #1c1f4c;
}

/* Paragraph specifics */
p {
  margin-bottom: 1.2rem;
}


.text-primary{
  color: #006D77 !important; /* Teal for a fresh, modern look */
}
/* Link styles for readability and elegance */
a {
  color: #7ca292; /* River Green, harmonious accent */
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}

a:hover {
  color: #c5a253; /* Brâncuși Gold on hover for elegance */
  
}


/* Headings with Playfair Display for contrast */
/* Headings */
h1, h2, h3, h4 {
  
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #1a1a1a;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  body {
      font-size: 1rem; /* 16px on smaller screens for optimal readability */
  }
}
.btn-primary {
  background-color: #fccf17;;        /* Custom accent color */
  color: #000000;
  border: none;

}

.btn-primary:hover,
.btn-primary:focus {
  background-color: #fec20f;
  color: #fff;
}

.btn-primary:active {
  transform: scale(0.98);
  box-shadow: 0 3px 10px rgba(0, 127, 127, 0.25) inset;
}

.btn-outline-primary {
  color: #1c1f4c;
  border: 2px solid #1c1f4c;
  background-color: transparent;

  text-decoration: none;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
  background-color: #1c1f4c;
  color: #fff;
  box-shadow: 0 6px 16px rgba(28, 31, 76, 0.25);
  text-decoration: none;
  border-color: #1c1f4c;
}

.btn-outline-primary:active {
  transform: scale(0.97);
  box-shadow: 0 2px 6px rgba(28, 31, 76, 0.4) inset;
}


/* Accent Button - Primary Color (Teal) */
.btn-accent {
  background-color: #006D77;
  background: linear-gradient(135deg, #00796b, #009688);
  color: #ffffff;
  border: none;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  border-radius: 50px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 6px 12px rgba(0, 109, 119, 0.2);
}

.btn-accent:hover,
.btn-accent:focus {
  background-color: #00525f;
  transform: translateY(-2px);
  color: #ffffff;
  text-decoration: none;
}

/* Optional: Secondary variation with outline */
.btn-accent-outline {
  background: transparent;
  border: 2px solid #006D77;
  color: #006D77;
  font-weight: 600;
  transition: all 0.3s ease;
  border-radius: 50px;
}

.btn-accent-outline:hover {
  background-color: #006D77;
  color: #ffffff;
}


.main-header .navbar {
  font-family: 'Montserrat', sans-serif;
}

.main-header .navbar .navbar-brand {
  font-size: 1.5rem;
  color: #2e2e2e;
  display:block;
}
.main-header .navbar .navbar-brand .logo {
  width:170px;
  height:auto;
  margin-right: 10px;
}


.main-header .navbar .navbar-nav .nav-item{

}
.main-header .navbar .navbar-nav .nav-link {
  font-weight: 600;
  color: #2e2e2e;
  transition: color 0.3s ease;
  font-size:0.90rem;
  padding: 0.5rem 1rem; /* Add padding for better touch targets */
}

.main-header .navbar .navbar-nav .nav-link:hover {
  color: #006D77;
}

.main-header .navbar .navbar-nav .dropdown-menu {
  border-radius: 0.5rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  border: none;
}

.main-header .navbar .navbar-nav .dropdown-menu .dropdown-item {
  font-weight: 500;
  transition: background-color 0.2s ease;
}

.main-header .navbar .navbar-nav .dropdown-menu .dropdown-item:hover {
  background-color: #006D77;
  color: #ffffff;
}

.header-search-bar {
  background: #f5f7f9;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  padding: 1rem 0;
  border-top: 1px solid #ddd;
}

/* Wrapper looks like the input */
.search-wrapper {
  background: #fff;
  border-radius: 50px;
  padding: 0.5rem 1rem;
  max-width: 900px;
  margin: 0 auto;
}

/* Field with no border */
.search-field {
  border: none;
  box-shadow: none;
  font-size: 1.1rem;
  padding-left: 0;
  background: transparent;
}

/* Focus style (optional) */
.search-field:focus {
  outline: none;
  box-shadow: none;
}

/* Button style */
.search-wrapper .btn {
  border-radius: 50px;
  padding: 0.6rem 1.2rem;
}




.bg-light-alt {
  background-color: #f8f9fa;
}

.bg-soft-teal {
  background-color: #e6f1f0;
}

.bg-ivory {
  background-color: #fffef8;
}

.bg-gold-tint {
  background-color: #fcf9f3;
}

.bg-accent {
  background-color: #007f8e;
  color: #fff;
}
.bg-gradient-mags{
  background: linear-gradient(135deg, #007f8e, #009688);
}



.home-section {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.home-section h2,
.home-section .section-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: #1a1a1a;
}

.home-section .section-subtitle {
  font-size: 1.125rem;
  font-weight: 400;
  color: #666;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}


.explore-section .section-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: #1a1a1a;
}

.explore-section .section-subtitle {
  font-size: 1.125rem;
  color: #666;
}

.explore-card {
  border: none;
  border-radius: 1rem;
  padding: 1.5rem 1.25rem;
  background-color: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.explore-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
}

.text-accent {
  color: #006D77;
}


/* Footer Base */.footer {
  background-color: #1c1f4c;
  font-family: 'Nunito', sans-serif;
}

.footer .footer-heading {
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: #fccf17;
  margin-bottom: 1rem;
}

.footer .footer-links li {
  margin-bottom: 0.5rem;
}

.footer .footer-links a {
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer .footer-links a:hover {
  color: #ffffff;
}

.footer .btn-light {
  background-color: #fccf17;
  color: #1c1f4c;
  border: none;
}

.footer .btn-light:hover {
  background-color: #fec20f;
  color: #1c1f4c;
}

.footer .social-icons a {
  font-size: 1.2rem;
  transition: color 0.2s ease;
}

.footer .social-icons a:hover {
  color: #ffffff;
}


.post-card {
  background-color: #ffffff;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
}

.post-card-img {
  height: 250px;
  width: 100%;
  border-radius: 0.5rem 0.5rem 0 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.post-card-body {
  padding: 1.25rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.post-card-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0.75rem;
  font-family: 'Montserrat', sans-serif;
}

.post-card-text {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 1rem;
}


.register-page,.login-page{
  padding-top:40px;
  padding-bottom:40px;
}
.register-page h1, .login-page h1{
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.register-container{
 
  max-width: 500px; /* Limit the width for larger screens */
  background-color: #fff; /* White background for the form */
  border-radius: 8px; /* Rounded corners */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
  padding: 20px; /* Padding inside the form */
  
  margin: 0 auto; /* Center horizontally */
  display: block; /* Ensure block-level element */
}
.login-container{

  max-width: 500px; /* Limit the width for larger screens */
  background-color: #fff; /* White background for the form */
  border-radius: 8px; /* Rounded corners */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
  padding: 20px; /* Padding inside the form */
  
  margin: 0 auto; /* Center horizontally */
  display: block; /* Ensure block-level element */
 
}

.body-account {
  background-color: #f9f9f9;
  font-family: 'Inter', sans-serif;
}

/* Sidebar */
.body-account .sidebar {
  background-color: #ffffff;
  width: 260px;
  min-height: 100vh;
  padding: 1.5rem 1rem;
  border-right: 1px solid #e4e4e4;
  transition: all 0.3s ease;
  position: fixed;
}

.body-account .sidebar .logo img {
  max-width: 140px;
  margin-bottom: 1.5rem;
}

.body-account .sidebar .menu ul {
  list-style: none;
  padding-left: 0;
}

.body-account .sidebar .menu li {
  margin-bottom: 0.75rem;
}

.body-account .sidebar .menu a {
  color: #333;
  display: flex;
  align-items: center;
  font-weight: 500;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.body-account .sidebar .menu a:hover,
.body-account .sidebar .menu a.active {
  background-color: #eaf6f6;
  color: #006d77;
}

.body-account .sidebar .menu i {
  margin-right: 0.5rem;
}
.body-account .sidebar .sidebar-toggle {
  display: none; /* Hide the toggle button on larger screens */
}

/* Sidebar divider */
.body-account .sidebar .divider {
  margin: 1rem 0;
  border-top: 1px solid #ddd;
}

/* Main page wrapper */
.body-account .page-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin-left: 260px; /* Sidebar width */
}

/* Page content area */
.body-account .page-content {
  padding: 2rem;
}

/* Mobile header */
.body-account .header-mobile {
  background-color: #ffffff;
  padding: 1rem;
  border-bottom: 1px solid #eaeaea;
}

.body-account .header-mobile .logo img {
  max-width: 120px;
}

.body-account .header-mobile .buttons i {
  font-size: 1.4rem;
  color: #444;
}

/* Form titles and sections */
.body-account h1.title-main {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.body-account .subtitle-main {
  font-size: 1rem;
  color: #777;
}

/* Profile form */
.body-account .profile-picture {
  border-radius: 50%;
  border: 2px solid #ddd;
  object-fit: cover;
}

.body-account .form-label {
  font-weight: 500;
}

.body-account .form-text.text-muted {
  font-size: 0.85rem;
}

/* Button style overrides */
.body-account .btn.btn-warning {
  background-color: #ffcc00;
  color: #000;
  border: none;
}

.body-account .btn.btn-success {
  background-color: #006d77;
  border: none;
}

.body-account .btn.btn-success:hover {
  background-color: #005c66;
}

/* Footer */
.body-account .footer {
  text-align: center;
  font-size: 0.9rem;
  color: #888;
  padding: 2rem 1rem 1rem;
  border-top: 1px solid #ddd;
  background-color: #f1f1f1;
}

.body-account .footer-links a {
  color: #006d77;
  margin: 0 0.5rem;
  text-decoration: none;
}

.body-account .footer-links a:hover {
  text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .body-account .sidebar {
    position: absolute;
    left: -260px;
    top: 0;
    z-index: 999;
    height: 100%;
    background: #fff;
  }

  .body-account .sidebar.open {
    left: 0;
    transition: left 0.3s ease;
  }

  .body-account .page-content {
    padding: 1.5rem;
  }
}


.posts-page{
  padding-top: 60px;
  padding-bottom: 60px;
}


.posts-page-detail {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.posts-page-detail .card {
  border: none;
  border-radius: 1rem;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  background-color: #ffffff;
}

.posts-page-detail .post-banner {
  width: 100%;
  height: 300px;
  background-size: cover;
  background-position: center;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
}

.posts-page-detail .card-body {
  padding: 2.5rem 2rem;
}

.posts-page-detail .card-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 0.75rem;
}

.posts-page-detail .text-muted {
  font-size: 0.95rem;
  color: #888;
  margin-bottom: 1.5rem;
}

.posts-page-detail .card-text {
  font-size: 1.1rem;
  line-height: 1.75;
  color: #444;
}

.posts-page-detail .card-text h2,
.posts-page-detail .card-text h3 {
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #222;
}

.posts-page-detail .card-text p {
  margin-bottom: 1.25rem;
}

.posts-page-detail .post-date{
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1rem;
  display:inline-block;
  margin-left:10px;
}

/* Optional: Images inside content */
.posts-page-detail .card-text img {
  max-width: 100%;
  height: auto;
  margin: 1rem 0;
  border-radius: 0.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* Wrapper List */
.custom-category-list {
  padding-left: 0;
  list-style: none;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

/* Individual Badge Style */
.custom-category-badge {
  display: inline-block;
  padding: 0.5em 0.9em;
  font-size: 0.875rem;
  background-color: #e0f3f3;
  color: #fccf17;;
  border-radius: 50rem;
  font-weight: 500;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.custom-category-badge:hover,
.custom-category-badge:focus {
  background-color: #fccf17;;
  color: #fff;
  text-decoration: none;
}



.default-page-wrapper {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}

.default-page-wrapper .page-heading {
  margin-bottom: 2.5rem;
  text-align: center;
}

.default-page-wrapper .page-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 0.5rem;
}

.default-page-wrapper .breadcrumb {
  background-color: transparent;
  padding: 0;
  margin: 0;
  font-size: 0.95rem;
  justify-content: center;
}

.default-page-wrapper .breadcrumb-item + .breadcrumb-item::before {
  content: "›";
  color: #999;
  padding: 0 0.5rem;
}

.default-page-wrapper .breadcrumb a {
  color: #006d77;
  text-decoration: none;
}

.default-page-wrapper .breadcrumb a:hover {
  text-decoration: underline;
}

.default-page-wrapper .page-banner img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
  margin-bottom: 2rem;
}

.default-page-wrapper .page-content {
  max-width: 850px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.75;
  color: #444;
}

.default-page-wrapper .page-content h2,
.default-page-wrapper .page-content h3 {
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #222;
}

.default-page-wrapper .page-content p {
  margin-bottom: 1.25rem;
}

.blog-categories-page {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.blog-categories-page .page-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 0.5rem;
}

.blog-categories-page .lead {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2rem;
}

.blog-categories-page .category-title {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  margin-top: 2rem;
  color: #004b50;
}

.blog-categories-page .text-muted {
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  color: #666;
}

.blog-categories-page .row.g-3 > .col-lg-4 {
  margin-bottom: 1rem;
}

.blog-categories-page .btn.btn-primary {
  margin-top: 1rem;
  padding: 0.5rem 1.25rem;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 0.4rem;
}

.highlight-box {
  background: #fdf5e6;
  color: #333;
  border-left: 4px solid #fccf17;;
  padding: 1rem 1.5rem;

  font-size: 1rem;
  font-weight: 500;
 
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}





/* Sadie's Stories Update */

.homepage-wrapper .hero-section {
  background-color: #fff1d1; /* Light background */
}

.homepage-wrapper .hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1c1f4c; /* Deep navy */
}

.homepage-wrapper .hero-subtitle {
  font-size: 1.125rem;
  color: #037272; /* Teal */
}

.homepage-wrapper .btn-primary {
  background-color: #fccf17;
  border-color: #fccf17;
  color: #1c1f4c;
}

.homepage-wrapper .btn-primary:hover {
  background-color: #fec20f;
  border-color: #fec20f;
}

.homepage-wrapper .btn-outline-secondary {
  border-color: #037272;
  color: #037272;
}

.homepage-wrapper .btn-outline-secondary:hover {
  background-color: #037272;
  color: #fff;
}

.homepage-wrapper .hero-image {
  max-height: 400px;
}


.homepage-wrapper .weekly-prompt-section {
  background-color: #fdfdf8;
}

.homepage-wrapper .section-title {
  font-size: 2rem;
  color: #1c1f4c;
  font-weight: 700;
}

.homepage-wrapper .section-subtitle {
  font-size: 1.125rem;
  color: #037272;
}

.homepage-wrapper .challenge-container{
  background-color: #ffffff;
  border: 2px solid #fccf17;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 30px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.homepage-wrapper .prompt-image {
  max-height: 300px;
  object-fit: cover;
  border: 4px solid #fccf17;
}

.homepage-wrapper .prompt-title{
  font-size: 1.75rem;
  font-weight: 700;
  color: #1c1f4c;
}
.homepage-wrapper .prompt-instructions ul {
  font-size: 1rem;
  color: #1c1f4c;
  line-height: 1.8;
}

.homepage-wrapper .prompt-instructions li::before {
  content: "✏️ ";
  margin-right: 8px;
}

.homepage-wrapper .featured-stories-section {
  background-color: #fffbe6;
}

.homepage-wrapper .section-title {
  font-size: 2rem;
  font-family: 'Fredoka', sans-serif;
  color: #1c1f4c;
}

.homepage-wrapper .section-subtitle {
  font-size: 1.125rem;
  color: #037272;
}

.homepage-wrapper .story-card {
  background-color: #ffffff;
  border-left: 6px solid #fccf17;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease;
}

.homepage-wrapper .story-card:hover {
  transform: translateY(-4px);
}

.homepage-wrapper .story-title {
  font-size: 1.25rem;
  color: #1c1f4c;
  font-weight: 700;
}

.homepage-wrapper .story-snippet {
  font-size: 0.95rem;
  color: #333;
}

.error-404 {
  background-color: #fff3d1;
  min-height: 100vh;
  color: #1c1f4c;
  font-family: 'Nunito', sans-serif;
}

.error-404-code {
  font-size: 6rem;
  font-weight: 800;
  font-family: 'Fredoka', sans-serif;
  color: #fccf17;
}

.error-404-text {
  font-size: 1.25rem;
  color: #037272;
}

.error-404-image {
  max-height: 280px;
  margin-top: 1rem;
}

.error-404-btn {
  background-color: #fccf17;
  border-color: #fccf17;
  color: #1c1f4c;
  font-weight: 600;
  font-family: 'Nunito', sans-serif;
}

.error-404-btn:hover {
  background-color: #fec20f;
  border-color: #fec20f;
  color: #1c1f4c;
}


.newsletter-section {
  background-color: #fccf17;
  color: #1c1f4c;
}

.newsletter-section .newsletter-title {
  font-family: 'Fredoka', sans-serif;
  font-size: 2rem;
  font-weight: 700;
}

.newsletter-section .newsletter-subtitle {
  font-size: 1.125rem;
  color: #1c1f4c;
}

.newsletter-section .newsletter-input {
  font-size: 1rem;
  border-radius: 12px;
  padding: 0.75rem 1rem;
  border: none;
  outline: none;
}

.newsletter-section .newsletter-input:focus {
  box-shadow: 0 0 0 3px rgba(3, 114, 114, 0.2);
  border: none;
}

.newsletter-section .newsletter-button {
  background-color: #1c1f4c;
  color: #ffffff;
  border-radius: 12px;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  transition: background-color 0.2s ease;
}

.newsletter-section .newsletter-button:hover {
  background-color: #037272;
  color: #fff;
}

.newsletter-section .newsletter-response {
  font-size: 0.95rem;
  color: #037272;
}


.how-it-works-section {
  background-color: #fffbe6;
  font-family: 'Nunito', sans-serif;
  color: #1c1f4c;
}

.how-it-works-section .how-title {
  font-family: 'Fredoka', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #1c1f4c;
}

.how-it-works-section .how-subtitle {
  font-size: 1.125rem;
  color: #037272;
}

.how-it-works-section .how-step {
  background-color: #ffffff;
  border-left: 6px solid #fccf17;
  transition: transform 0.2s ease;
}

.how-it-works-section .how-step:hover {
  transform: translateY(-5px);
}

.how-it-works-section .how-icon {
  font-size: 2.5rem;
  color: #037272;
}

.how-it-works-section .step-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.how-it-works-section .step-desc {
  font-size: 1rem;
  color: #333;
}

.submit-story-page {
  background-color: #edebd9;
  color: #1c1f4c;
  font-family: 'Nunito', sans-serif;
}

.submit-story-page .prompt-title {
  font-family: 'Fredoka', sans-serif;
  font-size: 2rem;
  color: #1c1f4c;
}

.submit-story-page .prompt-instructions {
  font-size: 1.1rem;
  color: #037272;
}

.submit-story-page .form-label {
  font-weight: 600;
}

.submit-story-page .btn-primary {
  background-color: #fccf17;
  border-color: #fccf17;
  color: #1c1f4c;
}

.submit-story-page .btn-primary:hover {
  background-color: #fec20f;
  border-color: #fec20f;
}

.prompt-preview {
  background: #fdfcf9;
  border: 1px solid #eaeaea;
  transition: box-shadow 0.3s ease;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 30px;
}

.prompt-preview:hover {
  box-shadow: 0 0 0.75rem rgba(0, 0, 0, 0.05);
}

.prompt-title {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  color: #1c1f4c;
}

.prompt-instructions {
  line-height: 1.7;
  font-size: 1.125rem;
  color: #333;
}


.story-page {
  background-color: #fffefc;
}

.story-page .container{
  max-width: 800px;
}

.challenge-box {
  background: #fdfaf4;
  border-left: 6px solid #fccf17;
}

.challenge-box h4 {
  font-size: 1.5rem;
  margin-top: 0.5rem;
}

.story-content p {
  margin-bottom: 1.5rem;
}

.story-content blockquote {
  border-left: 4px solid #ffc107;
  padding-left: 1rem;
  font-style: italic;
  color: #555;
  margin: 2rem 0;
}

.story-card {
  transition: transform 0.2s ease;
}

.story-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.05);
}

.stories-page {
  background-color: #fdfbf7;
}

.challenge-box {
  background-color: #fffefc;
  border-left: 6px solid #fccf17;
  transition: box-shadow 0.2s ease;
}

.challenge-box:hover {
  box-shadow: 0 0 1rem rgba(0,0,0,0.05);
}

.challenge-box h3 {
  font-family: 'Nunito', sans-serif;
  margin-bottom: 1rem;
}

.weekly-prompt-section {
  background-color: #fdfbf7;
}

.challenge-box {
  border-left: 6px solid #fccf17;
  transition: box-shadow 0.3s ease;
}

.challenge-box:hover {
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.05);
}

.challenge-box h3 {
  font-family: 'Nunito', sans-serif;
  font-size: 1.5rem;
}

.past-prompts-page {
  background-color: #fdfbf7;
}

.prompt-card h5 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.prompt-card h6 {
  font-size: 1.1rem;
  font-weight: 600;
}

.prompt-card p {
  font-size: 0.9rem;
}

.prompt-image-wrap img {
  border-bottom: 1px solid #eee;
}

/* Custom account content area */
.content-custom-account {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(28, 31, 76, 0.06);
  padding: 2.5rem 2rem;
  margin: 0 auto;
  max-width: 900px;
  color: #1c1f4c;
}

  .content-custom-account.medium {
    max-width:750px;
  }


  .content-custom-account.small {
   max-width:600px;
  }
