/* === STILI UNICI PER BLOGS.HTML === */

/* Sezione principale del blog */
.blog-section {
  position: relative;
  background: #000;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 120px;
  padding-bottom: 60px;
  overflow: hidden;
}

.blog-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('homepageimaage3.PNG') no-repeat center center / contain;
  opacity: .38;
  z-index: 0;
}

.blog-section > * {
  position: relative;
  z-index: 1;
}

/* Icona info */
.info-icon {
  position: fixed;
  top: 70px;
  right: 30px;
  font-size: 1.5rem;
  color: #ff4a4a;
  cursor: pointer;
  z-index: 20;
}

/* Box info */
.info-box {
  position: fixed;
  top: 60px;
  right: 20px;
  background: rgba(0, 0, 0, .85);
  padding: 20px;
  border-radius: 8px;
  max-width: 300px;
  font-size: .9rem;
  display: none;
  z-index: 19;
  border: 1px solid #fff;
}

/* Risorse utili */
.resources {
  background: rgba(0, 0, 0, .8);
  padding: 30px;
  margin: 40px auto;
  border-radius: 12px;
  width: 90%;
  max-width: 900px;
  text-align: center;
}

.resources h2 {
  color: #ff4a4a;
  margin-bottom: 20px;
  font-size: 1.8rem;
}

.resources a {
  color: #fff;
  text-decoration: underline;
  display: block;
  margin: 10px 0;
  font-size: 1.1rem;
}

/* Form per condividere storie */
.story-form {
  background: rgba(0, 0, 0, .8);
  padding: 20px;
  margin: 20px;
  border-radius: 12px;
  width: 80%;
  max-width: 800px;
  text-align: center;
}

.story-form h2 {
  color: #ff4a4a;
  margin-bottom: 10px;
}

.story-form input,
.story-form textarea {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border-radius: 5px;
  border: none;
}

.story-form button {
  background-color: #ff4a4a;
  color: black;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
}

/* Bottone community */
.community-button a {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 25px;
  font-size: 1.1rem;
  font-weight: bold;
  color: black;
  background-color: #ff4a4a;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, .4);
  transition: background .3s, transform .2s;
}

.community-button a:hover {
  background-color: #e52b50;
  transform: scale(1.05);
}





/* === TEMPORANEO === */
/* === TEMPORANEO === */
/* === TEMPORANEO === */
/* === TEMPORANEO === */
/* === TEMPORANEO === */
/* === COMING SOON OVERLAY === */
/* === COMING SOON OVERLAY === */
/* === COMING SOON OVERLAY === */
.blog-main {
  position: relative;
  overflow: hidden;
}

/* Sfocatura e overlay su tutta la sezione principale */
.coming-soon-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(10px);
  background: rgba(0, 0, 0, 0.75);
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
}

/* Box centrale stile “plans” */
.coming-soon-box {
  background: rgba(255, 74, 74, 0.15);
  border: 2px solid #ff4a4a;
  border-radius: 20px;
  padding: 60px 100px;
  text-align: center;
  color: #fff;
  font-family: "Russo One", sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  box-shadow: 0 0 20px rgba(255, 74, 74, 0.5);
  z-index: 6;
}

.coming-soon-box h1 {
  font-size: 3rem;
  color: #ff4a4a;
  text-shadow: 0 0 10px rgba(255, 74, 74, 0.6);
}

/* Disattiva completamente interazioni e clic su tutto il contenuto */
.blog-main *:not(.coming-soon-overlay):not(.coming-soon-box):not(.coming-soon-box *) {
  pointer-events: none !important;
  user-select: none !important;
  opacity: 0.4;
  filter: blur(2px);
}
