@font-face {
  font-family: 'kids handwriting';
  src: url('kids-handwriting.ttf') format('truetype');
}
.navbar-nav .nav-link {
  color: white;
}

.navbar-nav .nav-link:hover {
  color: #ffd700;
}

body {
  background-image: url('hannah-big-logo.png'), url('Photos/purplebackground.png');
  background-repeat: repeat, repeat;
  background-size: 200px auto, auto;
  background-attachment: fixed;
} 

.hannah-tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: #ffd700;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.hannah-motto {
  color: white;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: 300;
  font-size: 1.1rem;
}
.mac-window {
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  overflow: hidden;
}

.mac-titlebar {
  background: linear-gradient(to bottom, #e6e6e6, #cccccc);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #b0b0b0;
}

.mac-dot {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  margin-right: 8px;
  display: inline-block;
}

.mac-red { background: #ff5f56; }
.mac-yellow { background: #ffbd2e; }
.mac-green { background: #27c93f; }

.mac-title {
  flex: 1;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  color: #555;
  margin-right: 50px;
}

.mac-content {
  padding: 25px 30px;
  min-height: 200px;
}
.photo-wrapper {
  position: relative;
}

.horse-sticker {
  position: absolute;
  width: 110px;
  top: -30px;
  left: -35px;
  transform: rotate(15deg);
  z-index: 10;
}
.postit-board {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 40px 20px;
  min-height: 500px;
}

.postit {
  width: 240px;
  height: 250px;
  padding: 12px 20px 20px 20px;
  box-shadow: 4px 6px 12px rgba(0, 0, 0, 0.25);
  font-family: Arial, sans-serif;
  color: #333;
  position: relative;
  transition: transform 0.3s;
  border-radius: 2px;
}

.postit:hover {
  transform: scale(1.05) rotate(0deg) !important;
  z-index: 100;
}

/* Brighter solid colors like the reference image */
.postit-pink {
  background: #ff5fa3;
  transform: rotate(-6deg);
  margin-top: 20px;
}

.postit-purple {
  background: #b964e8;
  transform: rotate(4deg);
  margin-top: -10px;
}

/* Handwritten */
.postit-school {
  font-family: 'kids handwriting', cursive;
  font-size: 2.0rem;
  font-weight: 400;
  margin-bottom: 8px;
  color: #2a2a2a;
  line-height: 1.2;
}

.postit-years {
  font-family: 'kids handwriting', cursive;
  font-size: 1.3rem;
  color: #1a1a1a;
  margin-bottom: 5px;
  font-style: italic;
}

.postit-text {
  font-family: 'kids handwriting', cursive;
  font-size: 1.38rem;
  line-height: 1.2;
  margin-bottom: 0;
  color: #1a1a1a;
}
.h-timeline-wrapper {
  padding: 180px 10px 180px 10px;   /* lots of top + bottom space for boxes */
  overflow: visible;                /* no scrollbar */
}

.h-timeline {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  position: relative;
}

.h-milestone {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  min-width: 0;     /* lets it shrink to fit */
}
/* The arrow/ribbon shape */
.h-arrow {
  width: 100%;
  height: 30px;
  position: relative;
  clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 50%, calc(100% - 15px) 100%, 0 100%, 15px 50%);
}

/* Year circle on the arrow */
.h-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: white;
  border: 4px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  z-index: 2;
}

/* Boxes — alternating top and bottom */
.h-box {
  background: white;
  border: 3px solid;
  border-radius: 12px;
  padding: 12px;
  width: 95%;
  max-width: 220px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 3px 3px 10px rgba(0,0,0,0.2);
}

.h-box-top {
  bottom: 60px;
}

.h-box-bottom {
  top: 60px;
}

.h-box h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 5px;
  line-height: 1.2;
}

.h-box p {
  font-size: 0.8rem;
  margin-bottom: 0;
  color: #444;
  line-height: 1.4;
}
/* Dotted line connecting circle to box */
.h-box-top::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  width: 2px;
  height: 30px;
  border-left: 2px dashed currentColor;
}

.h-box-bottom::before {
  content: '';
  position: absolute;
  bottom: 100%;
  left: 50%;
  width: 2px;
  height: 30px;
  border-left: 2px dashed currentColor;
}

/* COLORS — Hannah Montana palette */
.h-color-pink { color: #ff5fa3; }
.h-color-pink.h-arrow { background: #ff5fa3; }
.h-color-pink.h-circle { color: #ff5fa3; border-color: #ff5fa3; }
.h-color-pink.h-box { color: #ff5fa3; }
.h-color-pink.h-box h4 { color: #ff5fa3; }

.h-color-purple { color: #b964e8; }
.h-color-purple.h-arrow { background: #b964e8; }
.h-color-purple.h-circle { color: #b964e8; border-color: #b964e8; }
.h-color-purple.h-box { color: #b964e8; }
.h-color-purple.h-box h4 { color: #b964e8; }

.h-color-gold { color: #ffc233; }
.h-color-gold.h-arrow { background: #ffc233; }
.h-color-gold.h-circle { color: #ffc233; border-color: #ffc233; }
.h-color-gold.h-box { color: #ffc233; }
.h-color-gold.h-box h4 { color: #ffc233; }

.h-color-blue { color: #4eb3e8; }
.h-color-blue.h-arrow { background: #4eb3e8; }
.h-color-blue.h-circle { color: #4eb3e8; border-color: #4eb3e8; }
.h-color-blue.h-box { color: #4eb3e8; }
.h-color-blue.h-box h4 { color: #4eb3e8; }

/* Mobile — make scroll horizontally */
@media (max-width: 768px) {
  .h-timeline {
    min-width: 700px;
  }
}

/* Floating photos around timeline */
.experience-section {
  position: relative;
  overflow: hidden;
}

.floating-photo {
  position: absolute;
  width: 190px;
  height: 190px;
  object-fit: cover;
  border-radius: 8px;
  border: 6px solid white;
  box-shadow: 4px 6px 15px rgba(0, 0, 0, 0.3);
  z-index: 0;
}

.float-1 {
  top: 80px;
  left: 30px;
  transform: rotate(-8deg);
}

.float-2 {
  bottom: 60px;
  left: 60px;
  transform: rotate(6deg);
}

.float-3 {
  top: 100px;
  right: 30px;
  transform: rotate(10deg);
}

/* Timeline appears above floating photos */
.h-timeline-wrapper {
  position: relative;
  z-index: 1;
}
.cork-board {
  background-color: #c89757;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(100, 65, 25, 0.3) 1.5px, transparent 2px),
    radial-gradient(circle at 70% 60%, rgba(100, 65, 25, 0.3) 1px, transparent 1.5px),
    radial-gradient(circle at 45% 80%, rgba(100, 65, 25, 0.3) 1.5px, transparent 2px),
    radial-gradient(circle at 85% 20%, rgba(100, 65, 25, 0.3) 1px, transparent 1.5px),
    radial-gradient(circle at 30% 70%, rgba(100, 65, 25, 0.3) 1px, transparent 1.5px),
    radial-gradient(circle at 60% 40%, rgba(100, 65, 25, 0.3) 1.5px, transparent 2px);
  background-size: 30px 30px, 25px 25px, 35px 35px, 28px 28px, 32px 32px, 26px 26px;
  padding: 60px 50px;
  border: 14px solid #a47148;
  border-radius: 8px;
  max-width: 700px;
  margin: 0 auto;
  box-shadow: 8px 8px 25px rgba(0, 0, 0, 0.4);
  min-height: 450px;
}
.paper-note {
  background: #fffef5;
  padding: 35px 40px;
  border-radius: 2px;
  transform: rotate(-2deg);
  box-shadow: 4px 6px 15px rgba(0,0,0,0.3);
  position: relative;
}

.thumbtack {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 18px;
  background: radial-gradient(circle at 30% 30%, #ff5555, #cc2222);
  border-radius: 50%;
  box-shadow: 1px 2px 4px rgba(0,0,0,0.4);
}

.paper-title {
  font-family: 'kids handwriting';
  color: #2a2a2a;
  font-size: 2.8rem;
  margin: 0 0 16px 0;
  text-align: center;
}

.skills-list {
  font-family: 'kids handwriting';
  font-size: 2.0rem;
  color: #2a2a2a;
  line-height: 1.8;
  list-style: none;
  padding: 0;
  margin: 0;
}
.album-page {
  background: #fffef5;
  padding: 40px 30px 50px 30px;
  text-align: center;
  border-radius: 4px;
  max-width: 500px;
  margin: 0 auto;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.4);
}

.album-page img {
  width: 100%;
  max-width: 380px;
  height: 320px;
  object-fit: cover;
  border: 8px solid white;
  box-shadow: 3px 4px 12px rgba(0, 0, 0, 0.3);
  transform: rotate(-1deg);
}

.album-caption {
  font-family: 'kids handwriting', cursive;
  font-size: 1.4rem;
  color: #2a2a2a;
  margin-top: 25px;
  margin-bottom: 5px;
}

.album-title {
  font-family: 'kids handwriting', cursive;
  font-size: 1.1rem;
  color: #555;
  font-style: italic;
  margin: 0;
}

.carousel-control-prev,
.carousel-control-next {
  width: 8%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 50%;
  padding: 22px;
  background-size: 60% 60%;
}
.award-card {
  background: white;
  border-radius: 15px;
  padding: 25px 20px;
  text-align: center;
  height: 320px;
  width: 220px;
  box-shadow: 4px 6px 15px rgba(0, 0, 0, 0.3);
  border: 3px solid #4a1a6e;
  transition: transform 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.award-card:hover {
  transform: translateY(-15px) scale(1.05);
  box-shadow: 8px 12px 25px rgba(0, 0, 0, 0.4);
  z-index: 10;
}

.award-icon {
  font-size: 3.5rem;
  margin-bottom: 15px;
}

.award-title {
  color: #4a1a6e;
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.award-text {
  color: #444;
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 0;
}

