html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
}

/* Flexbox container styling */
body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-family: ui-sans-serif, -apple-system, system-ui, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, sans-serif, Helvetica, Apple Color Emoji, Arial, Segoe UI Emoji, Segoe UI Symbol;
  -webkit-user-select: none;
  /* Safari */
  -moz-user-select: none;
  /* Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  min-height: 100vh;
}

/* Top bar styling */
.top-bar a {
  text-decoration: none;
  color: inherit;
}

.top-bar {
  background-color:#37525b;
  position: fixed;
  top: 0;
  left: 0;
  height: 80px;
  width: 100%;
  display: flex;
  align-items: center;
  padding-left: 30px;
  z-index: 2;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: padding-left 1s;
}

.bar-image {
  height: 40px;
  width: 40px;
  transition: height 0.5s, width 0.5s;
}

.bar-text {
  color: #ecf0f1;
  font-size: 25px;
  font-weight: bold;
  margin-left: 5px;
  transition: font-size 0.5s;
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

/* Responsive styling for top bar */
@media screen and (max-width: 600px) {
  .top-bar {
    padding-left: 20px;
  }

  .bar-image {
    height: 30px;
    width: 30px;
  }

  .bar-text {
    font-size: 22px;
  }
}

.premium-crown{font-size:1.35rem;margin-left:.45rem;line-height:1;}


/* Blog Section */
.blog-container {
  width: 90%;
  max-width: 1200px;
  height: auto;
  padding: 40px 20px;
  margin: 40px auto;
  transition: box-shadow 0.3s ease-in-out;
  margin-top: 100px;
}

.blog-first-container {
  color: #333;
  margin-bottom: 20px;
  padding-bottom: 10px;
  font-size: 25px;
}

.blog-first-container h1{
  font-size: 40px;
  color: #333;
  font-weight: bold;
  margin-bottom: 20px;
}
.blog-first-container p{
  font-size: 18px;
  color: #333;
}

.button-container {
  display: flex;
  justify-content: flex-start;
}
.back-button {
  padding: 10px 20px;
  color: #ffffff;
  background-color:  #5d5e61;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border-radius: 5px;
  font-weight: bold;
  font-size: 18px;
}

.back-button:hover {
  background-color: #72777b;
  transform: scale(1.05);
}

.blog-img-container {
  text-align: center;
  margin-bottom: 20px;
}

.blog-img {
  width: auto;
  height: 400px;
}
.blog-content {
  line-height: 1.5;
  color: #333;
}
.blog-content h2
{
  font-size: 25px;
  margin-bottom: 20px;
}
.blog-content h3
{
  font-size: 20px;
}
.blog-content p{
  font-size: 18px;
}
.blog-content h2 strong {
  font-weight: bold;
}
ul li {
  font-size: 18px;
}
@media screen and (max-width: 800px) {
  .blog-container {
    padding: 20px;
  }
  .blog-img {
    width: 100%;
    height: auto;
  }
}

/* refe
rences */
.blog-references {
  padding: 10px;
  margin-top: 20px;
  font-size: 18px;
  color: #333;
  line-height: 1.5;
}

.references-text a {
  color: #0884b5;
  text-decoration: underline;
  transition: color 0.3s ease;
  margin: 0 10px;
}

.references-text a:hover {
  color: #d90839;
}

/* Bottom panel styling */
.bottom-panel {
  background-color:#37525b;
  color: #ecf0f1;
  width: 100%;
  text-align: center;
  padding: 30px 0;
}

.bottom-panel p {
  margin: 5px 0;
}

.bottom-links {
  display: flex;
  justify-content: center;
  padding: 0 10px;
  width: 100%;
  box-sizing: border-box;
}

.bottom-links a {
  color: #A3D9E0;   /* pale teal  — contrast ≈4.8:1 */
  text-decoration: none;
  transition: color 0.3s ease;
  margin: 0 10px;
}


.bottom-links a:hover,
.bottom-links a:focus {
  color: #FFC857;           /* or whatever hover color you choose */
  text-decoration: underline;
}

.cookie-policy {
  color: blue;
  text-decoration: underline;
  cursor: pointer;
}

@media screen and (max-width: 800px) {
  .bottom-links {
    flex-direction: column;
    align-items: center;
    gap: 2px;
  }

  .bottom-links a {
    margin: 2px 0;
  }
}
