/* basICS */
body {
  font-family: 'Lora', serif;
  margin: 0;
  padding: 0;
  background: #fff;
  color: #000;
}

/* take me home */
body.home {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  text-align: center;
}

body.home p {
  margin: 0 auto;
  max-width: 600px;
}

body.home .container {
  padding: 2rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* ust not home */
body.other {
  display: block;          
  text-align: left;
}

body.other p {
  margin: 0 0 1rem 0; 
  max-width: none;
}

body.other .page-content {
  max-width: 800px;
  margin: 2rem auto;
  padding: 0 1rem;
}

/* good head */
h1 {
  font-family: 'Amatic SC', cursive;
  font-size: 4rem;
  margin: 0.2em 0;
  color: #000;
}

h2 {
  font-family: 'Lora', serif;
  font-size: 1.5rem;
  font-weight: 400;
  margin: 0.2em 0;
  color: #000;
}

/* cont */
.container {
  padding: 2rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* cta butt */
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.cta-buttons a {
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: bold;
  font-family: 'Lora', serif;
  background-color: #000;
  color: #fff;
  transition: background 0.3s, color 0.3s;
}

.cta-buttons a:hover {
  background-color: #fff;
  color: #000;
  border: 1px solid #000;
}

/* nav */
.navbar {
  display: flex;
  justify-content: space-between;
  padding: 1rem 2rem;
  position: absolute;
  top: 20px;
  width: calc(100% - 40px);
  z-index: 1000;
}

/* LANDING PAGE HOME BUTTON */
.nav-left .home-btn {
  font-family: 'Amatic SC', cursive;
  font-weight: bold;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 8px;
  background-color: #000;
  color: #fff;
  transition: background 0.3s, color 0.3s, border 0.3s;
}

.nav-left .home-btn:hover {
  background-color: #fff;
  color: #000;
  border: 1px solid #000;
}

/* NAV LINKS */
.nav-right a {
  font-family: 'Amatic SC', cursive;
  font-weight: bold;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 8px;
  background-color: #000;
  color: #fff;
  transition: background 0.3s, color 0.3s, border 0.3s;
  margin-left: 15px;
}

.nav-right a:hover {
  background-color: #fff;
  color: #000;
  border: 1px solid #000;
}

/* titles/ writign  */
.page-title {
  font-family: 'Amatic SC', cursive;
  text-align: center;
  font-size: 3rem;
  margin-top: 120px;
  margin-bottom: 1rem;
}

.page-content {
  font-family: 'Lora', serif;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
  line-height: 1.6;
  color: #000;
}

/* BBoard pics */
.bulletin-board {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  padding: 1rem 0;
  justify-content: center;
}

.bulletin-board .pin {
  flex: 0 0 auto;
  max-width: 250px;
  transform-origin: center;
  transition: transform 0.3s;
  transform: rotate(var(--rand-deg, 0deg));
}

.bulletin-board .pin img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 250px;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.bulletin-board .pin:hover {
  transform: scale(1.05) rotate(0deg);
}

/* bringing in insta */
.instagram-window {
  display: flex;
  overflow-x: auto;
  gap: 15px;
  padding: 1rem 0;
}

.instagram-window blockquote {
  flex: 0 0 300px;
  min-width: 300px;
}

.instagram-window::-webkit-scrollbar {
  display: none;
}

.instagram-window {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* fix the socials boom */

.social-footer-fixed {
  position: fixed;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  background: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  z-index: 1000;
}

.social-footer-fixed a img {
  width: 20px;
  height: 20px;
  display: block;
  transition: transform 0.3s, filter 0.3s;
}

.social-footer-fixed a:hover img {
  transform: scale(1.2) rotate(-10deg);
  filter: brightness(0) invert(1);
}
