

body {
  font-family: Georgia, serif;
  text-align: center;
  letter-spacing: 3px;
  margin-top: 40px;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.4);
  
  background-image: url("background.png");
  background-size: cover;        /* fills screen */
  background-repeat: no-repeat;  /* no tiling */
  background-position: center center;   /* center image */
  background-attachment: fixed;
 
  overflow-y: scroll;
}


/* Makes your paragraphs smaller */
p {
  font-size: 12px;
  color: #291F23;
  text-align: left;       /* Prevents text from stretching weirdly */
  margin-top: 40px;       /* Pushes paragraph down, away from title */
  margin-left: 1%;       /* Pushes text block over to the right side */
  margin-right: 85%;       /* Keeps a safe gap from the right screen edge */
}

.lights {
  position: absolute;
  top: 0;
  width: 200px; /* adjust size */
  pointer-events: none; /* so it doesn't block clicks */
}

.lights.left {
  position: absolute;
  width: 400px;
  height: auto; 
  top: -20px;
  left: -35px;
  transform: rotate(-15deg);
}

.lights.right {
  transform: scaleX(-1) rotate(-20deg); /* flips the image so it mirrors */
  position: absolute;
  width: 400px;
  height: auto;
  top: -15px;
  right: -35px;
}

.dog {
  position: absolute;
  height: auto;
  width: 350px;
  top: 100px;
  left: 215px;
  transform: rotate(-6deg);

}

.glitterstar {          
  width: 190px;
  height: auto;
  position: absolute;
  top: 150px;
  left: 1260px;          
}

.camera {
  width: 300px;
  height: auto;
  position: absolute;
  margin-left: -3%;
  margin-right: 82%;
  transform: rotate(24deg);
}

/* The main container holding both words */
.heading {
  display: flex;
  flex-direction: row;
  justify-content: center; 
  align-items: center;   
  gap: 45px;               /* This creates the blank space between CAPELLA and MAIA */
  margin-top: -45px;
  
  width: 100%;
}

/* Individual words holding the letters */
.heading .capella {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: -15px;               /* Negative gap squishes the letters slightly together */
}

.heading .maia {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: -8px;               /* Negative gap squishes the letters slightly together */
}

/* Base style for all letter images */
.heading img {
  height: 80px;            
  width: auto;             
  position: relative;      /* Allows clean overlapping */
  z-index: 1;
}

/* Scrapbook Tilting Effects */
.tilt-left {
  transform: rotate(-6deg); /* Tilts the letter to the left */
}

.tilt-right {
  transform: rotate(7deg);  /* Tilts the letter to the right */
}
/* Base style for standard letters (keeps default height around 80px) */
.heading img {
  height: 80px;            
  width: auto;             
  position: relative;      
  z-index: 1;
}

/* --- Size Adjustments --- */

/* Makes the C and M stand out as larger capital letters */
.heading .c-letter {
  height: 115px;
}

.heading .m-letter {
  height: 105px; 
}

/* Makes the P distinctly larger */
.heading .p-letter {
  height: 95px;
}

/* Makes the e distinctly larger */
.heading .e-letter {
  height: 95px;
}


/* Makes the first L tiny */
.heading img.small-l {
  height: 70px;
}

/* Makes the first A in Maia a little bit smaller */
.heading .small-a {
  height: 70px;
}

/* --- Position Adjustments --- */

/* Pushes the first L downward so it doesn't align with the second L */
.heading .shift-down {
  transform: translateY(10px); 
}

/* Pushes the m downward */
.heading .shift-down2 {
  transform: translateY(10px);
}

/* --- Tilting Effects --- */

/* Combines the shift-down position with a left tilt for the tiny L */
.heading img.small-l.tilt-left {
  transform: translateY(10px) rotate(-12deg); 
}

.tilt-left {
  transform: rotate(-6deg); 
}

.tilt-right {
  transform: rotate(7deg);  
}




.spotify-player {
  width: 100%;             /* Fits the width of its container */
  height: 80px;            /* Forces the compact layout layout */
  border-radius: 12px;     /* Gives it the rounded look */
  margin: 15px 0;          /* Adds breathing room above and below */
  max-width: 400px;        /* Optional: keeps it from getting too wide on large screens */
  position: absolute;
  right: 35px;
  top: 150px;
}

.note-container {
  position: absolute !important; /* Lifts it completely out of the tight layout column */
  left: 50% !important;          /* Centers it horizontally on your layout background */
  transform: translateX(-50%) !important; 
  width: 450px !important;       /* Locks the target horizontal dimension */
  margin-top: 50px;              /* Sets vertical separation from the Spotify widget */
  font-family: 'Courier New', Courier, monospace;
}

.note-box {
    position: relative;
    display: block; 
    width: 90%; /* Allows it to be responsive */
    max-width: 450px; /* Force it to open up wide like a real note */
    margin: 30px auto; /* Centers the note box on your page */
    background-color: #f7f1e3;
    padding: 30px 25px 25px 25px; /* Increased top padding to 30px */
    border-radius: 4px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    color: #5d4d37;
    font-size: 14px;
    line-height: 1.6;
    text-align: left;
}




/* The pink tape sticker at the top */
.tape-sticker {
  position: absolute;
  top: -15px; /* Pulls it up over the edge */
  left: 50%;
  transform: translateX(-50%) rotate(-1deg); /* Centers and slightly tilts the tape */
  width: 150px;
  height: 30px;
  background-color: #f3a6b7; /* Washi tape pink color */
  opacity: 0.75; /* Makes it slightly translucent like real tape */
  box-shadow: 0px 1px 3px rgba(0,0,0,0.1);
  
  /* Creates jagged torn edges on the left and right */
  clip-path: polygon(
    0% 0%, 5% 50%, 0% 100%, 
    100% 100%, 95% 50%, 100% 0%
  );
}

/* Add this at the very bottom of your CSS file */
.note-box p {
  text-align: left !important;
  display: block !important;
  width: 100% !important;
}



