@import url(https://fonts.google.com/share?selection.family=Bodoni+Moda:ital,opsz,wght@0,6..96,400..900;1,6..96,400..900);

*{
    margin:0;
    padding: 0;
    box-sizing: border-box;

}

body{
    font-family: 'Bodoni Moda',serif;
    font-size:1.2rem;
}
.back-arrow {
  position: fixed;
  top: 20px;
  left: 20px;
  text-decoration: none;
  color: #f7f8f9;
  font-weight: bold;

  padding: 6px 12px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  transition: background-color 0.3s ease, transform 0.3s ease;
  z-index: 1000;
}

.back-arrow:hover {
  background-color: #827979;
  transform: translateX(-3px);
}

.container{
    min-height: 100vh;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap:20px;
    background: linear-gradient(to right,#041308 ,#0b3317);

}

.left-text{
    flex-basis:35%;
}
.gallery{
    flex-basis:50%;
}

.heading{
    font-size: 2.5rem;
    color:white;
    text-align: center;
}

.subheading{
    color:#ddd;
   margin-top: 10px;
   text-align:center; 
}
.gallery{
    flex-basis:50%;
    display:grid;
    gap:8px;
    grid-template-columns: repeat(3,1fr);
    grid-auto-rows: 120px;
}

.box{
    background-size: cover;
    background-position:top;
    color: white;
    font-size: 1.5rem;
    display:flex;
    justify-content: center;
    align-items: center;
    background-color:#222;
    background-blend-mode: hard-light;
    transition: all 1s ease-in-out;

}
.box:hover{
  background-color: #787777;
  background-position: center;
  box-shadow: 0 0 4px #fff;
  cursor:pointer;
}

.col2{
    grid-column: span 2;
}
.row2{
    grid-row: span 2;
}

/* Stories */
.story-highlights {
  padding: 40px 20px;
   background: linear-gradient(45deg, rgb(255, 255, 255),rgb(240, 245, 238)
    );
  text-align: center;
}

  .story-highlights h2 {
      font-size: 2.5rem;
      margin-bottom: 40px;
      margin-top: 10px;
    }
.story-highlights h2:hover{
        cursor: pointer;
        color: rgb(15, 110, 154);
    }


.stories-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 50px;
}

.story-card {
  background: white;
  padding: 20px;
  max-width: 400px;
  box-shadow: 0 0 10px rgba(0,0,0,0.08);
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.story-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(17, 17, 17, 0.5); /* Glow effect */
}

.story-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}

.story-card h3 {
  margin: 15px 0 10px;
  font-size: 1.2rem;
  color: #222;
}

.story-card p {
  font-size: 0.95rem;
  color: #555;
}

.view-story {
  display: inline-block;
  margin-top: 10px;
  color: #5a8dee;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

.view-story:hover {
  color: #4169e1;
}

  .toggle-story {
  margin-top: 10px;
  background-color: transparent;
  border: none;
  color: #173b7f;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.1rem;
  text-decoration: underline;
}
.toggle-story:hover{
    color: #87b5e3;
}


/* CTA Section */
.cta-section {
  padding: 30px 20px;
  text-align: center;
    background: linear-gradient(90deg, #5a8dee, #a1b7df);
  color: white;
}

.cta-section h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.cta-buttons a {
  display: inline-block;
  margin: 10px 15px;
  padding: 12px 25px;
  background: white;
  color: #5a8dee;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s;
}

.cta-buttons a:hover {
  background:black;
}

.story-card .full-story {
  margin-top: 10px;
  text-align: left;
  color: #444;
  font-size: 0.95rem;
  line-height: 1.5;
}

.story-card p {
  margin-bottom: 10px;
}
