* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Baskervville SC", serif;
  background-color: #dedcff;
  line-height: 1.6;
  font-weight: 400;
  font-style: normal;
  text-transform: none;
}

.header {
  background-color: #000000;
  padding: 30px;
}

.navbar {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 20px;
  border-bottom: 1px solid #333;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: bold;
  color: #e820f1;
  text-decoration: none;
}

.navbar-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 20px;
}

.nav-item {
  position: relative;
}

.nav-link {
  font-size: 1rem;
  color: #ffffff;
  text-decoration: none;
  padding: 5px 10px;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #007bff;
}
.burger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}
.burger span {
  width: 25px;
  height: 3px;
  background-color: #ffffff;
  margin: 2px 0;
}

@media screen and (max-width: 768px) {
  .navbar-nav {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      background-color: #050315;
      padding: 10px 0;
  }
  .header {
    background-color: #000000;
    height: 30px;
  }
  .navbar-brand{
    margin-right: 6rem;
  }
  .navbar-nav.show {
      display: flex;

  }
  .burger {
      display: flex;
      margin-left: 330px;
      margin-top: -30px;
  }
 .hero {
    flex-direction: column;
    padding: 100px;
    margin-top: 20px;
  }
  .hero-image {
    flex: 1;
    padding-right: 20px;
  }
  .hero-image img {
    max-width: 90%;
    height: auto;
    object-fit: cover; 
    margin-top: 20px;
    margin-left: 50px;
  }
  .hero-content {
    text-align: start;
  }
  .hero-content h1 {
      font-size: 1rem;
      margin-top: 20px;
  }
  .hero-content p {
      font-size: 1rem;
      line-height: 1.3;
      margin-left: 0;
      margin-right: 0;
  }

}
@media (max-width: 480px) {


  .hero {
    padding: 15px;
  }

  .hero-image img {
    max-width: 70%;
  }

  .hero-content h1 {
    font-size: 1.2rem;
  }

  .hero-content p {
    font-size: 0.9rem;
  }

  .burger span {
    width: 20px;
    height: 2px;
  }
}

@media screen and (min-width: 1025px) {
  .hero {
      padding: 40px 50px;
  }
  .hero-image {
      flex: 1 1 40%;
  }
  .hero-content {
      flex: 1 1 60%;
  }
}
/* Dropdown Menu #e820f1(primary), #fdf0ff(bg), #f27350(accent), #fbf1fe #f18796(secon) */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #ffffff;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  padding: 10px 0;
  z-index: 1000;
  min-width: 150px;
}

.dropdown-item {
  padding: 10px 20px;
  color: #343a40;
  text-decoration: none;
  display: block;
  transition: background-color 0.3s ease;
}

.dropdown-item:hover {
  background-color: #f1f1f1;
}

.dropdown-toggle::after {
  content: " ▼";
  font-size: 0.8rem;
}

/* Show Dropdown on Hover */
.nav-item:hover .dropdown-menu {
  display: block;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }
  .navbar-nav {
    flex-direction: column;
    gap: 10px;
  }
  .dropdown-menu {
    position: static;
    box-shadow: none;
    border-radius: 0;
  }
}

.main-content {
  padding: 40px 20px;
  margin-top: -19px;
}

.post-content {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  padding: 20px;
  background-color: #dedcff;
  border-radius: 10px;
}

.post-title {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: #333;
}

.post-image img {
  width: 100%;
  max-height: 400px;
  border-radius: 10px;
  margin-bottom: 20px;
  transition: transform 0.3s ease-in-out;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.post-image img:hover {
  transform: scale(1.05);
}

.post-metadata {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 20px;
  border-top: 1px solid #eaeaea;
  padding-top: 10px;
}

.post-metadata .author a {
  color: #007bff;
  text-decoration: none;
}

.post-description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #444;
}

.post-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 20px;
}

.post-actions .btn {
  padding: 8px 12px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 0.9rem;
}

.btn-secondary {
  background-color: #6c757d;
  color: #fff;
}

.btn-danger {
  background-color: #dc3545;
  color: #fff;
}
.suggested-videos {
  margin-top: auto;
  margin-left: 300px;
}

.suggested-videos h2 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #343a40;
}

.suggested-video-grid {
  display: grid;
  grid-template-columns: repeat(
    auto-fill,
    minmax(250px, 1fr)
  ); /* Adjusted for a more rectangular format */
  gap: 20px;
  align-items: center;
}

.suggested-video-item {
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.suggested-video-item:hover {
  transform: translateY(-5px);
}

.suggested-video-thumbnail {
  position: relative;
  padding-top: 56.25%; 
}

.suggested-video-thumbnail img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; 
  border-bottom: 1px solid #ddd; 
  background-color: #f0f0f0; 
  padding: 6px; 
  border-radius: 4.8%; 
}

.suggested-video-info {
  padding: 15px; 
  text-decoration: none;
}

.suggested-post-title {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 5px;
  color: #343a40;
  text-decoration: none;
}

.suggested-video-author {
  font-size: 0.9rem;
  color: #3079ee;
  text-decoration: none;
}

.suggested-video-info small.text-muted {
  display: block; 
  margin-bottom: 10px; 
}

@media (max-width: 768px) {
  .suggested-video-thumbnail {
    padding-top: 75%; 
  }

  .suggested-videos h2 {
    font-size: 1.6rem;
  }

  .suggested-video-info {
    padding: 10px;
  }

  .suggested-post-title {
    font-size: 1rem;
  }
}


@media (max-width: 576px) {
  .suggested-videos{
    margin-left: 10px;

  }
  .suggested-video-thumbnail {
      height: 40%; 
      max-width: 95%; 
  }

  .suggested-videos h2 {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .suggested-post-title {
    font-size: 0.95rem;
  }

  .suggested-video-info small.text-muted {
    font-size: 0.85rem;
  }
}
.content-section {
  display: flex;
  flex-direction: column;
  align-items: center; 
  justify-content: center; 
  height: 100%; 
}
/* COLORS #e820f1(primary), #fdf0ff, #f27350, #fbf1fe #f18796
========================================== */


/* ANIMATION MIXINS
========================================== */
@-webkit-keyframes float {
  0% {
    -webkit-transform: translateY(0px) translateX(0px);
  }
  50% {
    -webkit-transform: translateY(-30px) translateX(20px);
  }
  100% {
    -webkit-transform: translateY(0px) translateX(0px);
  }
}

@keyframes float {
  0% {
    transform: translateY(0px) translateX(0px);
  }
  50% {
    transform: translateY(-30px) translateX(20px);
  }
  100% {
    transform: translateY(0px) translateX(0px);
  }
}

/* POP-UP
========================================== */
.subscribe-footer {
    display: block;             /* Normal block element */
    width: 100%;                /* Full width */
    background-color: #dedcff;  /* Your Lavender Background */
    border-radius: 50px 50px 0 0; /* Round top corners for style */
    padding: 60px 20px 80px;    /* Spacing inside */
    margin-top: 80px;           /* Push it down from the content above */
    text-align: center;
    position: relative;         /* Standard positioning */
    z-index: 1;
}

/* --- Content Wrapper --- */
.subscribe-footer .content {
    max-width: 650px;
    margin: 0 auto;
}

/* --- Image Styling --- */
.subscribe-footer .img-container img {
    width: 150px;
    height: auto;
    margin-bottom: 25px;
    display: inline-block;
}

/* --- Text Styling --- */
.subscribe-footer .text-container h2 {
    font-family: 'Baskervville SC', serif;
    color: #333;
    font-size: 1.8rem;
    margin-bottom: 40px;
    line-height: 1.4;
    text-transform: none;
}

.subscribe-footer .text-container span {
    color: #ff6b6b;
    font-weight: bold;
}

/* --- Seamless Form Bar Styling --- */
.subscribe-footer .form-container form {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 550px;
    margin: 0 auto;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05); /* Soft shadow */
}

/* Input Field */
.email-input {
    flex-grow: 1;
    padding: 18px 20px;
    border: none;
    outline: none;
    font-family: 'Baskervville SC', serif;
    font-size: 0.95rem;
    background-color: #ffffff;
    color: #555;
    text-align: center;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.email-input::placeholder {
    color: #999;
    letter-spacing: 1px;
    font-size: 0.85rem;
}

/* Subscribe Button */
.subscribe-btn {
    background-color: #e820f1;
    color: white;
    border: none;
    padding: 0 40px;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

.subscribe-btn:hover {
    background-color: #c918d1;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 576px) {
    .subscribe-footer {
        border-radius: 30px 30px 0 0;
        padding: 40px 20px 60px;
    }
    
    .subscribe-footer .form-container form {
        flex-direction: column; /* Stack on mobile */
        box-shadow: none;
    }
    
    .email-input {
        width: 100%;
        margin-bottom: 10px;
        border-radius: 5px;
    }
    
    .subscribe-btn {
        width: 100%;
        padding: 15px;
        border-radius: 5px;
    }
    
    .subscribe-footer .text-container h2 {
        font-size: 1.4rem;
    }
}

/* --- Footer Copyright & Links --- */
.footer-links {
    margin-top: 60px;          /* Space away from the form */
    padding-top: 20px;         /* Space inside the top */
    border-top: 1px solid rgba(0,0,0,0.1); /* Subtle divider line */
}

.footer-links p {
    font-size: 0.8rem;         /* Small, professional text size */
    color: #666;               /* Grey text */
    font-family: 'Baskervville SC', serif;
    letter-spacing: 0.5px;
}

.footer-links .separator {
    margin: 0 10px;            /* Space around the "|" symbol */
    color: #ccc;
}

.footer-links a {
    color: #444;               /* Slightly darker grey for the link */
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #e820f1;            /* Pink on hover */
    text-decoration: underline;
}

.social-media-icons {
  display: flex;
  gap: 10px; 
}

.social-media-icons a {
  display: block;
  padding: 5px;
  border: 2px solid #ccc; 
  border-radius: 5px; 
  transition: all 0.3s ease; 
}

.social-media-icons a:hover {
  border-color: #007bff; 
  background-color: #f0f0f0; 
}

.social-media-icons img {
  display: block;
  height: auto;
  width: 32px;
}


.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #ffffff; 
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15); 
  border-radius: 8px; 
  padding: 0; 
  z-index: 1000;
  min-width: 180px; 
  overflow: hidden; 
}
.dropdown-item {
  padding: 12px 20px; 
  color: #343a40; 
  text-decoration: none;
  display: block;
  font-size: 0.95rem;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.dropdown-item:hover {
  background-color: #f8f9fa;
  color: #212529;
}
.dropdown-toggle::after {
  content: " ▼";
  font-size: 0.8rem;
  color: #6c757d;
  margin-left: 6px;
}
.dropdown {
  position: relative;
}
.dropdown:hover .dropdown-menu {
  display: block;
}

/* Style for Blockquotes inside the post content */
.post-description blockquote {
    border-left: 5px solid #a5a1ff; /* Matches your accent color */
    background-color: #f8f9fa;      /* Very light grey background */
    margin: 20px 0;                 /* Space above and below */
    padding: 15px 20px;             /* Space inside the box */
    font-style: italic;             /* Make text italic */
    color: #555;                    /* Slightly lighter text color */
    border-radius: 0 10px 10px 0;   /* Rounded corners on the right side */
    font-size: 1.1rem;              /* Slightly larger text */
    position: relative;
}

/* Optional: Adds a big quotation mark icon */
.post-description blockquote::before {
    content: "\201C"; /* Unicode for left double quote */
    font-size: 3rem;
    color: #dedcff; /* Your page background color for subtle effect */
    position: absolute;
    top: -10px;
    left: 10px;
    z-index: 0;
    opacity: 0.5;
    font-family: serif;
}

/* Style for the Back Button Icon */
.back-btn {
    text-decoration: none;
    color: #555;          /* Dark Grey (Subtle) */
    margin-right: 15px;   /* Space between arrow and title */
    font-size: 0.8em;     /* Slightly smaller than the text */
    vertical-align: middle;
    transition: all 0.3s ease;
    display: inline-block;
}

.back-btn:hover {
    color: #e820f1;       /* Your Site's Pink Color */
    transform: translateX(-5px); /* Slide left slightly on hover */
}
.btn-floating {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #007bff; /* Bootstrap Primary Blue */
    color: #FFF;
    text-align: center;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000; /* Ensures it stays on top of other elements */
    
    /* Center the icon */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.btn-floating:hover {
    background-color: #0056b3; /* Darker blue on hover */
    color: #FFF;
    text-decoration: none;
}


