/* Headers */

h-1 {
    font-size: 1.5em;
    text-decoration: underline;
    color: rgb(188, 76, 151);
}

  /* corkboard with pinned photo effect */
.corkboard {
  background-color: #c89657; 
  background-image: radial-gradient(#d6aa75 20%, transparent 20%), 
                    radial-gradient(#b87f41 20%, transparent 20%);
  background-size: 30px 30px;
  background-position: 0 0, 15px 15px;
  width: 1300px;
  height: 1350px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: space-around;
  border: 15px solid black;
  border-style: ridge;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3), 0 6px 6px rgba(0, 0, 0, 0.2);
  
}

/* Body Styles */
.body-text-wrapper {
    display: flex;
    justify-content: center;
    height: fit-content;
    padding-top: 50px;
}

.body-text-wrapper > .corkboard > .body1-blog {
      display: flex;
      justify-content: space-around;
      height: 400px;
}

.body-text-wrapper > .corkboard > .body1-blog > .left-column {
    text-align: center;
}

.body-text-wrapper > .corkboard > .body1-blog > .left-column > .sticky-note-left {
    color: black;
    font-size: 1.25em;
}

.body-text-wrapper > .corkboard > .body1-blog > .center-column {
    text-align: center;
    padding-top: 30px;
}

.body-text-wrapper > .corkboard > .body1-blog > .right-column {
    text-align: center;
} 

 .body-text-wrapper > .corkboard > .body2-blog {
      display: flex;
      justify-content: center;
      height: 500px;
}

.body-text-wrapper > .corkboard > .body3-blog {
      display: flex;
      justify-content: space-around;
      height: 400px;
}

.body-text-wrapper > .corkboard > .body3-blog > .left-column {
    text-align: center;
}

.body-text-wrapper > .corkboard > .body3-blog > .left-column > .sticky-note-left {
    color: black;
    font-size: 1.25em;
}

.body-text-wrapper > .corkboard > .body3-blog > .center-column {
    text-align: center;
}

.body-text-wrapper > .corkboard > .body3-blog > .right-column {
    display: flex;
    justify-content: center;
    text-align: center;
} 

/* 2. Photo Wrapper & Rotation */
.photo-wrapper {
    position: relative;
    transform: rotate(2deg);
    transition: transform 0.3s ease;
  }
  
  .photo-wrapper:hover {
    transform: rotate(0deg) scale(1.05);
    z-index: 10;
  }

  .photo-wrapper-1 {
    position: relative;
    transform: rotate(-3deg);
    transition: transform 0.3s ease;
  }
  
  .photo-wrapper-1:hover {
    transform: rotate(0deg) scale(1.05);
    z-index: 10;
  }
  
  /* 3. Realistic Photo Frame */
  .photo {
    background-color: #fff;
    padding: 15px 15px 48px 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3), 0 6px 6px rgba(0, 0, 0, 0.2);
    border-radius: 2px;
    border: 0.5px solid grey;
  }
  
  .photo img {
    width: 264px;
    height: 260px;
    object-fit: cover;
    display: block;
    border: 0.5px solid grey;
  }
  
  .photo-caption {
    margin-top: 15px;
    text-align: center;
    font-family: "The Girl Next Door", cursive;
    font-size: 1.4rem;
    color: #333;
  }
  
  /* Blue Pin */
  .pin {
    width: 12px;
    height: 35px;
    position: absolute;
    top: -15px;
    left: 50%;
    margin-left: -6px;
    z-index: 5;
    transform-origin: bottom center;
    transform: rotate(15deg);
  }
  
  /* The Head of the BluePin */
  .pin::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #4df6ff, #009eb3);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4), inset -1px -1px 2px rgba(255, 255, 255, 0.5);
  }
  
  /* The Needle of the Blue Pin */
  .pin::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 5px;
    width: 2px;
    height: 25px;
    background: linear-gradient(to right, #ccc, #888, #333);
    box-shadow: 1px 0 1px rgba(0,0,0,0.3);
  }

  /* Red Pin */
  .pin-1 {
    width: 12px;
    height: 35px;
    position: absolute;
    top: -15px;
    left: 50%;
    margin-left: -6px;
    z-index: 5;
    transform-origin: bottom center;
    transform: rotate(-15deg);
  }
  
  /* The Head of the RedPin */
  .pin-1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #ff5c4d, #b31b00);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4), inset -1px -1px 2px rgba(255, 255, 255, 0.5);
  }
  
  /* The Needle of the Red Pin */
  .pin-1::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 5px;
    width: 2px;
    height: 25px;
    background: linear-gradient(to right, #ccc, #888, #333);
    box-shadow: 1px 0 1px rgba(0,0,0,0.3);
  }

  .blog-container {
    max-width: 900px;
    margin: 40px auto;
    padding: 30px;
    background-color: #fff5f7; /* Very light pink background */
    border: 2px solid #ffc1d6; /* Soft pink border */
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(255, 182, 193, 0.3);
    font-family: "The Girl Next Door", cursive;
  }

  .blog-title {
    color: #ff6b95;
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: bold;
    border-bottom: 2px dashed #ffc1d6;
    padding-bottom: 10px;
  }

  .blog-content {
    color: #7a5c65;
    line-height: 1.6;
    font-size: 1.25em;
  }

  .pink-accent {
    color: #ff85a2;
    font-weight: bold;
  }






